From 47b265623207147c87951acb13fa5e909eecc986 Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 31 Aug 2023 15:39:13 -0600 Subject: [PATCH 1/3] Fix plugin-js object keys --- .changeset/violet-snails-grow.md | 5 + packages/plugin-js/.DS_Store | Bin 0 -> 6148 bytes packages/plugin-js/test/border/want.js | 18 +- packages/plugin-js/test/color/want.js | 248 +++--- packages/plugin-js/test/nested/want.d.ts | 40 +- packages/plugin-js/test/nested/want.js | 288 +++---- packages/plugin-js/test/transition/want.js | 752 +++++++++--------- .../plugin-js/test/typography/tokens.json | 58 +- packages/plugin-js/test/typography/want.d.ts | 31 +- packages/plugin-js/test/typography/want.js | 375 ++++++--- packages/plugin-js/test/typography/want.json | 357 ++++++--- packages/utils/src/string.test.ts | 17 +- packages/utils/src/string.ts | 4 +- 13 files changed, 1264 insertions(+), 929 deletions(-) create mode 100644 .changeset/violet-snails-grow.md create mode 100644 packages/plugin-js/.DS_Store diff --git a/.changeset/violet-snails-grow.md b/.changeset/violet-snails-grow.md new file mode 100644 index 00000000..af3ef291 --- /dev/null +++ b/.changeset/violet-snails-grow.md @@ -0,0 +1,5 @@ +--- +'@cobalt-ui/utils': patch +--- + +Fix JS objKey utility diff --git a/packages/plugin-js/.DS_Store b/packages/plugin-js/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..a2eb533abf551d042629249e6fe5fb378b3b5ee0 GIT binary patch literal 6148 zcmeH~u?oUK42Bc!Ah>jNyu}Cb4Gz&K=nFU~E>c0O^F6wMazU^xC+1b{XuyJ79K1T}(S!u1*@b}wNMJ-@TJzTK|1JE}{6A`8N&+PC zX9Tp_belC^D(=>|*R%RAs; +export declare const modes: { + 'typography.largeTitle': { + xs: TypographyToken['$value']; + s: TypographyToken['$value']; + m: TypographyToken['$value']; + l: TypographyToken['$value']; + xl: TypographyToken['$value']; + '2xl': TypographyToken['$value']; + '3xl': TypographyToken['$value']; + }; + 'typography.body': { + xs: TypographyToken['$value']; + s: TypographyToken['$value']; + m: TypographyToken['$value']; + l: TypographyToken['$value']; + xl: TypographyToken['$value']; + '2xl': TypographyToken['$value']; + '3xl': TypographyToken['$value']; + }; +}; export declare function token(tokenID: K, modeName?: never): typeof tokens[K]; export declare function token(tokenID: K, modeName: M): typeof modes[K][M]; diff --git a/packages/plugin-js/test/typography/want.js b/packages/plugin-js/test/typography/want.js index 11721cda..fd002404 100644 --- a/packages/plugin-js/test/typography/want.js +++ b/packages/plugin-js/test/typography/want.js @@ -7,179 +7,322 @@ export const tokens = { 'typography.family.body': ['IBM Plex Sans', '-system-ui', 'sans-serif'], 'typography.family.heading': ['Helvetica'], - 'typography.page-title': { + 'typography.largeTitle': { fontFamily: ['Helvetica'], - fontSize: '48px', - fontWeight: 600, - lineHeight: 1.25, - letterSpacing: '0.125em', - }, - 'typography.subheading': { - fontFamily: ['Helvetica'], - fontSize: '18px', - fontWeight: 500, - lineHeight: 1.375, - letterSpacing: '0.25em', - textTransform: 'uppercase', - }, - 'typography.callout': { - fontFamily: ['IBM Plex Sans', '-system-ui', 'sans-serif'], - fontSize: '18px', - fontWeight: 300, - fontStyle: 'italic', - lineHeight: 1.5, + fontSize: '34px', + fontWeight: 400, + lineHeight: '41px', }, 'typography.body': { - fontFamily: ['IBM Plex Sans', '-system-ui', 'sans-serif'], - fontSize: '16px', + fontFamily: ['Helvetica'], + fontSize: '17px', fontWeight: 400, - lineHeight: 1.5, + lineHeight: '22px', }, }; export const meta = { 'typography.family.body': { - '_original': { - '$type': 'fontFamily', - '$value': ['IBM Plex Sans', '-system-ui', 'sans-serif'], + _original: { + $type: 'fontFamily', + $value: ['IBM Plex Sans', '-system-ui', 'sans-serif'], }, - '_group': { + _group: { id: 'typography.family', - '$extensions': { + $extensions: { requiredModes: [], }, }, id: 'typography.family.body', - '$type': 'fontFamily', - '$value': ['IBM Plex Sans', '-system-ui', 'sans-serif'], + $type: 'fontFamily', + $value: ['IBM Plex Sans', '-system-ui', 'sans-serif'], }, 'typography.family.heading': { - '_original': { - '$type': 'fontFamily', - '$value': 'Helvetica', + _original: { + $type: 'fontFamily', + $value: 'Helvetica', }, - '_group': { + _group: { id: 'typography.family', - '$extensions': { + $extensions: { requiredModes: [], }, }, id: 'typography.family.heading', - '$type': 'fontFamily', - '$value': ['Helvetica'], + $type: 'fontFamily', + $value: ['Helvetica'], }, - 'typography.page-title': { - '_original': { - '$type': 'typography', - '$value': { + 'typography.largeTitle': { + _original: { + $type: 'typography', + $value: { fontFamily: '{typography.family.heading}', - fontSize: '48px', - fontWeight: 600, - lineHeight: 1.25, - letterSpacing: '0.125em', + fontSize: '34px', + fontWeight: 400, + lineHeight: '41px', + }, + $extensions: { + mode: { + xs: { + fontSize: '31px', + lineHeight: '38px', + }, + s: { + fontSize: '32px', + lineHeight: '39px', + }, + m: { + fontSize: '33px', + lineHeight: '40px', + }, + l: { + fontSize: '34px', + lineHeight: '41px', + }, + xl: { + fontSize: '36px', + lineHeight: '43px', + }, + '2xl': { + fontSize: '38px', + lineHeight: '46px', + }, + '3xl': { + fontSize: '40px', + lineHeight: '48px', + }, + }, }, }, - '_group': { + _group: { id: 'typography', - '$extensions': { + $extensions: { requiredModes: [], }, }, - id: 'typography.page-title', - '$type': 'typography', - '$value': { + id: 'typography.largeTitle', + $type: 'typography', + $value: { fontFamily: ['Helvetica'], - fontSize: '48px', - fontWeight: 600, - lineHeight: 1.25, - letterSpacing: '0.125em', + fontSize: '34px', + fontWeight: 400, + lineHeight: '41px', + }, + $extensions: { + mode: { + xs: { + fontSize: '31px', + lineHeight: '38px', + }, + s: { + fontSize: '32px', + lineHeight: '39px', + }, + m: { + fontSize: '33px', + lineHeight: '40px', + }, + l: { + fontSize: '34px', + lineHeight: '41px', + }, + xl: { + fontSize: '36px', + lineHeight: '43px', + }, + '2xl': { + fontSize: '38px', + lineHeight: '46px', + }, + '3xl': { + fontSize: '40px', + lineHeight: '48px', + }, + }, }, }, - 'typography.subheading': { - '_original': { - '$type': 'typography', - '$value': { + 'typography.body': { + _original: { + $type: 'typography', + $value: { fontFamily: '{typography.family.heading}', - fontSize: '18px', - fontWeight: 500, - lineHeight: 1.375, - letterSpacing: '0.25em', - textTransform: 'uppercase', + fontSize: '17px', + fontWeight: 400, + lineHeight: '22px', + }, + $extensions: { + mode: { + xs: { + fontSize: '14px', + lineHeight: '19px', + }, + s: { + fontSize: '15px', + lineHeight: '20px', + }, + m: { + fontSize: '16px', + lineHeight: '21px', + }, + l: { + fontSize: '17px', + lineHeight: '22px', + }, + xl: { + fontSize: '19px', + lineHeight: '24px', + }, + '2xl': { + fontSize: '21px', + lineHeight: '26px', + }, + '3xl': { + fontSize: '23px', + lineHeight: '29px', + }, + }, }, }, - '_group': { + _group: { id: 'typography', - '$extensions': { + $extensions: { requiredModes: [], }, }, - id: 'typography.subheading', - '$type': 'typography', - '$value': { + id: 'typography.body', + $type: 'typography', + $value: { fontFamily: ['Helvetica'], - fontSize: '18px', - fontWeight: 500, - lineHeight: 1.375, - letterSpacing: '0.25em', - textTransform: 'uppercase', + fontSize: '17px', + fontWeight: 400, + lineHeight: '22px', }, - }, - 'typography.callout': { - '_original': { - '$type': 'typography', - '$value': { - fontFamily: '{typography.family.body}', - fontSize: '18px', - fontWeight: 300, - 'font-style': 'italic', - lineHeight: 1.5, + $extensions: { + mode: { + xs: { + fontSize: '14px', + lineHeight: '19px', + }, + s: { + fontSize: '15px', + lineHeight: '20px', + }, + m: { + fontSize: '16px', + lineHeight: '21px', + }, + l: { + fontSize: '17px', + lineHeight: '22px', + }, + xl: { + fontSize: '19px', + lineHeight: '24px', + }, + '2xl': { + fontSize: '21px', + lineHeight: '26px', + }, + '3xl': { + fontSize: '23px', + lineHeight: '29px', + }, }, }, - '_group': { - id: 'typography', - '$extensions': { - requiredModes: [], - }, + }, +}; + +export const modes = { + 'typography.largeTitle': { + xs: { + fontFamily: ['Helvetica'], + fontSize: '31px', + fontWeight: 400, + lineHeight: '38px', + }, + s: { + fontFamily: ['Helvetica'], + fontSize: '32px', + fontWeight: 400, + lineHeight: '39px', + }, + m: { + fontFamily: ['Helvetica'], + fontSize: '33px', + fontWeight: 400, + lineHeight: '40px', }, - id: 'typography.callout', - '$type': 'typography', - '$value': { - fontFamily: ['IBM Plex Sans', '-system-ui', 'sans-serif'], - fontSize: '18px', - fontWeight: 300, - fontStyle: 'italic', - lineHeight: 1.5, + l: { + fontFamily: ['Helvetica'], + fontSize: '34px', + fontWeight: 400, + lineHeight: '41px', + }, + xl: { + fontFamily: ['Helvetica'], + fontSize: '36px', + fontWeight: 400, + lineHeight: '43px', + }, + '2xl': { + fontFamily: ['Helvetica'], + fontSize: '38px', + fontWeight: 400, + lineHeight: '46px', + }, + '3xl': { + fontFamily: ['Helvetica'], + fontSize: '40px', + fontWeight: 400, + lineHeight: '48px', }, }, 'typography.body': { - '_original': { - '$type': 'typography', - '$value': { - fontFamily: '{typography.family.body}', - fontSize: '16px', - fontWeight: 400, - lineHeight: 1.5, - }, + xs: { + fontFamily: ['Helvetica'], + fontSize: '14px', + fontWeight: 400, + lineHeight: '19px', }, - '_group': { - id: 'typography', - '$extensions': { - requiredModes: [], - }, + s: { + fontFamily: ['Helvetica'], + fontSize: '15px', + fontWeight: 400, + lineHeight: '20px', }, - id: 'typography.body', - '$type': 'typography', - '$value': { - fontFamily: ['IBM Plex Sans', '-system-ui', 'sans-serif'], + m: { + fontFamily: ['Helvetica'], fontSize: '16px', fontWeight: 400, - lineHeight: 1.5, + lineHeight: '21px', + }, + l: { + fontFamily: ['Helvetica'], + fontSize: '17px', + fontWeight: 400, + lineHeight: '22px', + }, + xl: { + fontFamily: ['Helvetica'], + fontSize: '19px', + fontWeight: 400, + lineHeight: '24px', + }, + '2xl': { + fontFamily: ['Helvetica'], + fontSize: '21px', + fontWeight: 400, + lineHeight: '26px', + }, + '3xl': { + fontFamily: ['Helvetica'], + fontSize: '23px', + fontWeight: 400, + lineHeight: '29px', }, }, }; -export const modes = {}; - /** Get individual token */ export function token(tokenID, modeName) { if (modeName && modes[tokenID] && modeName in modes[tokenID]) return modes[tokenID][modeName]; diff --git a/packages/plugin-js/test/typography/want.json b/packages/plugin-js/test/typography/want.json index 1e32669f..274524dd 100644 --- a/packages/plugin-js/test/typography/want.json +++ b/packages/plugin-js/test/typography/want.json @@ -8,45 +8,21 @@ "typography.family.heading": [ "Helvetica" ], - "typography.page-title": { + "typography.largeTitle": { "fontFamily": [ "Helvetica" ], - "fontSize": "48px", - "fontWeight": 600, - "lineHeight": 1.25, - "letterSpacing": "0.125em" - }, - "typography.subheading": { - "fontFamily": [ - "Helvetica" - ], - "fontSize": "18px", - "fontWeight": 500, - "lineHeight": 1.375, - "letterSpacing": "0.25em", - "textTransform": "uppercase" - }, - "typography.callout": { - "fontFamily": [ - "IBM Plex Sans", - "-system-ui", - "sans-serif" - ], - "fontSize": "18px", - "fontWeight": 300, - "fontStyle": "italic", - "lineHeight": 1.5 + "fontSize": "34px", + "fontWeight": 400, + "lineHeight": "41px" }, "typography.body": { "fontFamily": [ - "IBM Plex Sans", - "-system-ui", - "sans-serif" + "Helvetica" ], - "fontSize": "16px", + "fontSize": "17px", "fontWeight": 400, - "lineHeight": 1.5 + "lineHeight": "22px" } }, "meta": { @@ -90,15 +66,46 @@ "Helvetica" ] }, - "typography.page-title": { + "typography.largeTitle": { "_original": { "$type": "typography", "$value": { "fontFamily": "{typography.family.heading}", - "fontSize": "48px", - "fontWeight": 600, - "lineHeight": 1.25, - "letterSpacing": "0.125em" + "fontSize": "34px", + "fontWeight": 400, + "lineHeight": "41px" + }, + "$extensions": { + "mode": { + "xs": { + "fontSize": "31px", + "lineHeight": "38px" + }, + "s": { + "fontSize": "32px", + "lineHeight": "39px" + }, + "m": { + "fontSize": "33px", + "lineHeight": "40px" + }, + "l": { + "fontSize": "34px", + "lineHeight": "41px" + }, + "xl": { + "fontSize": "36px", + "lineHeight": "43px" + }, + "2xl": { + "fontSize": "38px", + "lineHeight": "46px" + }, + "3xl": { + "fontSize": "40px", + "lineHeight": "48px" + } + } } }, "_group": { @@ -107,28 +114,89 @@ "requiredModes": [] } }, - "id": "typography.page-title", + "id": "typography.largeTitle", "$type": "typography", "$value": { "fontFamily": [ "Helvetica" ], - "fontSize": "48px", - "fontWeight": 600, - "lineHeight": 1.25, - "letterSpacing": "0.125em" + "fontSize": "34px", + "fontWeight": 400, + "lineHeight": "41px" + }, + "$extensions": { + "mode": { + "xs": { + "fontSize": "31px", + "lineHeight": "38px" + }, + "s": { + "fontSize": "32px", + "lineHeight": "39px" + }, + "m": { + "fontSize": "33px", + "lineHeight": "40px" + }, + "l": { + "fontSize": "34px", + "lineHeight": "41px" + }, + "xl": { + "fontSize": "36px", + "lineHeight": "43px" + }, + "2xl": { + "fontSize": "38px", + "lineHeight": "46px" + }, + "3xl": { + "fontSize": "40px", + "lineHeight": "48px" + } + } } }, - "typography.subheading": { + "typography.body": { "_original": { "$type": "typography", "$value": { "fontFamily": "{typography.family.heading}", - "fontSize": "18px", - "fontWeight": 500, - "lineHeight": 1.375, - "letterSpacing": "0.25em", - "textTransform": "uppercase" + "fontSize": "17px", + "fontWeight": 400, + "lineHeight": "22px" + }, + "$extensions": { + "mode": { + "xs": { + "fontSize": "14px", + "lineHeight": "19px" + }, + "s": { + "fontSize": "15px", + "lineHeight": "20px" + }, + "m": { + "fontSize": "16px", + "lineHeight": "21px" + }, + "l": { + "fontSize": "17px", + "lineHeight": "22px" + }, + "xl": { + "fontSize": "19px", + "lineHeight": "24px" + }, + "2xl": { + "fontSize": "21px", + "lineHeight": "26px" + }, + "3xl": { + "fontSize": "23px", + "lineHeight": "29px" + } + } } }, "_group": { @@ -137,79 +205,166 @@ "requiredModes": [] } }, - "id": "typography.subheading", + "id": "typography.body", "$type": "typography", "$value": { "fontFamily": [ "Helvetica" ], - "fontSize": "18px", - "fontWeight": 500, - "lineHeight": 1.375, - "letterSpacing": "0.25em", - "textTransform": "uppercase" - } - }, - "typography.callout": { - "_original": { - "$type": "typography", - "$value": { - "fontFamily": "{typography.family.body}", - "fontSize": "18px", - "fontWeight": 300, - "font-style": "italic", - "lineHeight": 1.5 - } + "fontSize": "17px", + "fontWeight": 400, + "lineHeight": "22px" }, - "_group": { - "id": "typography", - "$extensions": { - "requiredModes": [] + "$extensions": { + "mode": { + "xs": { + "fontSize": "14px", + "lineHeight": "19px" + }, + "s": { + "fontSize": "15px", + "lineHeight": "20px" + }, + "m": { + "fontSize": "16px", + "lineHeight": "21px" + }, + "l": { + "fontSize": "17px", + "lineHeight": "22px" + }, + "xl": { + "fontSize": "19px", + "lineHeight": "24px" + }, + "2xl": { + "fontSize": "21px", + "lineHeight": "26px" + }, + "3xl": { + "fontSize": "23px", + "lineHeight": "29px" + } } + } + } + }, + "modes": { + "typography.largeTitle": { + "xs": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "31px", + "fontWeight": 400, + "lineHeight": "38px" }, - "id": "typography.callout", - "$type": "typography", - "$value": { + "s": { "fontFamily": [ - "IBM Plex Sans", - "-system-ui", - "sans-serif" + "Helvetica" + ], + "fontSize": "32px", + "fontWeight": 400, + "lineHeight": "39px" + }, + "m": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "33px", + "fontWeight": 400, + "lineHeight": "40px" + }, + "l": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "34px", + "fontWeight": 400, + "lineHeight": "41px" + }, + "xl": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "36px", + "fontWeight": 400, + "lineHeight": "43px" + }, + "2xl": { + "fontFamily": [ + "Helvetica" ], - "fontSize": "18px", - "fontWeight": 300, - "fontStyle": "italic", - "lineHeight": 1.5 + "fontSize": "38px", + "fontWeight": 400, + "lineHeight": "46px" + }, + "3xl": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "40px", + "fontWeight": 400, + "lineHeight": "48px" } }, "typography.body": { - "_original": { - "$type": "typography", - "$value": { - "fontFamily": "{typography.family.body}", - "fontSize": "16px", - "fontWeight": 400, - "lineHeight": 1.5 - } + "xs": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "14px", + "fontWeight": 400, + "lineHeight": "19px" }, - "_group": { - "id": "typography", - "$extensions": { - "requiredModes": [] - } + "s": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "15px", + "fontWeight": 400, + "lineHeight": "20px" }, - "id": "typography.body", - "$type": "typography", - "$value": { + "m": { "fontFamily": [ - "IBM Plex Sans", - "-system-ui", - "sans-serif" + "Helvetica" ], "fontSize": "16px", "fontWeight": 400, - "lineHeight": 1.5 + "lineHeight": "21px" + }, + "l": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "17px", + "fontWeight": 400, + "lineHeight": "22px" + }, + "xl": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "19px", + "fontWeight": 400, + "lineHeight": "24px" + }, + "2xl": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "21px", + "fontWeight": 400, + "lineHeight": "26px" + }, + "3xl": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "23px", + "fontWeight": 400, + "lineHeight": "29px" } } - }, - "modes": {} + } } diff --git a/packages/utils/src/string.test.ts b/packages/utils/src/string.test.ts index ccf72975..eaf79aea 100644 --- a/packages/utils/src/string.test.ts +++ b/packages/utils/src/string.test.ts @@ -1,5 +1,5 @@ import {describe, expect, test} from 'vitest'; -import {camelize, kebabinate} from './string.js'; +import {camelize, kebabinate, objKey} from './string.js'; describe('camelize', () => { test('basic', () => { @@ -12,3 +12,18 @@ describe('kebabinate', () => { expect(kebabinate('stringToKebabinate')).toBe('string-to-kebabinate'); }); }); + +describe('objKey', () => { + test('basic', () => { + // JS-valid keys + expect(objKey('valid')).toBe('valid'); + expect(objKey('$valid')).toBe('$valid'); + expect(objKey('_valid')).toBe('_valid'); + + // JS-invalid keys + expect(objKey('123')).toBe("'123'"); + expect(objKey('1invalid')).toBe("'1invalid'"); + expect(objKey('in-valid')).toBe("'in-valid'"); + expect(objKey('in.valid')).toBe("'in.valid'"); + }); +}); diff --git a/packages/utils/src/string.ts b/packages/utils/src/string.ts index 90e9470d..44bb310f 100644 --- a/packages/utils/src/string.ts +++ b/packages/utils/src/string.ts @@ -2,6 +2,7 @@ export const CHARACTER_RE = [ '0-9', // Numeric 'A-Za-z', // Basic Latin + '_$', // valid symbols '\u00C0-\u00FF', // Latin-1 Supplement '\u0100-\u017F', // Latin Extended-A '\u0180-\u024F', // Latin Extended-B @@ -18,6 +19,7 @@ export const CHARACTER_RE = [ '\u4E00-\u9FFF', // CJK ]; +export const STARTS_WITH_NUMBER_RE = /^[0-9]/; export const CASECHANGE_RE = /[a-zâ-ž][A-ZÀ-Ž]/g; export const KEBAB_COVERT_RE = /[_.]/g; export const CAMEL_CONVERT_RE = /[^-_.\s][-_.\s]+[^-_.\s]/g; @@ -40,6 +42,6 @@ export function camelize(input: string): string { /** wrap bad obj keynames in strings */ export function objKey(name: string, wrapper = "'"): string { - if (name[0] === '0' && name.length > 1) return `${wrapper}${name}${wrapper}`; // zero-prefixed numbers get wrapper + if (STARTS_WITH_NUMBER_RE.test(name)) return `${wrapper}${name}${wrapper}`; // keys that start with a number get wrapper return VALID_KEY.test(name) ? name : `${wrapper}${name}${wrapper}`; } From 4d0e7b03695b0aa37246969a4f996db7f6c42a6c Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 31 Aug 2023 15:53:52 -0600 Subject: [PATCH 2/3] Sort tokens alphabetically --- .changeset/little-baboons-punch.md | 5 + docs/tokens/index.scss | 10 +- examples/ibm/scripts/update.js | 6 +- .../fixtures/build-custom-dir/tokens.json | 2 +- .../test/fixtures/build-default/tokens.json | 2 +- .../test/fixtures/build-multiple/base.json | 2 +- .../fixtures/build-multiple/semantic.json | 4 +- .../fixtures/build-multiple/typography.json | 4 +- .../test/fixtures/bundle-default/base.json | 2 +- .../fixtures/bundle-default/semantic.json | 4 +- .../fixtures/bundle-default/typography.json | 4 +- .../fixtures/bundle-default/want/bundled.json | 32 +- .../fixtures/bundle-default/want/bundled.yaml | 24 +- packages/core/src/parse/index.ts | 1 + packages/core/test/index.test.ts | 45 ++ packages/core/test/w3c.test.ts | 2 +- packages/plugin-css/src/index.ts | 4 +- packages/plugin-css/test/border/want.css | 12 +- packages/plugin-css/test/color/want.css | 20 +- .../test/no-empty-modes/tokens.yaml | 2 +- .../plugin-css/test/no-empty-modes/want.css | 20 +- packages/plugin-css/test/p3/want.css | 2 +- packages/plugin-css/test/transition/want.css | 38 +- packages/plugin-css/test/typography/want.css | 22 +- packages/plugin-js/test/color/tokens.json | 16 +- packages/plugin-js/test/color/want.d.ts | 12 +- packages/plugin-js/test/color/want.js | 76 +-- packages/plugin-js/test/color/want.json | 78 +-- packages/plugin-js/test/nested/tokens.json | 16 +- packages/plugin-js/test/nested/want.d.ts | 8 +- packages/plugin-js/test/nested/want.js | 42 +- packages/plugin-js/test/nested/want.json | 44 +- packages/plugin-js/test/transition/want.d.ts | 76 +-- packages/plugin-js/test/transition/want.js | 370 +++++++------- packages/plugin-js/test/transition/want.json | 460 +++++++++--------- packages/plugin-js/test/typography/want.d.ts | 8 +- packages/plugin-js/test/typography/want.js | 250 +++++----- packages/plugin-js/test/typography/want.json | 258 +++++----- packages/plugin-sass/test/basic/want.sass | 172 +++---- packages/plugin-sass/test/basic/want.scss | 172 +++---- .../plugin-sass/test/plugin-css/tokens.css | 26 +- .../plugin-sass/test/plugin-css/want.scss | 58 +-- packages/utils/src/string.test.ts | 2 + 43 files changed, 1234 insertions(+), 1179 deletions(-) create mode 100644 .changeset/little-baboons-punch.md create mode 100644 packages/core/test/index.test.ts diff --git a/.changeset/little-baboons-punch.md b/.changeset/little-baboons-punch.md new file mode 100644 index 00000000..9df4a021 --- /dev/null +++ b/.changeset/little-baboons-punch.md @@ -0,0 +1,5 @@ +--- +'@cobalt-ui/core': patch +--- + +Sort tokens alphabetically diff --git a/docs/tokens/index.scss b/docs/tokens/index.scss index a7341cdc..8f13e048 100644 --- a/docs/tokens/index.scss +++ b/docs/tokens/index.scss @@ -136,6 +136,11 @@ $__token-values: ( "light": (var(--color-ui-contrast-0)), "dark": (var(--color-ui-contrast-0)), ), + "color.ui.contrast.05": ( + default: (var(--color-ui-contrast-05)), + "light": (var(--color-ui-contrast-05)), + "dark": (var(--color-ui-contrast-05)), + ), "color.ui.contrast.10": ( default: (var(--color-ui-contrast-10)), "light": (var(--color-ui-contrast-10)), @@ -201,11 +206,6 @@ $__token-values: ( "light": (var(--color-ui-contrast-100)), "dark": (var(--color-ui-contrast-100)), ), - "color.ui.contrast.05": ( - default: (var(--color-ui-contrast-05)), - "light": (var(--color-ui-contrast-05)), - "dark": (var(--color-ui-contrast-05)), - ), "color.ui.action": ( default: (var(--color-ui-action)), "light": (var(--color-ui-action)), diff --git a/examples/ibm/scripts/update.js b/examples/ibm/scripts/update.js index 2921ce3b..b2d3d900 100644 --- a/examples/ibm/scripts/update.js +++ b/examples/ibm/scripts/update.js @@ -41,9 +41,9 @@ for (const icon of Object.values(icons)) { } // typography -for (const [fontName, value] of Object.entries(typography)) { +for (const [fontFamily, value] of Object.entries(typography)) { // family - if (fontName == 'fontFamilies') { + if (fontFamily == 'fontFamilies') { for (const [familyName, fontStack] of Object.entries(value)) { schema.tokens.font.family[familyName] = { type: 'fontFamily', @@ -54,7 +54,7 @@ for (const [fontName, value] of Object.entries(typography)) { } // size if (typeof value == 'object' && value.fontSize) { - schema.tokens.font.size[fontName] = { + schema.tokens.font.size[fontFamily] = { type: 'dimension', value: value.fontSize, }; diff --git a/packages/cli/test/fixtures/build-custom-dir/tokens.json b/packages/cli/test/fixtures/build-custom-dir/tokens.json index acb0a32c..68e76118 100644 --- a/packages/cli/test/fixtures/build-custom-dir/tokens.json +++ b/packages/cli/test/fixtures/build-custom-dir/tokens.json @@ -22,7 +22,7 @@ "95": {"$value": "oklch(95% 0.023788 264)"} }, "gray": { - "0": {"$value": "{color.black}"}, + "00": {"$value": "{color.black}"}, "10": {"$value": "#00040d"}, "15": {"$value": "#040d18"}, "20": {"$value": "#0e1823"}, diff --git a/packages/cli/test/fixtures/build-default/tokens.json b/packages/cli/test/fixtures/build-default/tokens.json index acb0a32c..68e76118 100644 --- a/packages/cli/test/fixtures/build-default/tokens.json +++ b/packages/cli/test/fixtures/build-default/tokens.json @@ -22,7 +22,7 @@ "95": {"$value": "oklch(95% 0.023788 264)"} }, "gray": { - "0": {"$value": "{color.black}"}, + "00": {"$value": "{color.black}"}, "10": {"$value": "#00040d"}, "15": {"$value": "#040d18"}, "20": {"$value": "#0e1823"}, diff --git a/packages/cli/test/fixtures/build-multiple/base.json b/packages/cli/test/fixtures/build-multiple/base.json index acb0a32c..68e76118 100644 --- a/packages/cli/test/fixtures/build-multiple/base.json +++ b/packages/cli/test/fixtures/build-multiple/base.json @@ -22,7 +22,7 @@ "95": {"$value": "oklch(95% 0.023788 264)"} }, "gray": { - "0": {"$value": "{color.black}"}, + "00": {"$value": "{color.black}"}, "10": {"$value": "#00040d"}, "15": {"$value": "#040d18"}, "20": {"$value": "#0e1823"}, diff --git a/packages/cli/test/fixtures/build-multiple/semantic.json b/packages/cli/test/fixtures/build-multiple/semantic.json index 2c2acbb6..f2ffe98d 100644 --- a/packages/cli/test/fixtures/build-multiple/semantic.json +++ b/packages/cli/test/fixtures/build-multiple/semantic.json @@ -3,7 +3,7 @@ "$type": "color", "ui": { "contrast": { - "0": {"$value": "{color.gray.100}", "$extensions": {"mode": {"light": "{color.gray.100}", "dark": "{color.gray.0}"}}}, + "00": {"$value": "{color.gray.100}", "$extensions": {"mode": {"light": "{color.gray.100}", "dark": "{color.gray.00}"}}}, "05": {"$value": "{color.gray.95}", "$extensions": {"mode": {"light": "{color.gray.95}", "dark": "{color.gray.10}"}}}, "10": {"$value": "{color.gray.90}", "$extensions": {"mode": {"light": "{color.gray.90}", "dark": "{color.gray.10}"}}}, "15": {"$value": "{color.gray.85}", "$extensions": {"mode": {"light": "{color.gray.85}", "dark": "{color.gray.15}"}}}, @@ -17,7 +17,7 @@ "85": {"$value": "{color.gray.15}", "$extensions": {"mode": {"light": "{color.gray.15}", "dark": "{color.gray.85}"}}}, "90": {"$value": "{color.gray.10}", "$extensions": {"mode": {"light": "{color.gray.10}", "dark": "{color.gray.90}"}}}, "95": {"$value": "{color.gray.10}", "$extensions": {"mode": {"light": "{color.gray.10}", "dark": "{color.gray.95}"}}}, - "100": {"$value": "{color.gray.0}", "$extensions": {"mode": {"light": "{color.gray.0}", "dark": "{color.gray.100}"}}} + "100": {"$value": "{color.gray.00}", "$extensions": {"mode": {"light": "{color.gray.00}", "dark": "{color.gray.100}"}}} }, "action": { "10": {"$value": "{color.blue.10}"}, diff --git a/packages/cli/test/fixtures/build-multiple/typography.json b/packages/cli/test/fixtures/build-multiple/typography.json index 60c44eb2..c9221bdc 100644 --- a/packages/cli/test/fixtures/build-multiple/typography.json +++ b/packages/cli/test/fixtures/build-multiple/typography.json @@ -8,8 +8,8 @@ "typography": { "$type": "typography", "family": { - "base": {"$type": "fontName", "$value": ["system-ui", "sans-serif"]}, - "mono": {"$type": "fontName", "$value": ["ui-monospace", "monospace"]} + "base": {"$type": "fontFamily", "$value": ["system-ui", "sans-serif"]}, + "mono": {"$type": "fontFamily", "$value": ["ui-monospace", "monospace"]} }, "base": { "$value": { diff --git a/packages/cli/test/fixtures/bundle-default/base.json b/packages/cli/test/fixtures/bundle-default/base.json index acb0a32c..68e76118 100644 --- a/packages/cli/test/fixtures/bundle-default/base.json +++ b/packages/cli/test/fixtures/bundle-default/base.json @@ -22,7 +22,7 @@ "95": {"$value": "oklch(95% 0.023788 264)"} }, "gray": { - "0": {"$value": "{color.black}"}, + "00": {"$value": "{color.black}"}, "10": {"$value": "#00040d"}, "15": {"$value": "#040d18"}, "20": {"$value": "#0e1823"}, diff --git a/packages/cli/test/fixtures/bundle-default/semantic.json b/packages/cli/test/fixtures/bundle-default/semantic.json index 2c2acbb6..f2ffe98d 100644 --- a/packages/cli/test/fixtures/bundle-default/semantic.json +++ b/packages/cli/test/fixtures/bundle-default/semantic.json @@ -3,7 +3,7 @@ "$type": "color", "ui": { "contrast": { - "0": {"$value": "{color.gray.100}", "$extensions": {"mode": {"light": "{color.gray.100}", "dark": "{color.gray.0}"}}}, + "00": {"$value": "{color.gray.100}", "$extensions": {"mode": {"light": "{color.gray.100}", "dark": "{color.gray.00}"}}}, "05": {"$value": "{color.gray.95}", "$extensions": {"mode": {"light": "{color.gray.95}", "dark": "{color.gray.10}"}}}, "10": {"$value": "{color.gray.90}", "$extensions": {"mode": {"light": "{color.gray.90}", "dark": "{color.gray.10}"}}}, "15": {"$value": "{color.gray.85}", "$extensions": {"mode": {"light": "{color.gray.85}", "dark": "{color.gray.15}"}}}, @@ -17,7 +17,7 @@ "85": {"$value": "{color.gray.15}", "$extensions": {"mode": {"light": "{color.gray.15}", "dark": "{color.gray.85}"}}}, "90": {"$value": "{color.gray.10}", "$extensions": {"mode": {"light": "{color.gray.10}", "dark": "{color.gray.90}"}}}, "95": {"$value": "{color.gray.10}", "$extensions": {"mode": {"light": "{color.gray.10}", "dark": "{color.gray.95}"}}}, - "100": {"$value": "{color.gray.0}", "$extensions": {"mode": {"light": "{color.gray.0}", "dark": "{color.gray.100}"}}} + "100": {"$value": "{color.gray.00}", "$extensions": {"mode": {"light": "{color.gray.00}", "dark": "{color.gray.100}"}}} }, "action": { "10": {"$value": "{color.blue.10}"}, diff --git a/packages/cli/test/fixtures/bundle-default/typography.json b/packages/cli/test/fixtures/bundle-default/typography.json index 60c44eb2..c9221bdc 100644 --- a/packages/cli/test/fixtures/bundle-default/typography.json +++ b/packages/cli/test/fixtures/bundle-default/typography.json @@ -8,8 +8,8 @@ "typography": { "$type": "typography", "family": { - "base": {"$type": "fontName", "$value": ["system-ui", "sans-serif"]}, - "mono": {"$type": "fontName", "$value": ["ui-monospace", "monospace"]} + "base": {"$type": "fontFamily", "$value": ["system-ui", "sans-serif"]}, + "mono": {"$type": "fontFamily", "$value": ["ui-monospace", "monospace"]} }, "base": { "$value": { diff --git a/packages/cli/test/fixtures/bundle-default/want/bundled.json b/packages/cli/test/fixtures/bundle-default/want/bundled.json index 927d8607..f00e6b5d 100644 --- a/packages/cli/test/fixtures/bundle-default/want/bundled.json +++ b/packages/cli/test/fixtures/bundle-default/want/bundled.json @@ -46,9 +46,6 @@ } }, "gray": { - "0": { - "$value": "{color.black}" - }, "10": { "$value": "#00040d" }, @@ -90,6 +87,9 @@ }, "100": { "$value": "{color.white}" + }, + "00": { + "$value": "{color.black}" } }, "darkGray": { @@ -109,15 +109,6 @@ }, "ui": { "contrast": { - "0": { - "$value": "{color.gray.100}", - "$extensions": { - "mode": { - "light": "{color.gray.100}", - "dark": "{color.gray.0}" - } - } - }, "10": { "$value": "{color.gray.90}", "$extensions": { @@ -227,14 +218,23 @@ } }, "100": { - "$value": "{color.gray.0}", + "$value": "{color.gray.00}", "$extensions": { "mode": { - "light": "{color.gray.0}", + "light": "{color.gray.00}", "dark": "{color.gray.100}" } } }, + "00": { + "$value": "{color.gray.100}", + "$extensions": { + "mode": { + "light": "{color.gray.100}", + "dark": "{color.gray.00}" + } + } + }, "05": { "$value": "{color.gray.95}", "$extensions": { @@ -292,14 +292,14 @@ "$type": "typography", "family": { "base": { - "$type": "fontName", + "$type": "fontFamily", "$value": [ "system-ui", "sans-serif" ] }, "mono": { - "$type": "fontName", + "$type": "fontFamily", "$value": [ "ui-monospace", "monospace" diff --git a/packages/cli/test/fixtures/bundle-default/want/bundled.yaml b/packages/cli/test/fixtures/bundle-default/want/bundled.yaml index 09a0eaab..a2219d94 100644 --- a/packages/cli/test/fixtures/bundle-default/want/bundled.yaml +++ b/packages/cli/test/fixtures/bundle-default/want/bundled.yaml @@ -30,8 +30,6 @@ color: '95': $value: oklch(95% 0.023788 264) gray: - '0': - $value: '{color.black}' '10': $value: '#00040d' '15': @@ -60,6 +58,8 @@ color: $value: '#ebeef7' '100': $value: '{color.white}' + '00': + $value: '{color.black}' darkGray: $value: '#282a37' green: @@ -72,12 +72,6 @@ color: $value: '#ffffff' ui: contrast: - '0': - $value: '{color.gray.100}' - $extensions: - mode: - light: '{color.gray.100}' - dark: '{color.gray.0}' '10': $value: '{color.gray.90}' $extensions: @@ -151,11 +145,17 @@ color: light: '{color.gray.10}' dark: '{color.gray.95}' '100': - $value: '{color.gray.0}' + $value: '{color.gray.00}' $extensions: mode: - light: '{color.gray.0}' + light: '{color.gray.00}' dark: '{color.gray.100}' + '00': + $value: '{color.gray.100}' + $extensions: + mode: + light: '{color.gray.100}' + dark: '{color.gray.00}' '05': $value: '{color.gray.95}' $extensions: @@ -193,12 +193,12 @@ typography: $type: typography family: base: - $type: fontName + $type: fontFamily $value: - system-ui - sans-serif mono: - $type: fontName + $type: fontFamily $value: - ui-monospace - monospace diff --git a/packages/core/src/parse/index.ts b/packages/core/src/parse/index.ts index 9b7bd292..98ae1926 100644 --- a/packages/core/src/parse/index.ts +++ b/packages/core/src/parse/index.ts @@ -337,6 +337,7 @@ export function parse(rawTokens: unknown, options: ParseOptions): ParseResult { if (errors.length) result.errors = errors; if (warnings.length) result.warnings = warnings; result.result.tokens = Object.values(tokens); + result.result.tokens.sort((a, b) => a.id.localeCompare(b.id, 'en-us', {numeric: true})); // sort alphabetically return result; } diff --git a/packages/core/test/index.test.ts b/packages/core/test/index.test.ts new file mode 100644 index 00000000..2f27928f --- /dev/null +++ b/packages/core/test/index.test.ts @@ -0,0 +1,45 @@ +import {describe, expect, test} from 'vitest'; +import {parse} from '../src/index.js'; + +describe('parse', () => { + test('sorts tokens', () => { + const { + result: {tokens}, + } = parse( + { + color: { + $type: 'color', + blue: { + '70': {$value: '#4887c9'}, + '10': {$value: '#062053'}, + '30': {$value: '#192f7d'}, + '80': {$value: '#5ca9d7'}, + '40': {$value: '#223793'}, + '50': {$description: 'Medium blue', $value: '#2b3faa'}, + '100': {$value: '#89eff1'}, + '60': {$value: '#3764ba'}, + '90': {$value: '#72cce5'}, + '20': {$value: '#0f2868'}, + '00': {$value: '{color.black}'}, + }, + black: {$value: '#000000'}, + }, + }, + {color: {}}, + ); + expect(tokens.map((t) => t.id)).toEqual([ + 'color.black', + 'color.blue.00', + 'color.blue.10', + 'color.blue.20', + 'color.blue.30', + 'color.blue.40', + 'color.blue.50', + 'color.blue.60', + 'color.blue.70', + 'color.blue.80', + 'color.blue.90', + 'color.blue.100', + ]); + }); +}); diff --git a/packages/core/test/w3c.test.ts b/packages/core/test/w3c.test.ts index 8f8507e8..ac351bf5 100644 --- a/packages/core/test/w3c.test.ts +++ b/packages/core/test/w3c.test.ts @@ -3,7 +3,7 @@ */ import {FG_RED, RESET} from '@cobalt-ui/utils'; import {describe, expect, test} from 'vitest'; -import {ParseOptions, parse} from '../src/index'; +import {ParseOptions, parse} from '../src/index.js'; const DEFAULT_PARSE_OPTIONS: ParseOptions = {color: {}}; diff --git a/packages/plugin-css/src/index.ts b/packages/plugin-css/src/index.ts index ecefbfa2..c5f2d568 100644 --- a/packages/plugin-css/src/index.ts +++ b/packages/plugin-css/src/index.ts @@ -56,7 +56,9 @@ export default function pluginCSS(options?: Options): Plugin { function makeVars({tokens, indentLv = 0, root = false}: {tokens: Record; indentLv: number; root: boolean}): string[] { const output: string[] = []; if (root) output.push(indent(':root {', indentLv)); - for (const [id, value] of Object.entries(tokens)) { + const sortedTokens = Object.entries(tokens); + sortedTokens.sort((a, b) => a[0].localeCompare(b[0], 'en-us', {numeric: true})); + for (const [id, value] of sortedTokens) { output.push(indent(`${varName(id, {prefix})}: ${value};`, indentLv + (root ? 1 : 0))); } if (root) output.push(indent('}', indentLv)); diff --git a/packages/plugin-css/test/border/want.css b/packages/plugin-css/test/border/want.css index b508eedb..def09b9b 100644 --- a/packages/plugin-css/test/border/want.css +++ b/packages/plugin-css/test/border/want.css @@ -5,22 +5,22 @@ */ :root { - --ds-color-gray: #544741; --ds-border: 1px solid #0d0300; --ds-border-gray: 1px solid var(--ds-color-gray); + --ds-color-gray: #544741; } @media (prefers-color-scheme: light) { :root { - --ds-color-gray: #544741; --ds-border: 1px solid #0d0300; + --ds-color-gray: #544741; } } @media (prefers-color-scheme: dark) { :root { - --ds-color-gray: #bbb6b3; --ds-border: 1px solid #ffffff; + --ds-color-gray: #bbb6b3; } } @@ -34,21 +34,21 @@ @supports (color: color(display-p3 1 1 1)) { :root { - --ds-color-gray: color(display-p3 0.32941176470588235 0.2784313725490196 0.2549019607843137); --ds-border: 1px solid color(display-p3 0.050980392156862744 0.011764705882352941 0); + --ds-color-gray: color(display-p3 0.32941176470588235 0.2784313725490196 0.2549019607843137); } @media (prefers-color-scheme: light) { :root { - --ds-color-gray: color(display-p3 0.32941176470588235 0.2784313725490196 0.2549019607843137); --ds-border: 1px solid color(display-p3 0.050980392156862744 0.011764705882352941 0); + --ds-color-gray: color(display-p3 0.32941176470588235 0.2784313725490196 0.2549019607843137); } } @media (prefers-color-scheme: dark) { :root { - --ds-color-gray: color(display-p3 0.7333333333333333 0.7137254901960784 0.7019607843137254); --ds-border: 1px solid color(display-p3 1 1 1); + --ds-color-gray: color(display-p3 0.7333333333333333 0.7137254901960784 0.7019607843137254); } } diff --git a/packages/plugin-css/test/color/want.css b/packages/plugin-css/test/color/want.css index 9d1babcf..a4fee1d1 100644 --- a/packages/plugin-css/test/color/want.css +++ b/packages/plugin-css/test/color/want.css @@ -5,58 +5,58 @@ */ :root { - --ds-color-blue: #218bff; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #218bff; --ds-gradient: #218bff 0%, #e85aad 100%; } @media (prefers-color-scheme: light) { :root { - --ds-color-blue: #218bff; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #218bff; } } @media (prefers-color-scheme: dark) { :root { - --ds-color-blue: #388bfd; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #388bfd; } } [data-color-theme="light"] { - --ds-color-blue: #218bff; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #218bff; } [data-color-theme="dark"] { - --ds-color-blue: #388bfd; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #388bfd; } [data-color-theme="light-colorblind"] { - --ds-color-blue: #218bff; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #218bff; } [data-color-theme="light-high-contrast"] { - --ds-color-blue: #1168e3; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #1168e3; } [data-color-theme="dark-dimmed"] { - --ds-color-blue: #4184e4; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #4184e4; } [data-color-theme="high-contrast"] { - --ds-color-blue: #409eff; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #409eff; } [data-color-theme="dark-colorblind"] { - --ds-color-blue: #388bfd; --ds-color-action: var(--ds-color-blue); + --ds-color-blue: #388bfd; } @supports (color: color(display-p3 1 1 1)) { diff --git a/packages/plugin-css/test/no-empty-modes/tokens.yaml b/packages/plugin-css/test/no-empty-modes/tokens.yaml index c7ad9003..482fb066 100644 --- a/packages/plugin-css/test/no-empty-modes/tokens.yaml +++ b/packages/plugin-css/test/no-empty-modes/tokens.yaml @@ -66,7 +66,7 @@ color: mode: light: '{color.gray.100}' dark: '{color.gray.10}' - 05: + '05': $value: '{color.gray.95}' $extensions: mode: diff --git a/packages/plugin-css/test/no-empty-modes/want.css b/packages/plugin-css/test/no-empty-modes/want.css index 54a7931f..31694508 100644 --- a/packages/plugin-css/test/no-empty-modes/want.css +++ b/packages/plugin-css/test/no-empty-modes/want.css @@ -33,7 +33,8 @@ --color-gray-90: #e0dddd; --color-gray-95: #f0eeee; --color-gray-100: #ffffff; - --color-ui-contrast-5: var(--color-gray-95); + --color-ui-contrast-00: var(--color-gray-100); + --color-ui-contrast-05: var(--color-gray-95); --color-ui-contrast-10: var(--color-gray-90); --color-ui-contrast-15: var(--color-gray-85); --color-ui-contrast-20: var(--color-gray-80); @@ -48,12 +49,12 @@ --color-ui-contrast-90: var(--color-gray-10); --color-ui-contrast-95: var(--color-ui-contrast-90); --color-ui-contrast-100: var(--color-ui-contrast-90); - --color-ui-contrast-00: var(--color-gray-100); } @media (prefers-color-scheme: light) { :root { - --color-ui-contrast-5: var(--color-gray-95); + --color-ui-contrast-00: var(--color-gray-100); + --color-ui-contrast-05: var(--color-gray-95); --color-ui-contrast-10: var(--color-gray-90); --color-ui-contrast-15: var(--color-gray-85); --color-ui-contrast-20: var(--color-gray-80); @@ -68,12 +69,12 @@ --color-ui-contrast-90: var(--color-gray-10); --color-ui-contrast-95: var(--color-ui-contrast-90); --color-ui-contrast-100: var(--color-ui-contrast-90); - --color-ui-contrast-00: var(--color-gray-100); } } [data-color-mode="light"] { - --color-ui-contrast-5: var(--color-gray-95); + --color-ui-contrast-00: var(--color-gray-100); + --color-ui-contrast-05: var(--color-gray-95); --color-ui-contrast-10: var(--color-gray-90); --color-ui-contrast-15: var(--color-gray-85); --color-ui-contrast-20: var(--color-gray-80); @@ -88,12 +89,12 @@ --color-ui-contrast-90: var(--color-gray-10); --color-ui-contrast-95: var(--color-ui-contrast-90); --color-ui-contrast-100: var(--color-ui-contrast-90); - --color-ui-contrast-00: var(--color-gray-100); } @media (prefers-color-scheme: dark) { :root { - --color-ui-contrast-5: var(--color-gray-15); + --color-ui-contrast-00: var(--color-gray-10); + --color-ui-contrast-05: var(--color-gray-15); --color-ui-contrast-10: var(--color-gray-20); --color-ui-contrast-15: var(--color-gray-25); --color-ui-contrast-20: var(--color-gray-30); @@ -108,12 +109,12 @@ --color-ui-contrast-90: var(--color-gray-100); --color-ui-contrast-95: var(--color-ui-contrast-90); --color-ui-contrast-100: var(--color-ui-contrast-90); - --color-ui-contrast-00: var(--color-gray-10); } } [data-color-mode="dark"] { - --color-ui-contrast-5: var(--color-gray-15); + --color-ui-contrast-00: var(--color-gray-10); + --color-ui-contrast-05: var(--color-gray-15); --color-ui-contrast-10: var(--color-gray-20); --color-ui-contrast-15: var(--color-gray-25); --color-ui-contrast-20: var(--color-gray-30); @@ -128,7 +129,6 @@ --color-ui-contrast-90: var(--color-gray-100); --color-ui-contrast-95: var(--color-ui-contrast-90); --color-ui-contrast-100: var(--color-ui-contrast-90); - --color-ui-contrast-00: var(--color-gray-10); } @supports (color: color(display-p3 1 1 1)) { diff --git a/packages/plugin-css/test/p3/want.css b/packages/plugin-css/test/p3/want.css index c354af8f..cd94b0a9 100644 --- a/packages/plugin-css/test/p3/want.css +++ b/packages/plugin-css/test/p3/want.css @@ -5,7 +5,7 @@ */ :root { - --color-blue: #218bff; --color-action: var(--color-blue); + --color-blue: #218bff; --gradient: #218bff 0%, #e85aad 100%; } diff --git a/packages/plugin-css/test/transition/want.css b/packages/plugin-css/test/transition/want.css index e1c7a64d..df4c3ab6 100644 --- a/packages/plugin-css/test/transition/want.css +++ b/packages/plugin-css/test/transition/want.css @@ -6,50 +6,50 @@ :root { --ds-ease-circ-in: cubic-bezier(0.55, 0, 1, 0.45); - --ds-ease-circ-out: cubic-bezier(0.33, 1, 0.68, 1); --ds-ease-circ-in-out: cubic-bezier(0.85, 0, 0.15, 1); + --ds-ease-circ-out: cubic-bezier(0.33, 1, 0.68, 1); --ds-ease-cubic-in: cubic-bezier(0.32, 0, 0.67, 0); --ds-ease-cubic-in-out: cubic-bezier(0.65, 0, 0.35, 1); --ds-ease-cubic-out: cubic-bezier(0.33, 1, 0.68, 1); --ds-ease-linear: cubic-bezier(0, 0, 1, 1); + --ds-timing-deliberate: 500ms; --ds-timing-instant: 50ms; - --ds-timing-quick: 100ms; --ds-timing-moderate: 250ms; - --ds-timing-deliberate: 500ms; + --ds-timing-quick: 100ms; --ds-timing-slow: 1s; + --ds-transition-circ-in-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-circ-in); --ds-transition-circ-in-instant: var(--ds-timing-instant) 0ms var(--ds-ease-circ-in); - --ds-transition-circ-in-quick: var(--ds-timing-quick) 0ms var(--ds-ease-circ-in); --ds-transition-circ-in-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-circ-in); - --ds-transition-circ-in-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-circ-in); - --ds-transition-circ-in-slow: var(--ds-timing-slow) 0ms var(--ds-ease-circ-in); + --ds-transition-circ-in-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-circ-in-out); --ds-transition-circ-in-out-instant: var(--ds-timing-instant) 0ms var(--ds-ease-circ-in-out); - --ds-transition-circ-in-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-circ-in-out); --ds-transition-circ-in-out-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-circ-in-out); - --ds-transition-circ-in-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-circ-in-out); + --ds-transition-circ-in-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-circ-in-out); --ds-transition-circ-in-out-slow: var(--ds-timing-slow) 0ms var(--ds-ease-circ-in-out); + --ds-transition-circ-in-quick: var(--ds-timing-quick) 0ms var(--ds-ease-circ-in); + --ds-transition-circ-in-slow: var(--ds-timing-slow) 0ms var(--ds-ease-circ-in); + --ds-transition-circ-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-circ-out); --ds-transition-circ-out-instant: var(--ds-timing-instant) 0ms var(--ds-ease-circ-out); - --ds-transition-circ-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-circ-out); --ds-transition-circ-out-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-circ-out); - --ds-transition-circ-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-circ-out); + --ds-transition-circ-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-circ-out); --ds-transition-circ-out-slow: var(--ds-timing-slow) 0ms var(--ds-ease-circ-out); + --ds-transition-cubic-in-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-cubic-in); --ds-transition-cubic-in-instant: var(--ds-timing-instant) 0ms var(--ds-ease-cubic-in); - --ds-transition-cubic-in-quick: var(--ds-timing-quick) 0ms var(--ds-ease-cubic-in); --ds-transition-cubic-in-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-cubic-in); - --ds-transition-cubic-in-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-cubic-in); - --ds-transition-cubic-in-slow: var(--ds-timing-slow) 0ms var(--ds-ease-cubic-in); + --ds-transition-cubic-in-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-cubic-in-out); --ds-transition-cubic-in-out-instant: var(--ds-timing-instant) 0ms var(--ds-ease-cubic-in-out); - --ds-transition-cubic-in-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-cubic-in-out); --ds-transition-cubic-in-out-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-cubic-in-out); - --ds-transition-cubic-in-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-cubic-in-out); + --ds-transition-cubic-in-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-cubic-in-out); --ds-transition-cubic-in-out-slow: var(--ds-timing-slow) 0ms var(--ds-ease-cubic-in-out); + --ds-transition-cubic-in-quick: var(--ds-timing-quick) 0ms var(--ds-ease-cubic-in); + --ds-transition-cubic-in-slow: var(--ds-timing-slow) 0ms var(--ds-ease-cubic-in); + --ds-transition-cubic-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-cubic-out); --ds-transition-cubic-out-instant: var(--ds-timing-instant) 0ms var(--ds-ease-cubic-out); - --ds-transition-cubic-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-cubic-out); --ds-transition-cubic-out-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-cubic-out); - --ds-transition-cubic-out-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-cubic-out); + --ds-transition-cubic-out-quick: var(--ds-timing-quick) 0ms var(--ds-ease-cubic-out); --ds-transition-cubic-out-slow: var(--ds-timing-slow) 0ms var(--ds-ease-cubic-out); + --ds-transition-linear-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-linear); --ds-transition-linear-instant: var(--ds-timing-instant) 0ms var(--ds-ease-linear); - --ds-transition-linear-quick: var(--ds-timing-quick) 0ms var(--ds-ease-linear); --ds-transition-linear-moderate: var(--ds-timing-moderate) 0ms var(--ds-ease-linear); - --ds-transition-linear-deliberate: var(--ds-timing-deliberate) 0ms var(--ds-ease-linear); + --ds-transition-linear-quick: var(--ds-timing-quick) 0ms var(--ds-ease-linear); --ds-transition-linear-slow: var(--ds-timing-slow) 0ms var(--ds-ease-linear); } diff --git a/packages/plugin-css/test/typography/want.css b/packages/plugin-css/test/typography/want.css index 11a64f7b..a55c18a2 100644 --- a/packages/plugin-css/test/typography/want.css +++ b/packages/plugin-css/test/typography/want.css @@ -5,27 +5,27 @@ */ :root { + --ds-typography-body-font-family: var(--ds-typography-family-body); + --ds-typography-body-font-size: 16px; + --ds-typography-body-font-weight: 400; + --ds-typography-body-line-height: 1.5; + --ds-typography-callout-font-family: var(--ds-typography-family-body); + --ds-typography-callout-font-size: 18px; + --ds-typography-callout-font-style: italic; + --ds-typography-callout-font-weight: 300; + --ds-typography-callout-line-height: 1.5; --ds-typography-family-body: "IBM Plex Sans", -system-ui, sans-serif; --ds-typography-family-footnote: var(--ds-typography-family-body); --ds-typography-family-heading: Helvetica; --ds-typography-page-title-font-family: var(--ds-typography-family-heading); --ds-typography-page-title-font-size: 48px; --ds-typography-page-title-font-weight: 600; - --ds-typography-page-title-line-height: 1.25; --ds-typography-page-title-letter-spacing: 0.125em; + --ds-typography-page-title-line-height: 1.25; --ds-typography-subheading-font-family: var(--ds-typography-family-heading); --ds-typography-subheading-font-size: 18px; --ds-typography-subheading-font-weight: 500; - --ds-typography-subheading-line-height: 1.375; --ds-typography-subheading-letter-spacing: 0.25em; + --ds-typography-subheading-line-height: 1.375; --ds-typography-subheading-text-transform: uppercase; - --ds-typography-callout-font-family: var(--ds-typography-family-body); - --ds-typography-callout-font-size: 18px; - --ds-typography-callout-font-weight: 300; - --ds-typography-callout-font-style: italic; - --ds-typography-callout-line-height: 1.5; - --ds-typography-body-font-family: var(--ds-typography-family-body); - --ds-typography-body-font-size: 16px; - --ds-typography-body-font-weight: 400; - --ds-typography-body-line-height: 1.5; } diff --git a/packages/plugin-js/test/color/tokens.json b/packages/plugin-js/test/color/tokens.json index 673d31e0..39b604f1 100644 --- a/packages/plugin-js/test/color/tokens.json +++ b/packages/plugin-js/test/color/tokens.json @@ -22,23 +22,23 @@ "white": {"$value": "#ffffff"} }, "ui": { - "fg": { + "bg": { "$type": "color", - "$value": "{color.black}", + "$value": "{color.white}", "$extensions": { "mode": { - "light": "{color.black}", - "dark": "{color.white}" + "light": "{color.white}", + "dark": "{color.black}" } } }, - "bg": { + "fg": { "$type": "color", - "$value": "{color.white}", + "$value": "{color.black}", "$extensions": { "mode": { - "light": "{color.white}", - "dark": "{color.black}" + "light": "{color.black}", + "dark": "{color.white}" } } } diff --git a/packages/plugin-js/test/color/want.d.ts b/packages/plugin-js/test/color/want.d.ts index 7f9c6d8e..63805fd1 100644 --- a/packages/plugin-js/test/color/want.d.ts +++ b/packages/plugin-js/test/color/want.d.ts @@ -11,6 +11,7 @@ import { export declare const tokens: { 'color.black': ColorToken['$value']; + 'color.blue.00': ColorToken['$value']; 'color.blue.10': ColorToken['$value']; 'color.blue.20': ColorToken['$value']; 'color.blue.30': ColorToken['$value']; @@ -21,14 +22,14 @@ export declare const tokens: { 'color.blue.80': ColorToken['$value']; 'color.blue.90': ColorToken['$value']; 'color.blue.100': ColorToken['$value']; - 'color.blue.00': ColorToken['$value']; 'color.white': ColorToken['$value']; - 'ui.fg': ColorToken['$value']; 'ui.bg': ColorToken['$value']; + 'ui.fg': ColorToken['$value']; }; export declare const meta: { 'color.black': ParsedColorToken; + 'color.blue.00': ParsedColorToken; 'color.blue.10': ParsedColorToken; 'color.blue.20': ParsedColorToken; 'color.blue.30': ParsedColorToken; @@ -39,18 +40,17 @@ export declare const meta: { 'color.blue.80': ParsedColorToken; 'color.blue.90': ParsedColorToken; 'color.blue.100': ParsedColorToken; - 'color.blue.00': ParsedColorToken; 'color.white': ParsedColorToken; - 'ui.fg': ParsedColorToken & { $extensions: { mode: typeof modes['ui.fg'] } }; 'ui.bg': ParsedColorToken & { $extensions: { mode: typeof modes['ui.bg'] } }; + 'ui.fg': ParsedColorToken & { $extensions: { mode: typeof modes['ui.fg'] } }; }; export declare const modes: { - 'ui.fg': { + 'ui.bg': { light: ColorToken['$value']; dark: ColorToken['$value']; }; - 'ui.bg': { + 'ui.fg': { light: ColorToken['$value']; dark: ColorToken['$value']; }; diff --git a/packages/plugin-js/test/color/want.js b/packages/plugin-js/test/color/want.js index 71e411a0..8ce73f7a 100644 --- a/packages/plugin-js/test/color/want.js +++ b/packages/plugin-js/test/color/want.js @@ -6,6 +6,7 @@ export const tokens = { 'color.black': '#00193f', + 'color.blue.00': '#00193f', 'color.blue.10': '#062053', 'color.blue.20': '#0f2868', 'color.blue.30': '#192f7d', @@ -17,10 +18,9 @@ export const tokens = { 'color.blue.80': '#5ca9d7', 'color.blue.90': '#72cce5', 'color.blue.100': '#89eff1', - 'color.blue.00': '#00193f', 'color.white': '#ffffff', - 'ui.fg': '#00193f', 'ui.bg': '#ffffff', + 'ui.fg': '#00193f', }; export const meta = { @@ -40,6 +40,22 @@ export const meta = { $type: 'color', $value: '#00193f', }, + 'color.blue.00': { + _original: { + $value: '{color.black}', + }, + _group: { + id: 'color.blue', + $extensions: { + requiredModes: [], + }, + $type: 'color', + $description: 'Brand blue', + }, + id: 'color.blue.00', + $type: 'color', + $value: '#00193f', + }, 'color.blue.10': { _original: { $value: '#062053', @@ -202,22 +218,6 @@ export const meta = { $type: 'color', $value: '#89eff1', }, - 'color.blue.00': { - _original: { - $value: '{color.black}', - }, - _group: { - id: 'color.blue', - $extensions: { - requiredModes: [], - }, - $type: 'color', - $description: 'Brand blue', - }, - id: 'color.blue.00', - $type: 'color', - $value: '#00193f', - }, 'color.white': { _original: { $value: '#ffffff', @@ -234,14 +234,14 @@ export const meta = { $type: 'color', $value: '#ffffff', }, - 'ui.fg': { + 'ui.bg': { _original: { $type: 'color', - $value: '{color.black}', + $value: '{color.white}', $extensions: { mode: { - light: '{color.black}', - dark: '{color.white}', + light: '{color.white}', + dark: '{color.black}', }, }, }, @@ -251,24 +251,24 @@ export const meta = { requiredModes: [], }, }, - id: 'ui.fg', + id: 'ui.bg', $type: 'color', - $value: '#00193f', + $value: '#ffffff', $extensions: { mode: { - light: '#00193f', - dark: '#ffffff', + light: '#ffffff', + dark: '#00193f', }, }, }, - 'ui.bg': { + 'ui.fg': { _original: { $type: 'color', - $value: '{color.white}', + $value: '{color.black}', $extensions: { mode: { - light: '{color.white}', - dark: '{color.black}', + light: '{color.black}', + dark: '{color.white}', }, }, }, @@ -278,27 +278,27 @@ export const meta = { requiredModes: [], }, }, - id: 'ui.bg', + id: 'ui.fg', $type: 'color', - $value: '#ffffff', + $value: '#00193f', $extensions: { mode: { - light: '#ffffff', - dark: '#00193f', + light: '#00193f', + dark: '#ffffff', }, }, }, }; export const modes = { - 'ui.fg': { - light: '#00193f', - dark: '#ffffff', - }, 'ui.bg': { light: '#ffffff', dark: '#00193f', }, + 'ui.fg': { + light: '#00193f', + dark: '#ffffff', + }, }; /** Get individual token */ diff --git a/packages/plugin-js/test/color/want.json b/packages/plugin-js/test/color/want.json index 8a2f0c91..4a91e7a3 100644 --- a/packages/plugin-js/test/color/want.json +++ b/packages/plugin-js/test/color/want.json @@ -1,6 +1,7 @@ { "tokens": { "color.black": "#00193f", + "color.blue.00": "#00193f", "color.blue.10": "#062053", "color.blue.20": "#0f2868", "color.blue.30": "#192f7d", @@ -11,10 +12,9 @@ "color.blue.80": "#5ca9d7", "color.blue.90": "#72cce5", "color.blue.100": "#89eff1", - "color.blue.00": "#00193f", "color.white": "#ffffff", - "ui.fg": "#00193f", - "ui.bg": "#ffffff" + "ui.bg": "#ffffff", + "ui.fg": "#00193f" }, "meta": { "color.black": { @@ -33,6 +33,22 @@ "$type": "color", "$value": "#00193f" }, + "color.blue.00": { + "_original": { + "$value": "{color.black}" + }, + "_group": { + "id": "color.blue", + "$extensions": { + "requiredModes": [] + }, + "$type": "color", + "$description": "Brand blue" + }, + "id": "color.blue.00", + "$type": "color", + "$value": "#00193f" + }, "color.blue.10": { "_original": { "$value": "#062053" @@ -195,22 +211,6 @@ "$type": "color", "$value": "#89eff1" }, - "color.blue.00": { - "_original": { - "$value": "{color.black}" - }, - "_group": { - "id": "color.blue", - "$extensions": { - "requiredModes": [] - }, - "$type": "color", - "$description": "Brand blue" - }, - "id": "color.blue.00", - "$type": "color", - "$value": "#00193f" - }, "color.white": { "_original": { "$value": "#ffffff" @@ -227,14 +227,14 @@ "$type": "color", "$value": "#ffffff" }, - "ui.fg": { + "ui.bg": { "_original": { "$type": "color", - "$value": "{color.black}", + "$value": "{color.white}", "$extensions": { "mode": { - "light": "{color.black}", - "dark": "{color.white}" + "light": "{color.white}", + "dark": "{color.black}" } } }, @@ -244,24 +244,24 @@ "requiredModes": [] } }, - "id": "ui.fg", + "id": "ui.bg", "$type": "color", - "$value": "#00193f", + "$value": "#ffffff", "$extensions": { "mode": { - "light": "#00193f", - "dark": "#ffffff" + "light": "#ffffff", + "dark": "#00193f" } } }, - "ui.bg": { + "ui.fg": { "_original": { "$type": "color", - "$value": "{color.white}", + "$value": "{color.black}", "$extensions": { "mode": { - "light": "{color.white}", - "dark": "{color.black}" + "light": "{color.black}", + "dark": "{color.white}" } } }, @@ -271,25 +271,25 @@ "requiredModes": [] } }, - "id": "ui.bg", + "id": "ui.fg", "$type": "color", - "$value": "#ffffff", + "$value": "#00193f", "$extensions": { "mode": { - "light": "#ffffff", - "dark": "#00193f" + "light": "#00193f", + "dark": "#ffffff" } } } }, "modes": { - "ui.fg": { - "light": "#00193f", - "dark": "#ffffff" - }, "ui.bg": { "light": "#ffffff", "dark": "#00193f" + }, + "ui.fg": { + "light": "#00193f", + "dark": "#ffffff" } } } diff --git a/packages/plugin-js/test/nested/tokens.json b/packages/plugin-js/test/nested/tokens.json index 673d31e0..39b604f1 100644 --- a/packages/plugin-js/test/nested/tokens.json +++ b/packages/plugin-js/test/nested/tokens.json @@ -22,23 +22,23 @@ "white": {"$value": "#ffffff"} }, "ui": { - "fg": { + "bg": { "$type": "color", - "$value": "{color.black}", + "$value": "{color.white}", "$extensions": { "mode": { - "light": "{color.black}", - "dark": "{color.white}" + "light": "{color.white}", + "dark": "{color.black}" } } }, - "bg": { + "fg": { "$type": "color", - "$value": "{color.white}", + "$value": "{color.black}", "$extensions": { "mode": { - "light": "{color.white}", - "dark": "{color.black}" + "light": "{color.black}", + "dark": "{color.white}" } } } diff --git a/packages/plugin-js/test/nested/want.d.ts b/packages/plugin-js/test/nested/want.d.ts index 2abff32a..eb1282b0 100644 --- a/packages/plugin-js/test/nested/want.d.ts +++ b/packages/plugin-js/test/nested/want.d.ts @@ -28,8 +28,8 @@ export declare const tokens: { white: ColorToken['$value']; }; ui: { - fg: ColorToken['$value']; bg: ColorToken['$value']; + fg: ColorToken['$value']; }; }; @@ -52,18 +52,18 @@ export declare const meta: { white: ParsedColorToken; }; ui: { - fg: ParsedColorToken & { $extensions: { mode: typeof modes['ui']['fg'] } }; bg: ParsedColorToken & { $extensions: { mode: typeof modes['ui']['bg'] } }; + fg: ParsedColorToken & { $extensions: { mode: typeof modes['ui']['fg'] } }; }; }; export declare const modes: { ui: { - fg: { + bg: { light: ColorToken['$value']; dark: ColorToken['$value']; }; - bg: { + fg: { light: ColorToken['$value']; dark: ColorToken['$value']; }; diff --git a/packages/plugin-js/test/nested/want.js b/packages/plugin-js/test/nested/want.js index fc114623..7a4803c2 100644 --- a/packages/plugin-js/test/nested/want.js +++ b/packages/plugin-js/test/nested/want.js @@ -24,8 +24,8 @@ export const tokens = { white: '#ffffff', }, ui: { - fg: '#00193f', bg: '#ffffff', + fg: '#00193f', }, }; @@ -245,14 +245,14 @@ export const meta = { }, }, ui: { - fg: { + bg: { _original: { $type: 'color', - $value: '{color.black}', + $value: '{color.white}', $extensions: { mode: { - light: '{color.black}', - dark: '{color.white}', + light: '{color.white}', + dark: '{color.black}', }, }, }, @@ -262,24 +262,24 @@ export const meta = { requiredModes: [], }, }, - id: 'ui.fg', + id: 'ui.bg', $type: 'color', - $value: '#00193f', + $value: '#ffffff', $extensions: { mode: { - light: '#00193f', - dark: '#ffffff', + light: '#ffffff', + dark: '#00193f', }, }, }, - bg: { + fg: { _original: { $type: 'color', - $value: '{color.white}', + $value: '{color.black}', $extensions: { mode: { - light: '{color.white}', - dark: '{color.black}', + light: '{color.black}', + dark: '{color.white}', }, }, }, @@ -289,13 +289,13 @@ export const meta = { requiredModes: [], }, }, - id: 'ui.bg', + id: 'ui.fg', $type: 'color', - $value: '#ffffff', + $value: '#00193f', $extensions: { mode: { - light: '#ffffff', - dark: '#00193f', + light: '#00193f', + dark: '#ffffff', }, }, }, @@ -304,14 +304,14 @@ export const meta = { export const modes = { ui: { - fg: { - light: '#00193f', - dark: '#ffffff', - }, bg: { light: '#ffffff', dark: '#00193f', }, + fg: { + light: '#00193f', + dark: '#ffffff', + }, }, }; diff --git a/packages/plugin-js/test/nested/want.json b/packages/plugin-js/test/nested/want.json index a982ad36..a4d11803 100644 --- a/packages/plugin-js/test/nested/want.json +++ b/packages/plugin-js/test/nested/want.json @@ -18,8 +18,8 @@ "white": "#ffffff" }, "ui": { - "fg": "#00193f", - "bg": "#ffffff" + "bg": "#ffffff", + "fg": "#00193f" } }, "meta": { @@ -238,14 +238,14 @@ } }, "ui": { - "fg": { + "bg": { "_original": { "$type": "color", - "$value": "{color.black}", + "$value": "{color.white}", "$extensions": { "mode": { - "light": "{color.black}", - "dark": "{color.white}" + "light": "{color.white}", + "dark": "{color.black}" } } }, @@ -255,24 +255,24 @@ "requiredModes": [] } }, - "id": "ui.fg", + "id": "ui.bg", "$type": "color", - "$value": "#00193f", + "$value": "#ffffff", "$extensions": { "mode": { - "light": "#00193f", - "dark": "#ffffff" + "light": "#ffffff", + "dark": "#00193f" } } }, - "bg": { + "fg": { "_original": { "$type": "color", - "$value": "{color.white}", + "$value": "{color.black}", "$extensions": { "mode": { - "light": "{color.white}", - "dark": "{color.black}" + "light": "{color.black}", + "dark": "{color.white}" } } }, @@ -282,13 +282,13 @@ "requiredModes": [] } }, - "id": "ui.bg", + "id": "ui.fg", "$type": "color", - "$value": "#ffffff", + "$value": "#00193f", "$extensions": { "mode": { - "light": "#ffffff", - "dark": "#00193f" + "light": "#00193f", + "dark": "#ffffff" } } } @@ -296,13 +296,13 @@ }, "modes": { "ui": { - "fg": { - "light": "#00193f", - "dark": "#ffffff" - }, "bg": { "light": "#ffffff", "dark": "#00193f" + }, + "fg": { + "light": "#00193f", + "dark": "#ffffff" } } } diff --git a/packages/plugin-js/test/transition/want.d.ts b/packages/plugin-js/test/transition/want.d.ts index 1a6c011f..25003eea 100644 --- a/packages/plugin-js/test/transition/want.d.ts +++ b/packages/plugin-js/test/transition/want.d.ts @@ -15,101 +15,101 @@ import { export declare const tokens: { 'ease.circ-in': CubicBezierToken['$value']; - 'ease.circ-out': CubicBezierToken['$value']; 'ease.circ-in-out': CubicBezierToken['$value']; + 'ease.circ-out': CubicBezierToken['$value']; 'ease.cubic-in': CubicBezierToken['$value']; 'ease.cubic-in-out': CubicBezierToken['$value']; 'ease.cubic-out': CubicBezierToken['$value']; 'ease.linear': CubicBezierToken['$value']; + 'timing.deliberate': DurationToken['$value']; 'timing.instant': DurationToken['$value']; - 'timing.quick': DurationToken['$value']; 'timing.moderate': DurationToken['$value']; - 'timing.deliberate': DurationToken['$value']; + 'timing.quick': DurationToken['$value']; 'timing.slow': DurationToken['$value']; + 'transition.circ-in-deliberate': TransitionToken['$value']; 'transition.circ-in-instant': TransitionToken['$value']; - 'transition.circ-in-quick': TransitionToken['$value']; 'transition.circ-in-moderate': TransitionToken['$value']; - 'transition.circ-in-deliberate': TransitionToken['$value']; - 'transition.circ-in-slow': TransitionToken['$value']; + 'transition.circ-in-out-deliberate': TransitionToken['$value']; 'transition.circ-in-out-instant': TransitionToken['$value']; - 'transition.circ-in-out-quick': TransitionToken['$value']; 'transition.circ-in-out-moderate': TransitionToken['$value']; - 'transition.circ-in-out-deliberate': TransitionToken['$value']; + 'transition.circ-in-out-quick': TransitionToken['$value']; 'transition.circ-in-out-slow': TransitionToken['$value']; + 'transition.circ-in-quick': TransitionToken['$value']; + 'transition.circ-in-slow': TransitionToken['$value']; + 'transition.circ-out-deliberate': TransitionToken['$value']; 'transition.circ-out-instant': TransitionToken['$value']; - 'transition.circ-out-quick': TransitionToken['$value']; 'transition.circ-out-moderate': TransitionToken['$value']; - 'transition.circ-out-deliberate': TransitionToken['$value']; + 'transition.circ-out-quick': TransitionToken['$value']; 'transition.circ-out-slow': TransitionToken['$value']; + 'transition.cubic-in-deliberate': TransitionToken['$value']; 'transition.cubic-in-instant': TransitionToken['$value']; - 'transition.cubic-in-quick': TransitionToken['$value']; 'transition.cubic-in-moderate': TransitionToken['$value']; - 'transition.cubic-in-deliberate': TransitionToken['$value']; - 'transition.cubic-in-slow': TransitionToken['$value']; + 'transition.cubic-in-out-deliberate': TransitionToken['$value']; 'transition.cubic-in-out-instant': TransitionToken['$value']; - 'transition.cubic-in-out-quick': TransitionToken['$value']; 'transition.cubic-in-out-moderate': TransitionToken['$value']; - 'transition.cubic-in-out-deliberate': TransitionToken['$value']; + 'transition.cubic-in-out-quick': TransitionToken['$value']; 'transition.cubic-in-out-slow': TransitionToken['$value']; + 'transition.cubic-in-quick': TransitionToken['$value']; + 'transition.cubic-in-slow': TransitionToken['$value']; + 'transition.cubic-out-deliberate': TransitionToken['$value']; 'transition.cubic-out-instant': TransitionToken['$value']; - 'transition.cubic-out-quick': TransitionToken['$value']; 'transition.cubic-out-moderate': TransitionToken['$value']; - 'transition.cubic-out-deliberate': TransitionToken['$value']; + 'transition.cubic-out-quick': TransitionToken['$value']; 'transition.cubic-out-slow': TransitionToken['$value']; + 'transition.linear-deliberate': TransitionToken['$value']; 'transition.linear-instant': TransitionToken['$value']; - 'transition.linear-quick': TransitionToken['$value']; 'transition.linear-moderate': TransitionToken['$value']; - 'transition.linear-deliberate': TransitionToken['$value']; + 'transition.linear-quick': TransitionToken['$value']; 'transition.linear-slow': TransitionToken['$value']; }; export declare const meta: { 'ease.circ-in': ParsedCubicBezierToken; - 'ease.circ-out': ParsedCubicBezierToken; 'ease.circ-in-out': ParsedCubicBezierToken; + 'ease.circ-out': ParsedCubicBezierToken; 'ease.cubic-in': ParsedCubicBezierToken; 'ease.cubic-in-out': ParsedCubicBezierToken; 'ease.cubic-out': ParsedCubicBezierToken; 'ease.linear': ParsedCubicBezierToken; + 'timing.deliberate': ParsedDurationToken; 'timing.instant': ParsedDurationToken; - 'timing.quick': ParsedDurationToken; 'timing.moderate': ParsedDurationToken; - 'timing.deliberate': ParsedDurationToken; + 'timing.quick': ParsedDurationToken; 'timing.slow': ParsedDurationToken; + 'transition.circ-in-deliberate': ParsedTransitionToken; 'transition.circ-in-instant': ParsedTransitionToken; - 'transition.circ-in-quick': ParsedTransitionToken; 'transition.circ-in-moderate': ParsedTransitionToken; - 'transition.circ-in-deliberate': ParsedTransitionToken; - 'transition.circ-in-slow': ParsedTransitionToken; + 'transition.circ-in-out-deliberate': ParsedTransitionToken; 'transition.circ-in-out-instant': ParsedTransitionToken; - 'transition.circ-in-out-quick': ParsedTransitionToken; 'transition.circ-in-out-moderate': ParsedTransitionToken; - 'transition.circ-in-out-deliberate': ParsedTransitionToken; + 'transition.circ-in-out-quick': ParsedTransitionToken; 'transition.circ-in-out-slow': ParsedTransitionToken; + 'transition.circ-in-quick': ParsedTransitionToken; + 'transition.circ-in-slow': ParsedTransitionToken; + 'transition.circ-out-deliberate': ParsedTransitionToken; 'transition.circ-out-instant': ParsedTransitionToken; - 'transition.circ-out-quick': ParsedTransitionToken; 'transition.circ-out-moderate': ParsedTransitionToken; - 'transition.circ-out-deliberate': ParsedTransitionToken; + 'transition.circ-out-quick': ParsedTransitionToken; 'transition.circ-out-slow': ParsedTransitionToken; + 'transition.cubic-in-deliberate': ParsedTransitionToken; 'transition.cubic-in-instant': ParsedTransitionToken; - 'transition.cubic-in-quick': ParsedTransitionToken; 'transition.cubic-in-moderate': ParsedTransitionToken; - 'transition.cubic-in-deliberate': ParsedTransitionToken; - 'transition.cubic-in-slow': ParsedTransitionToken; + 'transition.cubic-in-out-deliberate': ParsedTransitionToken; 'transition.cubic-in-out-instant': ParsedTransitionToken; - 'transition.cubic-in-out-quick': ParsedTransitionToken; 'transition.cubic-in-out-moderate': ParsedTransitionToken; - 'transition.cubic-in-out-deliberate': ParsedTransitionToken; + 'transition.cubic-in-out-quick': ParsedTransitionToken; 'transition.cubic-in-out-slow': ParsedTransitionToken; + 'transition.cubic-in-quick': ParsedTransitionToken; + 'transition.cubic-in-slow': ParsedTransitionToken; + 'transition.cubic-out-deliberate': ParsedTransitionToken; 'transition.cubic-out-instant': ParsedTransitionToken; - 'transition.cubic-out-quick': ParsedTransitionToken; 'transition.cubic-out-moderate': ParsedTransitionToken; - 'transition.cubic-out-deliberate': ParsedTransitionToken; + 'transition.cubic-out-quick': ParsedTransitionToken; 'transition.cubic-out-slow': ParsedTransitionToken; + 'transition.linear-deliberate': ParsedTransitionToken; 'transition.linear-instant': ParsedTransitionToken; - 'transition.linear-quick': ParsedTransitionToken; 'transition.linear-moderate': ParsedTransitionToken; - 'transition.linear-deliberate': ParsedTransitionToken; + 'transition.linear-quick': ParsedTransitionToken; 'transition.linear-slow': ParsedTransitionToken; }; diff --git a/packages/plugin-js/test/transition/want.js b/packages/plugin-js/test/transition/want.js index 2f06be54..f178a0b3 100644 --- a/packages/plugin-js/test/transition/want.js +++ b/packages/plugin-js/test/transition/want.js @@ -6,24 +6,24 @@ export const tokens = { 'ease.circ-in': [0.55, 0, 1, 0.45], - 'ease.circ-out': [0.33, 1, 0.68, 1], 'ease.circ-in-out': [0.85, 0, 0.15, 1], + 'ease.circ-out': [0.33, 1, 0.68, 1], 'ease.cubic-in': [0.32, 0, 0.67, 0], 'ease.cubic-in-out': [0.65, 0, 0.35, 1], 'ease.cubic-out': [0.33, 1, 0.68, 1], 'ease.linear': [0, 0, 1, 1], + 'timing.deliberate': '500ms', 'timing.instant': '50ms', - 'timing.quick': '100ms', 'timing.moderate': '250ms', - 'timing.deliberate': '500ms', + 'timing.quick': '100ms', 'timing.slow': '1s', - 'transition.circ-in-instant': { - duration: '50ms', + 'transition.circ-in-deliberate': { + duration: '500ms', delay: '0ms', timingFunction: [0.55, 0, 1, 0.45], }, - 'transition.circ-in-quick': { - duration: '100ms', + 'transition.circ-in-instant': { + duration: '50ms', delay: '0ms', timingFunction: [0.55, 0, 1, 0.45], }, @@ -32,33 +32,23 @@ export const tokens = { delay: '0ms', timingFunction: [0.55, 0, 1, 0.45], }, - 'transition.circ-in-deliberate': { + 'transition.circ-in-out-deliberate': { duration: '500ms', delay: '0ms', - timingFunction: [0.55, 0, 1, 0.45], - }, - 'transition.circ-in-slow': { - duration: '1s', - delay: '0ms', - timingFunction: [0.55, 0, 1, 0.45], + timingFunction: [0.85, 0, 0.15, 1], }, 'transition.circ-in-out-instant': { duration: '50ms', delay: '0ms', timingFunction: [0.85, 0, 0.15, 1], }, - 'transition.circ-in-out-quick': { - duration: '100ms', - delay: '0ms', - timingFunction: [0.85, 0, 0.15, 1], - }, 'transition.circ-in-out-moderate': { duration: '250ms', delay: '0ms', timingFunction: [0.85, 0, 0.15, 1], }, - 'transition.circ-in-out-deliberate': { - duration: '500ms', + 'transition.circ-in-out-quick': { + duration: '100ms', delay: '0ms', timingFunction: [0.85, 0, 0.15, 1], }, @@ -67,13 +57,23 @@ export const tokens = { delay: '0ms', timingFunction: [0.85, 0, 0.15, 1], }, - 'transition.circ-out-instant': { - duration: '50ms', + 'transition.circ-in-quick': { + duration: '100ms', + delay: '0ms', + timingFunction: [0.55, 0, 1, 0.45], + }, + 'transition.circ-in-slow': { + duration: '1s', + delay: '0ms', + timingFunction: [0.55, 0, 1, 0.45], + }, + 'transition.circ-out-deliberate': { + duration: '500ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, - 'transition.circ-out-quick': { - duration: '100ms', + 'transition.circ-out-instant': { + duration: '50ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -82,8 +82,8 @@ export const tokens = { delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, - 'transition.circ-out-deliberate': { - duration: '500ms', + 'transition.circ-out-quick': { + duration: '100ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -92,13 +92,13 @@ export const tokens = { delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, - 'transition.cubic-in-instant': { - duration: '50ms', + 'transition.cubic-in-deliberate': { + duration: '500ms', delay: '0ms', timingFunction: [0.32, 0, 0.67, 0], }, - 'transition.cubic-in-quick': { - duration: '100ms', + 'transition.cubic-in-instant': { + duration: '50ms', delay: '0ms', timingFunction: [0.32, 0, 0.67, 0], }, @@ -107,33 +107,23 @@ export const tokens = { delay: '0ms', timingFunction: [0.32, 0, 0.67, 0], }, - 'transition.cubic-in-deliberate': { + 'transition.cubic-in-out-deliberate': { duration: '500ms', delay: '0ms', - timingFunction: [0.32, 0, 0.67, 0], - }, - 'transition.cubic-in-slow': { - duration: '1s', - delay: '0ms', - timingFunction: [0.32, 0, 0.67, 0], + timingFunction: [0.65, 0, 0.35, 1], }, 'transition.cubic-in-out-instant': { duration: '50ms', delay: '0ms', timingFunction: [0.65, 0, 0.35, 1], }, - 'transition.cubic-in-out-quick': { - duration: '100ms', - delay: '0ms', - timingFunction: [0.65, 0, 0.35, 1], - }, 'transition.cubic-in-out-moderate': { duration: '250ms', delay: '0ms', timingFunction: [0.65, 0, 0.35, 1], }, - 'transition.cubic-in-out-deliberate': { - duration: '500ms', + 'transition.cubic-in-out-quick': { + duration: '100ms', delay: '0ms', timingFunction: [0.65, 0, 0.35, 1], }, @@ -142,13 +132,23 @@ export const tokens = { delay: '0ms', timingFunction: [0.65, 0, 0.35, 1], }, - 'transition.cubic-out-instant': { - duration: '50ms', + 'transition.cubic-in-quick': { + duration: '100ms', + delay: '0ms', + timingFunction: [0.32, 0, 0.67, 0], + }, + 'transition.cubic-in-slow': { + duration: '1s', + delay: '0ms', + timingFunction: [0.32, 0, 0.67, 0], + }, + 'transition.cubic-out-deliberate': { + duration: '500ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, - 'transition.cubic-out-quick': { - duration: '100ms', + 'transition.cubic-out-instant': { + duration: '50ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -157,8 +157,8 @@ export const tokens = { delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, - 'transition.cubic-out-deliberate': { - duration: '500ms', + 'transition.cubic-out-quick': { + duration: '100ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -167,13 +167,13 @@ export const tokens = { delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, - 'transition.linear-instant': { - duration: '50ms', + 'transition.linear-deliberate': { + duration: '500ms', delay: '0ms', timingFunction: [0, 0, 1, 1], }, - 'transition.linear-quick': { - duration: '100ms', + 'transition.linear-instant': { + duration: '50ms', delay: '0ms', timingFunction: [0, 0, 1, 1], }, @@ -182,8 +182,8 @@ export const tokens = { delay: '0ms', timingFunction: [0, 0, 1, 1], }, - 'transition.linear-deliberate': { - duration: '500ms', + 'transition.linear-quick': { + duration: '100ms', delay: '0ms', timingFunction: [0, 0, 1, 1], }, @@ -211,9 +211,9 @@ export const meta = { $type: 'cubicBezier', $value: [0.55, 0, 1, 0.45], }, - 'ease.circ-out': { + 'ease.circ-in-out': { _original: { - $value: [0.33, 1, 0.68, 1], + $value: [0.85, 0, 0.15, 1], }, _group: { id: 'ease', @@ -223,13 +223,13 @@ export const meta = { $description: 'Easing curves', $type: 'cubicBezier', }, - id: 'ease.circ-out', + id: 'ease.circ-in-out', $type: 'cubicBezier', - $value: [0.33, 1, 0.68, 1], + $value: [0.85, 0, 0.15, 1], }, - 'ease.circ-in-out': { + 'ease.circ-out': { _original: { - $value: [0.85, 0, 0.15, 1], + $value: [0.33, 1, 0.68, 1], }, _group: { id: 'ease', @@ -239,9 +239,9 @@ export const meta = { $description: 'Easing curves', $type: 'cubicBezier', }, - id: 'ease.circ-in-out', + id: 'ease.circ-out', $type: 'cubicBezier', - $value: [0.85, 0, 0.15, 1], + $value: [0.33, 1, 0.68, 1], }, 'ease.cubic-in': { _original: { @@ -307,9 +307,9 @@ export const meta = { $type: 'cubicBezier', $value: [0, 0, 1, 1], }, - 'timing.instant': { + 'timing.deliberate': { _original: { - $value: '50ms', + $value: '500ms', }, _group: { id: 'timing', @@ -319,13 +319,13 @@ export const meta = { $description: 'Standardized beats', $type: 'duration', }, - id: 'timing.instant', + id: 'timing.deliberate', $type: 'duration', - $value: '50ms', + $value: '500ms', }, - 'timing.quick': { + 'timing.instant': { _original: { - $value: '100ms', + $value: '50ms', }, _group: { id: 'timing', @@ -335,9 +335,9 @@ export const meta = { $description: 'Standardized beats', $type: 'duration', }, - id: 'timing.quick', + id: 'timing.instant', $type: 'duration', - $value: '100ms', + $value: '50ms', }, 'timing.moderate': { _original: { @@ -355,9 +355,9 @@ export const meta = { $type: 'duration', $value: '250ms', }, - 'timing.deliberate': { + 'timing.quick': { _original: { - $value: '500ms', + $value: '100ms', }, _group: { id: 'timing', @@ -367,9 +367,9 @@ export const meta = { $description: 'Standardized beats', $type: 'duration', }, - id: 'timing.deliberate', + id: 'timing.quick', $type: 'duration', - $value: '500ms', + $value: '100ms', }, 'timing.slow': { _original: { @@ -387,10 +387,10 @@ export const meta = { $type: 'duration', $value: '1s', }, - 'transition.circ-in-instant': { + 'transition.circ-in-deliberate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.deliberate}', timingFunction: '{ease.circ-in}', }, }, @@ -402,18 +402,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-instant', + id: 'transition.circ-in-deliberate', $type: 'transition', $value: { - duration: '50ms', + duration: '500ms', delay: '0ms', timingFunction: [0.55, 0, 1, 0.45], }, }, - 'transition.circ-in-quick': { + 'transition.circ-in-instant': { _original: { $value: { - duration: '{timing.quick}', + duration: '{timing.instant}', timingFunction: '{ease.circ-in}', }, }, @@ -425,10 +425,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-quick', + id: 'transition.circ-in-instant', $type: 'transition', $value: { - duration: '100ms', + duration: '50ms', delay: '0ms', timingFunction: [0.55, 0, 1, 0.45], }, @@ -456,11 +456,11 @@ export const meta = { timingFunction: [0.55, 0, 1, 0.45], }, }, - 'transition.circ-in-deliberate': { + 'transition.circ-in-out-deliberate': { _original: { $value: { duration: '{timing.deliberate}', - timingFunction: '{ease.circ-in}', + timingFunction: '{ease.circ-in-out}', }, }, _group: { @@ -471,19 +471,19 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-deliberate', + id: 'transition.circ-in-out-deliberate', $type: 'transition', $value: { duration: '500ms', delay: '0ms', - timingFunction: [0.55, 0, 1, 0.45], + timingFunction: [0.85, 0, 0.15, 1], }, }, - 'transition.circ-in-slow': { + 'transition.circ-in-out-instant': { _original: { $value: { - duration: '{timing.slow}', - timingFunction: '{ease.circ-in}', + duration: '{timing.instant}', + timingFunction: '{ease.circ-in-out}', }, }, _group: { @@ -494,18 +494,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-slow', + id: 'transition.circ-in-out-instant', $type: 'transition', $value: { - duration: '1s', + duration: '50ms', delay: '0ms', - timingFunction: [0.55, 0, 1, 0.45], + timingFunction: [0.85, 0, 0.15, 1], }, }, - 'transition.circ-in-out-instant': { + 'transition.circ-in-out-moderate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.moderate}', timingFunction: '{ease.circ-in-out}', }, }, @@ -517,10 +517,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-out-instant', + id: 'transition.circ-in-out-moderate', $type: 'transition', $value: { - duration: '50ms', + duration: '250ms', delay: '0ms', timingFunction: [0.85, 0, 0.15, 1], }, @@ -548,10 +548,10 @@ export const meta = { timingFunction: [0.85, 0, 0.15, 1], }, }, - 'transition.circ-in-out-moderate': { + 'transition.circ-in-out-slow': { _original: { $value: { - duration: '{timing.moderate}', + duration: '{timing.slow}', timingFunction: '{ease.circ-in-out}', }, }, @@ -563,19 +563,19 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-out-moderate', + id: 'transition.circ-in-out-slow', $type: 'transition', $value: { - duration: '250ms', + duration: '1s', delay: '0ms', timingFunction: [0.85, 0, 0.15, 1], }, }, - 'transition.circ-in-out-deliberate': { + 'transition.circ-in-quick': { _original: { $value: { - duration: '{timing.deliberate}', - timingFunction: '{ease.circ-in-out}', + duration: '{timing.quick}', + timingFunction: '{ease.circ-in}', }, }, _group: { @@ -586,19 +586,19 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-out-deliberate', + id: 'transition.circ-in-quick', $type: 'transition', $value: { - duration: '500ms', + duration: '100ms', delay: '0ms', - timingFunction: [0.85, 0, 0.15, 1], + timingFunction: [0.55, 0, 1, 0.45], }, }, - 'transition.circ-in-out-slow': { + 'transition.circ-in-slow': { _original: { $value: { duration: '{timing.slow}', - timingFunction: '{ease.circ-in-out}', + timingFunction: '{ease.circ-in}', }, }, _group: { @@ -609,18 +609,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-in-out-slow', + id: 'transition.circ-in-slow', $type: 'transition', $value: { duration: '1s', delay: '0ms', - timingFunction: [0.85, 0, 0.15, 1], + timingFunction: [0.55, 0, 1, 0.45], }, }, - 'transition.circ-out-instant': { + 'transition.circ-out-deliberate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.deliberate}', timingFunction: '{ease.circ-out}', }, }, @@ -632,18 +632,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-out-instant', + id: 'transition.circ-out-deliberate', $type: 'transition', $value: { - duration: '50ms', + duration: '500ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, }, - 'transition.circ-out-quick': { + 'transition.circ-out-instant': { _original: { $value: { - duration: '{timing.quick}', + duration: '{timing.instant}', timingFunction: '{ease.circ-out}', }, }, @@ -655,10 +655,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-out-quick', + id: 'transition.circ-out-instant', $type: 'transition', $value: { - duration: '100ms', + duration: '50ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -686,10 +686,10 @@ export const meta = { timingFunction: [0.33, 1, 0.68, 1], }, }, - 'transition.circ-out-deliberate': { + 'transition.circ-out-quick': { _original: { $value: { - duration: '{timing.deliberate}', + duration: '{timing.quick}', timingFunction: '{ease.circ-out}', }, }, @@ -701,10 +701,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.circ-out-deliberate', + id: 'transition.circ-out-quick', $type: 'transition', $value: { - duration: '500ms', + duration: '100ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -732,10 +732,10 @@ export const meta = { timingFunction: [0.33, 1, 0.68, 1], }, }, - 'transition.cubic-in-instant': { + 'transition.cubic-in-deliberate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.deliberate}', timingFunction: '{ease.cubic-in}', }, }, @@ -747,18 +747,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-instant', + id: 'transition.cubic-in-deliberate', $type: 'transition', $value: { - duration: '50ms', + duration: '500ms', delay: '0ms', timingFunction: [0.32, 0, 0.67, 0], }, }, - 'transition.cubic-in-quick': { + 'transition.cubic-in-instant': { _original: { $value: { - duration: '{timing.quick}', + duration: '{timing.instant}', timingFunction: '{ease.cubic-in}', }, }, @@ -770,10 +770,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-quick', + id: 'transition.cubic-in-instant', $type: 'transition', $value: { - duration: '100ms', + duration: '50ms', delay: '0ms', timingFunction: [0.32, 0, 0.67, 0], }, @@ -801,11 +801,11 @@ export const meta = { timingFunction: [0.32, 0, 0.67, 0], }, }, - 'transition.cubic-in-deliberate': { + 'transition.cubic-in-out-deliberate': { _original: { $value: { duration: '{timing.deliberate}', - timingFunction: '{ease.cubic-in}', + timingFunction: '{ease.cubic-in-out}', }, }, _group: { @@ -816,19 +816,19 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-deliberate', + id: 'transition.cubic-in-out-deliberate', $type: 'transition', $value: { duration: '500ms', delay: '0ms', - timingFunction: [0.32, 0, 0.67, 0], + timingFunction: [0.65, 0, 0.35, 1], }, }, - 'transition.cubic-in-slow': { + 'transition.cubic-in-out-instant': { _original: { $value: { - duration: '{timing.slow}', - timingFunction: '{ease.cubic-in}', + duration: '{timing.instant}', + timingFunction: '{ease.cubic-in-out}', }, }, _group: { @@ -839,18 +839,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-slow', + id: 'transition.cubic-in-out-instant', $type: 'transition', $value: { - duration: '1s', + duration: '50ms', delay: '0ms', - timingFunction: [0.32, 0, 0.67, 0], + timingFunction: [0.65, 0, 0.35, 1], }, }, - 'transition.cubic-in-out-instant': { + 'transition.cubic-in-out-moderate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.moderate}', timingFunction: '{ease.cubic-in-out}', }, }, @@ -862,10 +862,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-out-instant', + id: 'transition.cubic-in-out-moderate', $type: 'transition', $value: { - duration: '50ms', + duration: '250ms', delay: '0ms', timingFunction: [0.65, 0, 0.35, 1], }, @@ -893,10 +893,10 @@ export const meta = { timingFunction: [0.65, 0, 0.35, 1], }, }, - 'transition.cubic-in-out-moderate': { + 'transition.cubic-in-out-slow': { _original: { $value: { - duration: '{timing.moderate}', + duration: '{timing.slow}', timingFunction: '{ease.cubic-in-out}', }, }, @@ -908,19 +908,19 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-out-moderate', + id: 'transition.cubic-in-out-slow', $type: 'transition', $value: { - duration: '250ms', + duration: '1s', delay: '0ms', timingFunction: [0.65, 0, 0.35, 1], }, }, - 'transition.cubic-in-out-deliberate': { + 'transition.cubic-in-quick': { _original: { $value: { - duration: '{timing.deliberate}', - timingFunction: '{ease.cubic-in-out}', + duration: '{timing.quick}', + timingFunction: '{ease.cubic-in}', }, }, _group: { @@ -931,19 +931,19 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-out-deliberate', + id: 'transition.cubic-in-quick', $type: 'transition', $value: { - duration: '500ms', + duration: '100ms', delay: '0ms', - timingFunction: [0.65, 0, 0.35, 1], + timingFunction: [0.32, 0, 0.67, 0], }, }, - 'transition.cubic-in-out-slow': { + 'transition.cubic-in-slow': { _original: { $value: { duration: '{timing.slow}', - timingFunction: '{ease.cubic-in-out}', + timingFunction: '{ease.cubic-in}', }, }, _group: { @@ -954,18 +954,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-in-out-slow', + id: 'transition.cubic-in-slow', $type: 'transition', $value: { duration: '1s', delay: '0ms', - timingFunction: [0.65, 0, 0.35, 1], + timingFunction: [0.32, 0, 0.67, 0], }, }, - 'transition.cubic-out-instant': { + 'transition.cubic-out-deliberate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.deliberate}', timingFunction: '{ease.cubic-out}', }, }, @@ -977,18 +977,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-out-instant', + id: 'transition.cubic-out-deliberate', $type: 'transition', $value: { - duration: '50ms', + duration: '500ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, }, - 'transition.cubic-out-quick': { + 'transition.cubic-out-instant': { _original: { $value: { - duration: '{timing.quick}', + duration: '{timing.instant}', timingFunction: '{ease.cubic-out}', }, }, @@ -1000,10 +1000,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-out-quick', + id: 'transition.cubic-out-instant', $type: 'transition', $value: { - duration: '100ms', + duration: '50ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -1031,10 +1031,10 @@ export const meta = { timingFunction: [0.33, 1, 0.68, 1], }, }, - 'transition.cubic-out-deliberate': { + 'transition.cubic-out-quick': { _original: { $value: { - duration: '{timing.deliberate}', + duration: '{timing.quick}', timingFunction: '{ease.cubic-out}', }, }, @@ -1046,10 +1046,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.cubic-out-deliberate', + id: 'transition.cubic-out-quick', $type: 'transition', $value: { - duration: '500ms', + duration: '100ms', delay: '0ms', timingFunction: [0.33, 1, 0.68, 1], }, @@ -1077,10 +1077,10 @@ export const meta = { timingFunction: [0.33, 1, 0.68, 1], }, }, - 'transition.linear-instant': { + 'transition.linear-deliberate': { _original: { $value: { - duration: '{timing.instant}', + duration: '{timing.deliberate}', timingFunction: '{ease.linear}', }, }, @@ -1092,18 +1092,18 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.linear-instant', + id: 'transition.linear-deliberate', $type: 'transition', $value: { - duration: '50ms', + duration: '500ms', delay: '0ms', timingFunction: [0, 0, 1, 1], }, }, - 'transition.linear-quick': { + 'transition.linear-instant': { _original: { $value: { - duration: '{timing.quick}', + duration: '{timing.instant}', timingFunction: '{ease.linear}', }, }, @@ -1115,10 +1115,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.linear-quick', + id: 'transition.linear-instant', $type: 'transition', $value: { - duration: '100ms', + duration: '50ms', delay: '0ms', timingFunction: [0, 0, 1, 1], }, @@ -1146,10 +1146,10 @@ export const meta = { timingFunction: [0, 0, 1, 1], }, }, - 'transition.linear-deliberate': { + 'transition.linear-quick': { _original: { $value: { - duration: '{timing.deliberate}', + duration: '{timing.quick}', timingFunction: '{ease.linear}', }, }, @@ -1161,10 +1161,10 @@ export const meta = { $description: 'Shared transitions', $type: 'transition', }, - id: 'transition.linear-deliberate', + id: 'transition.linear-quick', $type: 'transition', $value: { - duration: '500ms', + duration: '100ms', delay: '0ms', timingFunction: [0, 0, 1, 1], }, diff --git a/packages/plugin-js/test/transition/want.json b/packages/plugin-js/test/transition/want.json index 90a2ef03..84f366c1 100644 --- a/packages/plugin-js/test/transition/want.json +++ b/packages/plugin-js/test/transition/want.json @@ -6,18 +6,18 @@ 1, 0.45 ], - "ease.circ-out": [ - 0.33, - 1, - 0.68, - 1 - ], "ease.circ-in-out": [ 0.85, 0, 0.15, 1 ], + "ease.circ-out": [ + 0.33, + 1, + 0.68, + 1 + ], "ease.cubic-in": [ 0.32, 0, @@ -42,13 +42,13 @@ 1, 1 ], + "timing.deliberate": "500ms", "timing.instant": "50ms", - "timing.quick": "100ms", "timing.moderate": "250ms", - "timing.deliberate": "500ms", + "timing.quick": "100ms", "timing.slow": "1s", - "transition.circ-in-instant": { - "duration": "50ms", + "transition.circ-in-deliberate": { + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.55, @@ -57,8 +57,8 @@ 0.45 ] }, - "transition.circ-in-quick": { - "duration": "100ms", + "transition.circ-in-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.55, @@ -77,28 +77,28 @@ 0.45 ] }, - "transition.circ-in-deliberate": { + "transition.circ-in-out-deliberate": { "duration": "500ms", "delay": "0ms", "timingFunction": [ - 0.55, + 0.85, 0, - 1, - 0.45 + 0.15, + 1 ] }, - "transition.circ-in-slow": { - "duration": "1s", + "transition.circ-in-out-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ - 0.55, + 0.85, 0, - 1, - 0.45 + 0.15, + 1 ] }, - "transition.circ-in-out-instant": { - "duration": "50ms", + "transition.circ-in-out-moderate": { + "duration": "250ms", "delay": "0ms", "timingFunction": [ 0.85, @@ -117,8 +117,8 @@ 1 ] }, - "transition.circ-in-out-moderate": { - "duration": "250ms", + "transition.circ-in-out-slow": { + "duration": "1s", "delay": "0ms", "timingFunction": [ 0.85, @@ -127,28 +127,28 @@ 1 ] }, - "transition.circ-in-out-deliberate": { - "duration": "500ms", + "transition.circ-in-quick": { + "duration": "100ms", "delay": "0ms", "timingFunction": [ - 0.85, + 0.55, 0, - 0.15, - 1 + 1, + 0.45 ] }, - "transition.circ-in-out-slow": { + "transition.circ-in-slow": { "duration": "1s", "delay": "0ms", "timingFunction": [ - 0.85, + 0.55, 0, - 0.15, - 1 + 1, + 0.45 ] }, - "transition.circ-out-instant": { - "duration": "50ms", + "transition.circ-out-deliberate": { + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -157,8 +157,8 @@ 1 ] }, - "transition.circ-out-quick": { - "duration": "100ms", + "transition.circ-out-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -177,8 +177,8 @@ 1 ] }, - "transition.circ-out-deliberate": { - "duration": "500ms", + "transition.circ-out-quick": { + "duration": "100ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -197,8 +197,8 @@ 1 ] }, - "transition.cubic-in-instant": { - "duration": "50ms", + "transition.cubic-in-deliberate": { + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.32, @@ -207,8 +207,8 @@ 0 ] }, - "transition.cubic-in-quick": { - "duration": "100ms", + "transition.cubic-in-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.32, @@ -227,28 +227,28 @@ 0 ] }, - "transition.cubic-in-deliberate": { + "transition.cubic-in-out-deliberate": { "duration": "500ms", "delay": "0ms", "timingFunction": [ - 0.32, + 0.65, 0, - 0.67, - 0 + 0.35, + 1 ] }, - "transition.cubic-in-slow": { - "duration": "1s", + "transition.cubic-in-out-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ - 0.32, + 0.65, 0, - 0.67, - 0 + 0.35, + 1 ] }, - "transition.cubic-in-out-instant": { - "duration": "50ms", + "transition.cubic-in-out-moderate": { + "duration": "250ms", "delay": "0ms", "timingFunction": [ 0.65, @@ -267,8 +267,8 @@ 1 ] }, - "transition.cubic-in-out-moderate": { - "duration": "250ms", + "transition.cubic-in-out-slow": { + "duration": "1s", "delay": "0ms", "timingFunction": [ 0.65, @@ -277,28 +277,28 @@ 1 ] }, - "transition.cubic-in-out-deliberate": { - "duration": "500ms", + "transition.cubic-in-quick": { + "duration": "100ms", "delay": "0ms", "timingFunction": [ - 0.65, + 0.32, 0, - 0.35, - 1 + 0.67, + 0 ] }, - "transition.cubic-in-out-slow": { + "transition.cubic-in-slow": { "duration": "1s", "delay": "0ms", "timingFunction": [ - 0.65, + 0.32, 0, - 0.35, - 1 + 0.67, + 0 ] }, - "transition.cubic-out-instant": { - "duration": "50ms", + "transition.cubic-out-deliberate": { + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -307,8 +307,8 @@ 1 ] }, - "transition.cubic-out-quick": { - "duration": "100ms", + "transition.cubic-out-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -327,8 +327,8 @@ 1 ] }, - "transition.cubic-out-deliberate": { - "duration": "500ms", + "transition.cubic-out-quick": { + "duration": "100ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -347,8 +347,8 @@ 1 ] }, - "transition.linear-instant": { - "duration": "50ms", + "transition.linear-deliberate": { + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0, @@ -357,8 +357,8 @@ 1 ] }, - "transition.linear-quick": { - "duration": "100ms", + "transition.linear-instant": { + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0, @@ -377,8 +377,8 @@ 1 ] }, - "transition.linear-deliberate": { - "duration": "500ms", + "transition.linear-quick": { + "duration": "100ms", "delay": "0ms", "timingFunction": [ 0, @@ -425,12 +425,12 @@ 0.45 ] }, - "ease.circ-out": { + "ease.circ-in-out": { "_original": { "$value": [ - 0.33, - 1, - 0.68, + 0.85, + 0, + 0.15, 1 ] }, @@ -442,21 +442,21 @@ "$description": "Easing curves", "$type": "cubicBezier" }, - "id": "ease.circ-out", + "id": "ease.circ-in-out", "$type": "cubicBezier", "$value": [ - 0.33, - 1, - 0.68, + 0.85, + 0, + 0.15, 1 ] }, - "ease.circ-in-out": { + "ease.circ-out": { "_original": { "$value": [ - 0.85, - 0, - 0.15, + 0.33, + 1, + 0.68, 1 ] }, @@ -468,12 +468,12 @@ "$description": "Easing curves", "$type": "cubicBezier" }, - "id": "ease.circ-in-out", + "id": "ease.circ-out", "$type": "cubicBezier", "$value": [ - 0.85, - 0, - 0.15, + 0.33, + 1, + 0.68, 1 ] }, @@ -581,9 +581,9 @@ 1 ] }, - "timing.instant": { + "timing.deliberate": { "_original": { - "$value": "50ms" + "$value": "500ms" }, "_group": { "id": "timing", @@ -593,13 +593,13 @@ "$description": "Standardized beats", "$type": "duration" }, - "id": "timing.instant", + "id": "timing.deliberate", "$type": "duration", - "$value": "50ms" + "$value": "500ms" }, - "timing.quick": { + "timing.instant": { "_original": { - "$value": "100ms" + "$value": "50ms" }, "_group": { "id": "timing", @@ -609,9 +609,9 @@ "$description": "Standardized beats", "$type": "duration" }, - "id": "timing.quick", + "id": "timing.instant", "$type": "duration", - "$value": "100ms" + "$value": "50ms" }, "timing.moderate": { "_original": { @@ -629,9 +629,9 @@ "$type": "duration", "$value": "250ms" }, - "timing.deliberate": { + "timing.quick": { "_original": { - "$value": "500ms" + "$value": "100ms" }, "_group": { "id": "timing", @@ -641,9 +641,9 @@ "$description": "Standardized beats", "$type": "duration" }, - "id": "timing.deliberate", + "id": "timing.quick", "$type": "duration", - "$value": "500ms" + "$value": "100ms" }, "timing.slow": { "_original": { @@ -661,10 +661,10 @@ "$type": "duration", "$value": "1s" }, - "transition.circ-in-instant": { + "transition.circ-in-deliberate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.deliberate}", "timingFunction": "{ease.circ-in}" } }, @@ -676,10 +676,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-instant", + "id": "transition.circ-in-deliberate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.55, @@ -689,10 +689,10 @@ ] } }, - "transition.circ-in-quick": { + "transition.circ-in-instant": { "_original": { "$value": { - "duration": "{timing.quick}", + "duration": "{timing.instant}", "timingFunction": "{ease.circ-in}" } }, @@ -704,10 +704,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-quick", + "id": "transition.circ-in-instant", "$type": "transition", "$value": { - "duration": "100ms", + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.55, @@ -745,11 +745,11 @@ ] } }, - "transition.circ-in-deliberate": { + "transition.circ-in-out-deliberate": { "_original": { "$value": { "duration": "{timing.deliberate}", - "timingFunction": "{ease.circ-in}" + "timingFunction": "{ease.circ-in-out}" } }, "_group": { @@ -760,24 +760,24 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-deliberate", + "id": "transition.circ-in-out-deliberate", "$type": "transition", "$value": { "duration": "500ms", "delay": "0ms", "timingFunction": [ - 0.55, + 0.85, 0, - 1, - 0.45 + 0.15, + 1 ] } }, - "transition.circ-in-slow": { + "transition.circ-in-out-instant": { "_original": { "$value": { - "duration": "{timing.slow}", - "timingFunction": "{ease.circ-in}" + "duration": "{timing.instant}", + "timingFunction": "{ease.circ-in-out}" } }, "_group": { @@ -788,23 +788,23 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-slow", + "id": "transition.circ-in-out-instant", "$type": "transition", "$value": { - "duration": "1s", + "duration": "50ms", "delay": "0ms", "timingFunction": [ - 0.55, + 0.85, 0, - 1, - 0.45 + 0.15, + 1 ] } }, - "transition.circ-in-out-instant": { + "transition.circ-in-out-moderate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.moderate}", "timingFunction": "{ease.circ-in-out}" } }, @@ -816,10 +816,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-out-instant", + "id": "transition.circ-in-out-moderate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "250ms", "delay": "0ms", "timingFunction": [ 0.85, @@ -857,10 +857,10 @@ ] } }, - "transition.circ-in-out-moderate": { + "transition.circ-in-out-slow": { "_original": { "$value": { - "duration": "{timing.moderate}", + "duration": "{timing.slow}", "timingFunction": "{ease.circ-in-out}" } }, @@ -872,10 +872,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-out-moderate", + "id": "transition.circ-in-out-slow", "$type": "transition", "$value": { - "duration": "250ms", + "duration": "1s", "delay": "0ms", "timingFunction": [ 0.85, @@ -885,11 +885,11 @@ ] } }, - "transition.circ-in-out-deliberate": { + "transition.circ-in-quick": { "_original": { "$value": { - "duration": "{timing.deliberate}", - "timingFunction": "{ease.circ-in-out}" + "duration": "{timing.quick}", + "timingFunction": "{ease.circ-in}" } }, "_group": { @@ -900,24 +900,24 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-out-deliberate", + "id": "transition.circ-in-quick", "$type": "transition", "$value": { - "duration": "500ms", + "duration": "100ms", "delay": "0ms", "timingFunction": [ - 0.85, + 0.55, 0, - 0.15, - 1 + 1, + 0.45 ] } }, - "transition.circ-in-out-slow": { + "transition.circ-in-slow": { "_original": { "$value": { "duration": "{timing.slow}", - "timingFunction": "{ease.circ-in-out}" + "timingFunction": "{ease.circ-in}" } }, "_group": { @@ -928,23 +928,23 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-in-out-slow", + "id": "transition.circ-in-slow", "$type": "transition", "$value": { "duration": "1s", "delay": "0ms", "timingFunction": [ - 0.85, + 0.55, 0, - 0.15, - 1 + 1, + 0.45 ] } }, - "transition.circ-out-instant": { + "transition.circ-out-deliberate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.deliberate}", "timingFunction": "{ease.circ-out}" } }, @@ -956,10 +956,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-out-instant", + "id": "transition.circ-out-deliberate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -969,10 +969,10 @@ ] } }, - "transition.circ-out-quick": { + "transition.circ-out-instant": { "_original": { "$value": { - "duration": "{timing.quick}", + "duration": "{timing.instant}", "timingFunction": "{ease.circ-out}" } }, @@ -984,10 +984,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-out-quick", + "id": "transition.circ-out-instant", "$type": "transition", "$value": { - "duration": "100ms", + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -1025,10 +1025,10 @@ ] } }, - "transition.circ-out-deliberate": { + "transition.circ-out-quick": { "_original": { "$value": { - "duration": "{timing.deliberate}", + "duration": "{timing.quick}", "timingFunction": "{ease.circ-out}" } }, @@ -1040,10 +1040,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.circ-out-deliberate", + "id": "transition.circ-out-quick", "$type": "transition", "$value": { - "duration": "500ms", + "duration": "100ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -1081,10 +1081,10 @@ ] } }, - "transition.cubic-in-instant": { + "transition.cubic-in-deliberate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.deliberate}", "timingFunction": "{ease.cubic-in}" } }, @@ -1096,10 +1096,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-instant", + "id": "transition.cubic-in-deliberate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.32, @@ -1109,10 +1109,10 @@ ] } }, - "transition.cubic-in-quick": { + "transition.cubic-in-instant": { "_original": { "$value": { - "duration": "{timing.quick}", + "duration": "{timing.instant}", "timingFunction": "{ease.cubic-in}" } }, @@ -1124,10 +1124,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-quick", + "id": "transition.cubic-in-instant", "$type": "transition", "$value": { - "duration": "100ms", + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.32, @@ -1165,11 +1165,11 @@ ] } }, - "transition.cubic-in-deliberate": { + "transition.cubic-in-out-deliberate": { "_original": { "$value": { "duration": "{timing.deliberate}", - "timingFunction": "{ease.cubic-in}" + "timingFunction": "{ease.cubic-in-out}" } }, "_group": { @@ -1180,24 +1180,24 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-deliberate", + "id": "transition.cubic-in-out-deliberate", "$type": "transition", "$value": { "duration": "500ms", "delay": "0ms", "timingFunction": [ - 0.32, + 0.65, 0, - 0.67, - 0 + 0.35, + 1 ] } }, - "transition.cubic-in-slow": { + "transition.cubic-in-out-instant": { "_original": { "$value": { - "duration": "{timing.slow}", - "timingFunction": "{ease.cubic-in}" + "duration": "{timing.instant}", + "timingFunction": "{ease.cubic-in-out}" } }, "_group": { @@ -1208,23 +1208,23 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-slow", + "id": "transition.cubic-in-out-instant", "$type": "transition", "$value": { - "duration": "1s", + "duration": "50ms", "delay": "0ms", "timingFunction": [ - 0.32, + 0.65, 0, - 0.67, - 0 + 0.35, + 1 ] } }, - "transition.cubic-in-out-instant": { + "transition.cubic-in-out-moderate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.moderate}", "timingFunction": "{ease.cubic-in-out}" } }, @@ -1236,10 +1236,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-out-instant", + "id": "transition.cubic-in-out-moderate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "250ms", "delay": "0ms", "timingFunction": [ 0.65, @@ -1277,10 +1277,10 @@ ] } }, - "transition.cubic-in-out-moderate": { + "transition.cubic-in-out-slow": { "_original": { "$value": { - "duration": "{timing.moderate}", + "duration": "{timing.slow}", "timingFunction": "{ease.cubic-in-out}" } }, @@ -1292,10 +1292,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-out-moderate", + "id": "transition.cubic-in-out-slow", "$type": "transition", "$value": { - "duration": "250ms", + "duration": "1s", "delay": "0ms", "timingFunction": [ 0.65, @@ -1305,11 +1305,11 @@ ] } }, - "transition.cubic-in-out-deliberate": { + "transition.cubic-in-quick": { "_original": { "$value": { - "duration": "{timing.deliberate}", - "timingFunction": "{ease.cubic-in-out}" + "duration": "{timing.quick}", + "timingFunction": "{ease.cubic-in}" } }, "_group": { @@ -1320,24 +1320,24 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-out-deliberate", + "id": "transition.cubic-in-quick", "$type": "transition", "$value": { - "duration": "500ms", + "duration": "100ms", "delay": "0ms", "timingFunction": [ - 0.65, + 0.32, 0, - 0.35, - 1 + 0.67, + 0 ] } }, - "transition.cubic-in-out-slow": { + "transition.cubic-in-slow": { "_original": { "$value": { "duration": "{timing.slow}", - "timingFunction": "{ease.cubic-in-out}" + "timingFunction": "{ease.cubic-in}" } }, "_group": { @@ -1348,23 +1348,23 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-in-out-slow", + "id": "transition.cubic-in-slow", "$type": "transition", "$value": { "duration": "1s", "delay": "0ms", "timingFunction": [ - 0.65, + 0.32, 0, - 0.35, - 1 + 0.67, + 0 ] } }, - "transition.cubic-out-instant": { + "transition.cubic-out-deliberate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.deliberate}", "timingFunction": "{ease.cubic-out}" } }, @@ -1376,10 +1376,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-out-instant", + "id": "transition.cubic-out-deliberate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -1389,10 +1389,10 @@ ] } }, - "transition.cubic-out-quick": { + "transition.cubic-out-instant": { "_original": { "$value": { - "duration": "{timing.quick}", + "duration": "{timing.instant}", "timingFunction": "{ease.cubic-out}" } }, @@ -1404,10 +1404,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-out-quick", + "id": "transition.cubic-out-instant", "$type": "transition", "$value": { - "duration": "100ms", + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -1445,10 +1445,10 @@ ] } }, - "transition.cubic-out-deliberate": { + "transition.cubic-out-quick": { "_original": { "$value": { - "duration": "{timing.deliberate}", + "duration": "{timing.quick}", "timingFunction": "{ease.cubic-out}" } }, @@ -1460,10 +1460,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.cubic-out-deliberate", + "id": "transition.cubic-out-quick", "$type": "transition", "$value": { - "duration": "500ms", + "duration": "100ms", "delay": "0ms", "timingFunction": [ 0.33, @@ -1501,10 +1501,10 @@ ] } }, - "transition.linear-instant": { + "transition.linear-deliberate": { "_original": { "$value": { - "duration": "{timing.instant}", + "duration": "{timing.deliberate}", "timingFunction": "{ease.linear}" } }, @@ -1516,10 +1516,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.linear-instant", + "id": "transition.linear-deliberate", "$type": "transition", "$value": { - "duration": "50ms", + "duration": "500ms", "delay": "0ms", "timingFunction": [ 0, @@ -1529,10 +1529,10 @@ ] } }, - "transition.linear-quick": { + "transition.linear-instant": { "_original": { "$value": { - "duration": "{timing.quick}", + "duration": "{timing.instant}", "timingFunction": "{ease.linear}" } }, @@ -1544,10 +1544,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.linear-quick", + "id": "transition.linear-instant", "$type": "transition", "$value": { - "duration": "100ms", + "duration": "50ms", "delay": "0ms", "timingFunction": [ 0, @@ -1585,10 +1585,10 @@ ] } }, - "transition.linear-deliberate": { + "transition.linear-quick": { "_original": { "$value": { - "duration": "{timing.deliberate}", + "duration": "{timing.quick}", "timingFunction": "{ease.linear}" } }, @@ -1600,10 +1600,10 @@ "$description": "Shared transitions", "$type": "transition" }, - "id": "transition.linear-deliberate", + "id": "transition.linear-quick", "$type": "transition", "$value": { - "duration": "500ms", + "duration": "100ms", "delay": "0ms", "timingFunction": [ 0, diff --git a/packages/plugin-js/test/typography/want.d.ts b/packages/plugin-js/test/typography/want.d.ts index 3f798f1a..777b49ac 100644 --- a/packages/plugin-js/test/typography/want.d.ts +++ b/packages/plugin-js/test/typography/want.d.ts @@ -12,21 +12,21 @@ import { } from '@cobalt-ui/core'; export declare const tokens: { + 'typography.body': TypographyToken['$value']; 'typography.family.body': FontFamilyToken['$value']; 'typography.family.heading': FontFamilyToken['$value']; 'typography.largeTitle': TypographyToken['$value']; - 'typography.body': TypographyToken['$value']; }; export declare const meta: { + 'typography.body': ParsedTypographyToken & { $extensions: { mode: typeof modes['typography.body'] } }; 'typography.family.body': ParsedFontFamilyToken; 'typography.family.heading': ParsedFontFamilyToken; 'typography.largeTitle': ParsedTypographyToken & { $extensions: { mode: typeof modes['typography.largeTitle'] } }; - 'typography.body': ParsedTypographyToken & { $extensions: { mode: typeof modes['typography.body'] } }; }; export declare const modes: { - 'typography.largeTitle': { + 'typography.body': { xs: TypographyToken['$value']; s: TypographyToken['$value']; m: TypographyToken['$value']; @@ -35,7 +35,7 @@ export declare const modes: { '2xl': TypographyToken['$value']; '3xl': TypographyToken['$value']; }; - 'typography.body': { + 'typography.largeTitle': { xs: TypographyToken['$value']; s: TypographyToken['$value']; m: TypographyToken['$value']; diff --git a/packages/plugin-js/test/typography/want.js b/packages/plugin-js/test/typography/want.js index fd002404..aea79f0b 100644 --- a/packages/plugin-js/test/typography/want.js +++ b/packages/plugin-js/test/typography/want.js @@ -5,6 +5,12 @@ */ export const tokens = { + 'typography.body': { + fontFamily: ['Helvetica'], + fontSize: '17px', + fontWeight: 400, + lineHeight: '22px', + }, 'typography.family.body': ['IBM Plex Sans', '-system-ui', 'sans-serif'], 'typography.family.heading': ['Helvetica'], 'typography.largeTitle': { @@ -13,15 +19,98 @@ export const tokens = { fontWeight: 400, lineHeight: '41px', }, - 'typography.body': { - fontFamily: ['Helvetica'], - fontSize: '17px', - fontWeight: 400, - lineHeight: '22px', - }, }; export const meta = { + 'typography.body': { + _original: { + $type: 'typography', + $value: { + fontFamily: '{typography.family.heading}', + fontSize: '17px', + fontWeight: 400, + lineHeight: '22px', + }, + $extensions: { + mode: { + xs: { + fontSize: '14px', + lineHeight: '19px', + }, + s: { + fontSize: '15px', + lineHeight: '20px', + }, + m: { + fontSize: '16px', + lineHeight: '21px', + }, + l: { + fontSize: '17px', + lineHeight: '22px', + }, + xl: { + fontSize: '19px', + lineHeight: '24px', + }, + '2xl': { + fontSize: '21px', + lineHeight: '26px', + }, + '3xl': { + fontSize: '23px', + lineHeight: '29px', + }, + }, + }, + }, + _group: { + id: 'typography', + $extensions: { + requiredModes: [], + }, + }, + id: 'typography.body', + $type: 'typography', + $value: { + fontFamily: ['Helvetica'], + fontSize: '17px', + fontWeight: 400, + lineHeight: '22px', + }, + $extensions: { + mode: { + xs: { + fontSize: '14px', + lineHeight: '19px', + }, + s: { + fontSize: '15px', + lineHeight: '20px', + }, + m: { + fontSize: '16px', + lineHeight: '21px', + }, + l: { + fontSize: '17px', + lineHeight: '22px', + }, + xl: { + fontSize: '19px', + lineHeight: '24px', + }, + '2xl': { + fontSize: '21px', + lineHeight: '26px', + }, + '3xl': { + fontSize: '23px', + lineHeight: '29px', + }, + }, + }, + }, 'typography.family.body': { _original: { $type: 'fontFamily', @@ -141,184 +230,95 @@ export const meta = { }, }, }, - 'typography.body': { - _original: { - $type: 'typography', - $value: { - fontFamily: '{typography.family.heading}', - fontSize: '17px', - fontWeight: 400, - lineHeight: '22px', - }, - $extensions: { - mode: { - xs: { - fontSize: '14px', - lineHeight: '19px', - }, - s: { - fontSize: '15px', - lineHeight: '20px', - }, - m: { - fontSize: '16px', - lineHeight: '21px', - }, - l: { - fontSize: '17px', - lineHeight: '22px', - }, - xl: { - fontSize: '19px', - lineHeight: '24px', - }, - '2xl': { - fontSize: '21px', - lineHeight: '26px', - }, - '3xl': { - fontSize: '23px', - lineHeight: '29px', - }, - }, - }, - }, - _group: { - id: 'typography', - $extensions: { - requiredModes: [], - }, - }, - id: 'typography.body', - $type: 'typography', - $value: { - fontFamily: ['Helvetica'], - fontSize: '17px', - fontWeight: 400, - lineHeight: '22px', - }, - $extensions: { - mode: { - xs: { - fontSize: '14px', - lineHeight: '19px', - }, - s: { - fontSize: '15px', - lineHeight: '20px', - }, - m: { - fontSize: '16px', - lineHeight: '21px', - }, - l: { - fontSize: '17px', - lineHeight: '22px', - }, - xl: { - fontSize: '19px', - lineHeight: '24px', - }, - '2xl': { - fontSize: '21px', - lineHeight: '26px', - }, - '3xl': { - fontSize: '23px', - lineHeight: '29px', - }, - }, - }, - }, }; export const modes = { - 'typography.largeTitle': { + 'typography.body': { xs: { fontFamily: ['Helvetica'], - fontSize: '31px', + fontSize: '14px', fontWeight: 400, - lineHeight: '38px', + lineHeight: '19px', }, s: { fontFamily: ['Helvetica'], - fontSize: '32px', + fontSize: '15px', fontWeight: 400, - lineHeight: '39px', + lineHeight: '20px', }, m: { fontFamily: ['Helvetica'], - fontSize: '33px', + fontSize: '16px', fontWeight: 400, - lineHeight: '40px', + lineHeight: '21px', }, l: { fontFamily: ['Helvetica'], - fontSize: '34px', + fontSize: '17px', fontWeight: 400, - lineHeight: '41px', + lineHeight: '22px', }, xl: { fontFamily: ['Helvetica'], - fontSize: '36px', + fontSize: '19px', fontWeight: 400, - lineHeight: '43px', + lineHeight: '24px', }, '2xl': { fontFamily: ['Helvetica'], - fontSize: '38px', + fontSize: '21px', fontWeight: 400, - lineHeight: '46px', + lineHeight: '26px', }, '3xl': { fontFamily: ['Helvetica'], - fontSize: '40px', + fontSize: '23px', fontWeight: 400, - lineHeight: '48px', + lineHeight: '29px', }, }, - 'typography.body': { + 'typography.largeTitle': { xs: { fontFamily: ['Helvetica'], - fontSize: '14px', + fontSize: '31px', fontWeight: 400, - lineHeight: '19px', + lineHeight: '38px', }, s: { fontFamily: ['Helvetica'], - fontSize: '15px', + fontSize: '32px', fontWeight: 400, - lineHeight: '20px', + lineHeight: '39px', }, m: { fontFamily: ['Helvetica'], - fontSize: '16px', + fontSize: '33px', fontWeight: 400, - lineHeight: '21px', + lineHeight: '40px', }, l: { fontFamily: ['Helvetica'], - fontSize: '17px', + fontSize: '34px', fontWeight: 400, - lineHeight: '22px', + lineHeight: '41px', }, xl: { fontFamily: ['Helvetica'], - fontSize: '19px', + fontSize: '36px', fontWeight: 400, - lineHeight: '24px', + lineHeight: '43px', }, '2xl': { fontFamily: ['Helvetica'], - fontSize: '21px', + fontSize: '38px', fontWeight: 400, - lineHeight: '26px', + lineHeight: '46px', }, '3xl': { fontFamily: ['Helvetica'], - fontSize: '23px', + fontSize: '40px', fontWeight: 400, - lineHeight: '29px', + lineHeight: '48px', }, }, }; diff --git a/packages/plugin-js/test/typography/want.json b/packages/plugin-js/test/typography/want.json index 274524dd..1a3b3d21 100644 --- a/packages/plugin-js/test/typography/want.json +++ b/packages/plugin-js/test/typography/want.json @@ -1,5 +1,13 @@ { "tokens": { + "typography.body": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "17px", + "fontWeight": 400, + "lineHeight": "22px" + }, "typography.family.body": [ "IBM Plex Sans", "-system-ui", @@ -15,17 +23,100 @@ "fontSize": "34px", "fontWeight": 400, "lineHeight": "41px" - }, - "typography.body": { - "fontFamily": [ - "Helvetica" - ], - "fontSize": "17px", - "fontWeight": 400, - "lineHeight": "22px" } }, "meta": { + "typography.body": { + "_original": { + "$type": "typography", + "$value": { + "fontFamily": "{typography.family.heading}", + "fontSize": "17px", + "fontWeight": 400, + "lineHeight": "22px" + }, + "$extensions": { + "mode": { + "xs": { + "fontSize": "14px", + "lineHeight": "19px" + }, + "s": { + "fontSize": "15px", + "lineHeight": "20px" + }, + "m": { + "fontSize": "16px", + "lineHeight": "21px" + }, + "l": { + "fontSize": "17px", + "lineHeight": "22px" + }, + "xl": { + "fontSize": "19px", + "lineHeight": "24px" + }, + "2xl": { + "fontSize": "21px", + "lineHeight": "26px" + }, + "3xl": { + "fontSize": "23px", + "lineHeight": "29px" + } + } + } + }, + "_group": { + "id": "typography", + "$extensions": { + "requiredModes": [] + } + }, + "id": "typography.body", + "$type": "typography", + "$value": { + "fontFamily": [ + "Helvetica" + ], + "fontSize": "17px", + "fontWeight": 400, + "lineHeight": "22px" + }, + "$extensions": { + "mode": { + "xs": { + "fontSize": "14px", + "lineHeight": "19px" + }, + "s": { + "fontSize": "15px", + "lineHeight": "20px" + }, + "m": { + "fontSize": "16px", + "lineHeight": "21px" + }, + "l": { + "fontSize": "17px", + "lineHeight": "22px" + }, + "xl": { + "fontSize": "19px", + "lineHeight": "24px" + }, + "2xl": { + "fontSize": "21px", + "lineHeight": "26px" + }, + "3xl": { + "fontSize": "23px", + "lineHeight": "29px" + } + } + } + }, "typography.family.body": { "_original": { "$type": "fontFamily", @@ -156,214 +247,123 @@ } } } - }, - "typography.body": { - "_original": { - "$type": "typography", - "$value": { - "fontFamily": "{typography.family.heading}", - "fontSize": "17px", - "fontWeight": 400, - "lineHeight": "22px" - }, - "$extensions": { - "mode": { - "xs": { - "fontSize": "14px", - "lineHeight": "19px" - }, - "s": { - "fontSize": "15px", - "lineHeight": "20px" - }, - "m": { - "fontSize": "16px", - "lineHeight": "21px" - }, - "l": { - "fontSize": "17px", - "lineHeight": "22px" - }, - "xl": { - "fontSize": "19px", - "lineHeight": "24px" - }, - "2xl": { - "fontSize": "21px", - "lineHeight": "26px" - }, - "3xl": { - "fontSize": "23px", - "lineHeight": "29px" - } - } - } - }, - "_group": { - "id": "typography", - "$extensions": { - "requiredModes": [] - } - }, - "id": "typography.body", - "$type": "typography", - "$value": { - "fontFamily": [ - "Helvetica" - ], - "fontSize": "17px", - "fontWeight": 400, - "lineHeight": "22px" - }, - "$extensions": { - "mode": { - "xs": { - "fontSize": "14px", - "lineHeight": "19px" - }, - "s": { - "fontSize": "15px", - "lineHeight": "20px" - }, - "m": { - "fontSize": "16px", - "lineHeight": "21px" - }, - "l": { - "fontSize": "17px", - "lineHeight": "22px" - }, - "xl": { - "fontSize": "19px", - "lineHeight": "24px" - }, - "2xl": { - "fontSize": "21px", - "lineHeight": "26px" - }, - "3xl": { - "fontSize": "23px", - "lineHeight": "29px" - } - } - } } }, "modes": { - "typography.largeTitle": { + "typography.body": { "xs": { "fontFamily": [ "Helvetica" ], - "fontSize": "31px", + "fontSize": "14px", "fontWeight": 400, - "lineHeight": "38px" + "lineHeight": "19px" }, "s": { "fontFamily": [ "Helvetica" ], - "fontSize": "32px", + "fontSize": "15px", "fontWeight": 400, - "lineHeight": "39px" + "lineHeight": "20px" }, "m": { "fontFamily": [ "Helvetica" ], - "fontSize": "33px", + "fontSize": "16px", "fontWeight": 400, - "lineHeight": "40px" + "lineHeight": "21px" }, "l": { "fontFamily": [ "Helvetica" ], - "fontSize": "34px", + "fontSize": "17px", "fontWeight": 400, - "lineHeight": "41px" + "lineHeight": "22px" }, "xl": { "fontFamily": [ "Helvetica" ], - "fontSize": "36px", + "fontSize": "19px", "fontWeight": 400, - "lineHeight": "43px" + "lineHeight": "24px" }, "2xl": { "fontFamily": [ "Helvetica" ], - "fontSize": "38px", + "fontSize": "21px", "fontWeight": 400, - "lineHeight": "46px" + "lineHeight": "26px" }, "3xl": { "fontFamily": [ "Helvetica" ], - "fontSize": "40px", + "fontSize": "23px", "fontWeight": 400, - "lineHeight": "48px" + "lineHeight": "29px" } }, - "typography.body": { + "typography.largeTitle": { "xs": { "fontFamily": [ "Helvetica" ], - "fontSize": "14px", + "fontSize": "31px", "fontWeight": 400, - "lineHeight": "19px" + "lineHeight": "38px" }, "s": { "fontFamily": [ "Helvetica" ], - "fontSize": "15px", + "fontSize": "32px", "fontWeight": 400, - "lineHeight": "20px" + "lineHeight": "39px" }, "m": { "fontFamily": [ "Helvetica" ], - "fontSize": "16px", + "fontSize": "33px", "fontWeight": 400, - "lineHeight": "21px" + "lineHeight": "40px" }, "l": { "fontFamily": [ "Helvetica" ], - "fontSize": "17px", + "fontSize": "34px", "fontWeight": 400, - "lineHeight": "22px" + "lineHeight": "41px" }, "xl": { "fontFamily": [ "Helvetica" ], - "fontSize": "19px", + "fontSize": "36px", "fontWeight": 400, - "lineHeight": "24px" + "lineHeight": "43px" }, "2xl": { "fontFamily": [ "Helvetica" ], - "fontSize": "21px", + "fontSize": "38px", "fontWeight": 400, - "lineHeight": "26px" + "lineHeight": "46px" }, "3xl": { "fontFamily": [ "Helvetica" ], - "fontSize": "23px", + "fontSize": "40px", "fontWeight": 400, - "lineHeight": "29px" + "lineHeight": "48px" } } } diff --git a/packages/plugin-sass/test/basic/want.sass b/packages/plugin-sass/test/basic/want.sass index 4c96df04..886297ff 100644 --- a/packages/plugin-sass/test/basic/want.sass +++ b/packages/plugin-sass/test/basic/want.sass @@ -21,12 +21,12 @@ $__token-values: ( "ease.circ-in": ( default: (cubic-bezier(0.55, 0, 1, 0.45)), ), - "ease.circ-out": ( - default: (cubic-bezier(0.33, 1, 0.68, 1)), - ), "ease.circ-in-out": ( default: (cubic-bezier(0.85, 0, 0.15, 1)), ), + "ease.circ-out": ( + default: (cubic-bezier(0.33, 1, 0.68, 1)), + ), "ease.cubic-in": ( default: (cubic-bezier(0.32, 0, 0.67, 0)), ), @@ -42,150 +42,167 @@ $__token-values: ( "gradient.g-b": ( default: (#00ff00 0%, #0000ff 100%), ), + "shadow": ( + default: (0 4px 8px 0 #0000001a), + ), + "timing.deliberate": ( + default: (500ms), + ), "timing.instant": ( default: (50ms), ), - "timing.quick": ( - default: (100ms), - ), "timing.moderate": ( default: (250ms), ), - "timing.deliberate": ( - default: (500ms), + "timing.quick": ( + default: (100ms), ), "timing.slow": ( default: (1s), ), - "typography.family.body": ( - default: ("IBM Plex Sans", -system-ui, sans-serif), - ), - "typography.family.heading": ( - default: (Helvetica), - ), - "typography.page-title": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.page-title\")` instead.", - ), - "typography.subheading": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.subheading\")` instead.", - ), - "typography.callout": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.callout\")` instead.", - ), - "typography.body": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.body\")` instead.", - ), - "shadow": ( - default: (0 4px 8px 0 #0000001a), + "transition.circ-in-deliberate": ( + default: (500ms 0ms cubic-bezier(0.55,0,1,0.45)), ), "transition.circ-in-instant": ( default: (50ms 0ms cubic-bezier(0.55,0,1,0.45)), ), - "transition.circ-in-quick": ( - default: (100ms 0ms cubic-bezier(0.55,0,1,0.45)), - ), "transition.circ-in-moderate": ( default: (250ms 0ms cubic-bezier(0.55,0,1,0.45)), ), - "transition.circ-in-deliberate": ( - default: (500ms 0ms cubic-bezier(0.55,0,1,0.45)), - ), - "transition.circ-in-slow": ( - default: (1s 0ms cubic-bezier(0.55,0,1,0.45)), + "transition.circ-in-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.85,0,0.15,1)), ), "transition.circ-in-out-instant": ( default: (50ms 0ms cubic-bezier(0.85,0,0.15,1)), ), - "transition.circ-in-out-quick": ( - default: (100ms 0ms cubic-bezier(0.85,0,0.15,1)), - ), "transition.circ-in-out-moderate": ( default: (250ms 0ms cubic-bezier(0.85,0,0.15,1)), ), - "transition.circ-in-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.85,0,0.15,1)), + "transition.circ-in-out-quick": ( + default: (100ms 0ms cubic-bezier(0.85,0,0.15,1)), ), "transition.circ-in-out-slow": ( default: (1s 0ms cubic-bezier(0.85,0,0.15,1)), ), + "transition.circ-in-quick": ( + default: (100ms 0ms cubic-bezier(0.55,0,1,0.45)), + ), + "transition.circ-in-slow": ( + default: (1s 0ms cubic-bezier(0.55,0,1,0.45)), + ), + "transition.circ-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + ), "transition.circ-out-instant": ( default: (50ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.circ-out-quick": ( - default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), - ), "transition.circ-out-moderate": ( default: (250ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.circ-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + "transition.circ-out-quick": ( + default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), ), "transition.circ-out-slow": ( default: (1s 0ms cubic-bezier(0.33,1,0.68,1)), ), + "transition.cubic-in-deliberate": ( + default: (500ms 0ms cubic-bezier(0.32,0,0.67,0)), + ), "transition.cubic-in-instant": ( default: (50ms 0ms cubic-bezier(0.32,0,0.67,0)), ), - "transition.cubic-in-quick": ( - default: (100ms 0ms cubic-bezier(0.32,0,0.67,0)), - ), "transition.cubic-in-moderate": ( default: (250ms 0ms cubic-bezier(0.32,0,0.67,0)), ), - "transition.cubic-in-deliberate": ( - default: (500ms 0ms cubic-bezier(0.32,0,0.67,0)), - ), - "transition.cubic-in-slow": ( - default: (1s 0ms cubic-bezier(0.32,0,0.67,0)), + "transition.cubic-in-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.65,0,0.35,1)), ), "transition.cubic-in-out-instant": ( default: (50ms 0ms cubic-bezier(0.65,0,0.35,1)), ), - "transition.cubic-in-out-quick": ( - default: (100ms 0ms cubic-bezier(0.65,0,0.35,1)), - ), "transition.cubic-in-out-moderate": ( default: (250ms 0ms cubic-bezier(0.65,0,0.35,1)), ), - "transition.cubic-in-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.65,0,0.35,1)), + "transition.cubic-in-out-quick": ( + default: (100ms 0ms cubic-bezier(0.65,0,0.35,1)), ), "transition.cubic-in-out-slow": ( default: (1s 0ms cubic-bezier(0.65,0,0.35,1)), ), + "transition.cubic-in-quick": ( + default: (100ms 0ms cubic-bezier(0.32,0,0.67,0)), + ), + "transition.cubic-in-slow": ( + default: (1s 0ms cubic-bezier(0.32,0,0.67,0)), + ), + "transition.cubic-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + ), "transition.cubic-out-instant": ( default: (50ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.cubic-out-quick": ( - default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), - ), "transition.cubic-out-moderate": ( default: (250ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.cubic-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + "transition.cubic-out-quick": ( + default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), ), "transition.cubic-out-slow": ( default: (1s 0ms cubic-bezier(0.33,1,0.68,1)), ), + "transition.linear-deliberate": ( + default: (500ms 0ms cubic-bezier(0,0,1,1)), + ), "transition.linear-instant": ( default: (50ms 0ms cubic-bezier(0,0,1,1)), ), - "transition.linear-quick": ( - default: (100ms 0ms cubic-bezier(0,0,1,1)), - ), "transition.linear-moderate": ( default: (250ms 0ms cubic-bezier(0,0,1,1)), ), - "transition.linear-deliberate": ( - default: (500ms 0ms cubic-bezier(0,0,1,1)), + "transition.linear-quick": ( + default: (100ms 0ms cubic-bezier(0,0,1,1)), ), "transition.linear-slow": ( default: (1s 0ms cubic-bezier(0,0,1,1)), ), + "typography.body": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.body\")` instead.", + ), + "typography.callout": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.callout\")` instead.", + ), + "typography.family.body": ( + default: ("IBM Plex Sans", -system-ui, sans-serif), + ), + "typography.family.heading": ( + default: (Helvetica), + ), + "typography.page-title": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.page-title\")` instead.", + ), + "typography.subheading": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.subheading\")` instead.", + ), ) $__token-typography-mixins: ( + "typography.body": ( + default: ( + "font-family": ("IBM Plex Sans", -system-ui, sans-serif), + "font-size": (16px), + "font-weight": (400), + "line-height": (1.5), + ), + ), + "typography.callout": ( + default: ( + "font-family": ("IBM Plex Sans", -system-ui, sans-serif), + "font-size": (18px), + "font-style": (italic), + "font-weight": (300), + "line-height": (1.5), + ), + ), "typography.page-title": ( default: ( "font-family": (Helvetica), @@ -205,23 +222,6 @@ $__token-typography-mixins: ( "text-transform": (uppercase), ), ), - "typography.callout": ( - default: ( - "font-family": ("IBM Plex Sans", -system-ui, sans-serif), - "font-size": (18px), - "font-style": (italic), - "font-weight": (300), - "line-height": (1.5), - ), - ), - "typography.body": ( - default: ( - "font-family": ("IBM Plex Sans", -system-ui, sans-serif), - "font-size": (16px), - "font-weight": (400), - "line-height": (1.5), - ), - ), ) @function token($tokenName, $modeName: default) diff --git a/packages/plugin-sass/test/basic/want.scss b/packages/plugin-sass/test/basic/want.scss index 20102078..8f6a91e5 100644 --- a/packages/plugin-sass/test/basic/want.scss +++ b/packages/plugin-sass/test/basic/want.scss @@ -21,12 +21,12 @@ $__token-values: ( "ease.circ-in": ( default: (cubic-bezier(0.55, 0, 1, 0.45)), ), - "ease.circ-out": ( - default: (cubic-bezier(0.33, 1, 0.68, 1)), - ), "ease.circ-in-out": ( default: (cubic-bezier(0.85, 0, 0.15, 1)), ), + "ease.circ-out": ( + default: (cubic-bezier(0.33, 1, 0.68, 1)), + ), "ease.cubic-in": ( default: (cubic-bezier(0.32, 0, 0.67, 0)), ), @@ -42,150 +42,167 @@ $__token-values: ( "gradient.g-b": ( default: (#00ff00 0%, #0000ff 100%), ), + "shadow": ( + default: (0 4px 8px 0 #0000001a), + ), + "timing.deliberate": ( + default: (500ms), + ), "timing.instant": ( default: (50ms), ), - "timing.quick": ( - default: (100ms), - ), "timing.moderate": ( default: (250ms), ), - "timing.deliberate": ( - default: (500ms), + "timing.quick": ( + default: (100ms), ), "timing.slow": ( default: (1s), ), - "typography.family.body": ( - default: ("IBM Plex Sans", -system-ui, sans-serif), - ), - "typography.family.heading": ( - default: (Helvetica), - ), - "typography.page-title": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.page-title\")` instead.", - ), - "typography.subheading": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.subheading\")` instead.", - ), - "typography.callout": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.callout\")` instead.", - ), - "typography.body": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.body\")` instead.", - ), - "shadow": ( - default: (0 4px 8px 0 #0000001a), + "transition.circ-in-deliberate": ( + default: (500ms 0ms cubic-bezier(0.55,0,1,0.45)), ), "transition.circ-in-instant": ( default: (50ms 0ms cubic-bezier(0.55,0,1,0.45)), ), - "transition.circ-in-quick": ( - default: (100ms 0ms cubic-bezier(0.55,0,1,0.45)), - ), "transition.circ-in-moderate": ( default: (250ms 0ms cubic-bezier(0.55,0,1,0.45)), ), - "transition.circ-in-deliberate": ( - default: (500ms 0ms cubic-bezier(0.55,0,1,0.45)), - ), - "transition.circ-in-slow": ( - default: (1s 0ms cubic-bezier(0.55,0,1,0.45)), + "transition.circ-in-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.85,0,0.15,1)), ), "transition.circ-in-out-instant": ( default: (50ms 0ms cubic-bezier(0.85,0,0.15,1)), ), - "transition.circ-in-out-quick": ( - default: (100ms 0ms cubic-bezier(0.85,0,0.15,1)), - ), "transition.circ-in-out-moderate": ( default: (250ms 0ms cubic-bezier(0.85,0,0.15,1)), ), - "transition.circ-in-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.85,0,0.15,1)), + "transition.circ-in-out-quick": ( + default: (100ms 0ms cubic-bezier(0.85,0,0.15,1)), ), "transition.circ-in-out-slow": ( default: (1s 0ms cubic-bezier(0.85,0,0.15,1)), ), + "transition.circ-in-quick": ( + default: (100ms 0ms cubic-bezier(0.55,0,1,0.45)), + ), + "transition.circ-in-slow": ( + default: (1s 0ms cubic-bezier(0.55,0,1,0.45)), + ), + "transition.circ-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + ), "transition.circ-out-instant": ( default: (50ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.circ-out-quick": ( - default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), - ), "transition.circ-out-moderate": ( default: (250ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.circ-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + "transition.circ-out-quick": ( + default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), ), "transition.circ-out-slow": ( default: (1s 0ms cubic-bezier(0.33,1,0.68,1)), ), + "transition.cubic-in-deliberate": ( + default: (500ms 0ms cubic-bezier(0.32,0,0.67,0)), + ), "transition.cubic-in-instant": ( default: (50ms 0ms cubic-bezier(0.32,0,0.67,0)), ), - "transition.cubic-in-quick": ( - default: (100ms 0ms cubic-bezier(0.32,0,0.67,0)), - ), "transition.cubic-in-moderate": ( default: (250ms 0ms cubic-bezier(0.32,0,0.67,0)), ), - "transition.cubic-in-deliberate": ( - default: (500ms 0ms cubic-bezier(0.32,0,0.67,0)), - ), - "transition.cubic-in-slow": ( - default: (1s 0ms cubic-bezier(0.32,0,0.67,0)), + "transition.cubic-in-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.65,0,0.35,1)), ), "transition.cubic-in-out-instant": ( default: (50ms 0ms cubic-bezier(0.65,0,0.35,1)), ), - "transition.cubic-in-out-quick": ( - default: (100ms 0ms cubic-bezier(0.65,0,0.35,1)), - ), "transition.cubic-in-out-moderate": ( default: (250ms 0ms cubic-bezier(0.65,0,0.35,1)), ), - "transition.cubic-in-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.65,0,0.35,1)), + "transition.cubic-in-out-quick": ( + default: (100ms 0ms cubic-bezier(0.65,0,0.35,1)), ), "transition.cubic-in-out-slow": ( default: (1s 0ms cubic-bezier(0.65,0,0.35,1)), ), + "transition.cubic-in-quick": ( + default: (100ms 0ms cubic-bezier(0.32,0,0.67,0)), + ), + "transition.cubic-in-slow": ( + default: (1s 0ms cubic-bezier(0.32,0,0.67,0)), + ), + "transition.cubic-out-deliberate": ( + default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + ), "transition.cubic-out-instant": ( default: (50ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.cubic-out-quick": ( - default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), - ), "transition.cubic-out-moderate": ( default: (250ms 0ms cubic-bezier(0.33,1,0.68,1)), ), - "transition.cubic-out-deliberate": ( - default: (500ms 0ms cubic-bezier(0.33,1,0.68,1)), + "transition.cubic-out-quick": ( + default: (100ms 0ms cubic-bezier(0.33,1,0.68,1)), ), "transition.cubic-out-slow": ( default: (1s 0ms cubic-bezier(0.33,1,0.68,1)), ), + "transition.linear-deliberate": ( + default: (500ms 0ms cubic-bezier(0,0,1,1)), + ), "transition.linear-instant": ( default: (50ms 0ms cubic-bezier(0,0,1,1)), ), - "transition.linear-quick": ( - default: (100ms 0ms cubic-bezier(0,0,1,1)), - ), "transition.linear-moderate": ( default: (250ms 0ms cubic-bezier(0,0,1,1)), ), - "transition.linear-deliberate": ( - default: (500ms 0ms cubic-bezier(0,0,1,1)), + "transition.linear-quick": ( + default: (100ms 0ms cubic-bezier(0,0,1,1)), ), "transition.linear-slow": ( default: (1s 0ms cubic-bezier(0,0,1,1)), ), + "typography.body": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.body\")` instead.", + ), + "typography.callout": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.callout\")` instead.", + ), + "typography.family.body": ( + default: ("IBM Plex Sans", -system-ui, sans-serif), + ), + "typography.family.heading": ( + default: (Helvetica), + ), + "typography.page-title": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.page-title\")` instead.", + ), + "typography.subheading": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.subheading\")` instead.", + ), ); $__token-typography-mixins: ( + "typography.body": ( + default: ( + "font-family": ("IBM Plex Sans", -system-ui, sans-serif), + "font-size": (16px), + "font-weight": (400), + "line-height": (1.5), + ), + ), + "typography.callout": ( + default: ( + "font-family": ("IBM Plex Sans", -system-ui, sans-serif), + "font-size": (18px), + "font-style": (italic), + "font-weight": (300), + "line-height": (1.5), + ), + ), "typography.page-title": ( default: ( "font-family": (Helvetica), @@ -205,23 +222,6 @@ $__token-typography-mixins: ( "text-transform": (uppercase), ), ), - "typography.callout": ( - default: ( - "font-family": ("IBM Plex Sans", -system-ui, sans-serif), - "font-size": (18px), - "font-style": (italic), - "font-weight": (300), - "line-height": (1.5), - ), - ), - "typography.body": ( - default: ( - "font-family": ("IBM Plex Sans", -system-ui, sans-serif), - "font-size": (16px), - "font-weight": (400), - "line-height": (1.5), - ), - ), ); @function token($tokenName, $modeName: default) { diff --git a/packages/plugin-sass/test/plugin-css/tokens.css b/packages/plugin-sass/test/plugin-css/tokens.css index de622eec..de34e414 100644 --- a/packages/plugin-sass/test/plugin-css/tokens.css +++ b/packages/plugin-sass/test/plugin-css/tokens.css @@ -8,30 +8,30 @@ --ds-border-std: 1px solid #0d0300; --ds-color-green: #00ff00; --ds-gradient-g-b: #00ff00 0%, #0000ff 100%; + --ds-shadow: 0 4px 8px 0 #0000001a; + --ds-transition: 0ms 0ms cubic-bezier(0.4,0,0.6,1); + --ds-typography-body-font-family: var(--ds-typography-family-body); + --ds-typography-body-font-size: 16px; + --ds-typography-body-font-weight: 400; + --ds-typography-body-line-height: 1.5; + --ds-typography-callout-font-family: var(--ds-typography-family-body); + --ds-typography-callout-font-size: 18px; + --ds-typography-callout-font-style: undefined; + --ds-typography-callout-font-weight: 300; + --ds-typography-callout-line-height: 1.5; --ds-typography-family-body: "IBM Plex Sans", -system-ui, sans-serif; --ds-typography-family-heading: Helvetica; --ds-typography-page-title-font-family: var(--ds-typography-family-heading); --ds-typography-page-title-font-size: 48px; --ds-typography-page-title-font-weight: 600; - --ds-typography-page-title-line-height: 1.25; --ds-typography-page-title-letter-spacing: 0.125em; + --ds-typography-page-title-line-height: 1.25; --ds-typography-subheading-font-family: var(--ds-typography-family-heading); --ds-typography-subheading-font-size: 18px; --ds-typography-subheading-font-weight: 500; - --ds-typography-subheading-line-height: 1.375; --ds-typography-subheading-letter-spacing: 0.25em; + --ds-typography-subheading-line-height: 1.375; --ds-typography-subheading-text-transform: uppercase; - --ds-typography-callout-font-family: var(--ds-typography-family-body); - --ds-typography-callout-font-size: 18px; - --ds-typography-callout-font-weight: 300; - --ds-typography-callout-font-style: undefined; - --ds-typography-callout-line-height: 1.5; - --ds-typography-body-font-family: var(--ds-typography-family-body); - --ds-typography-body-font-size: 16px; - --ds-typography-body-font-weight: 400; - --ds-typography-body-line-height: 1.5; - --ds-shadow: 0 4px 8px 0 #0000001a; - --ds-transition: 0ms 0ms cubic-bezier(0.4,0,0.6,1); } @supports (color: color(display-p3 1 1 1)) { diff --git a/packages/plugin-sass/test/plugin-css/want.scss b/packages/plugin-sass/test/plugin-css/want.scss index c9cff7fc..bcbbbbe9 100644 --- a/packages/plugin-sass/test/plugin-css/want.scss +++ b/packages/plugin-sass/test/plugin-css/want.scss @@ -21,6 +21,18 @@ $__token-values: ( "gradient.g-b": ( default: (var(--ds-gradient-g-b)), ), + "shadow": ( + default: (var(--ds-shadow)), + ), + "transition": ( + default: (var(--ds-transition)), + ), + "typography.body": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.body\")` instead.", + ), + "typography.callout": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.callout\")` instead.", + ), "typography.family.body": ( default: (var(--ds-typography-family-body)), ), @@ -33,21 +45,26 @@ $__token-values: ( "typography.subheading": ( "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.subheading\")` instead.", ), - "typography.callout": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.callout\")` instead.", - ), - "typography.body": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"typography.body\")` instead.", - ), - "shadow": ( - default: (var(--ds-shadow)), - ), - "transition": ( - default: (var(--ds-transition)), - ), ); $__token-typography-mixins: ( + "typography.body": ( + default: ( + "font-family": (var(--ds-typography-body-font-family)), + "font-size": (var(--ds-typography-body-font-size)), + "font-weight": (var(--ds-typography-body-font-weight)), + "line-height": (var(--ds-typography-body-line-height)), + ), + ), + "typography.callout": ( + default: ( + "font-family": (var(--ds-typography-callout-font-family)), + "font-size": (var(--ds-typography-callout-font-size)), + "font-style": (var(--ds-typography-callout-font-style)), + "font-weight": (var(--ds-typography-callout-font-weight)), + "line-height": (var(--ds-typography-callout-line-height)), + ), + ), "typography.page-title": ( default: ( "font-family": (var(--ds-typography-page-title-font-family)), @@ -67,23 +84,6 @@ $__token-typography-mixins: ( "text-transform": (var(--ds-typography-subheading-text-transform)), ), ), - "typography.callout": ( - default: ( - "font-family": (var(--ds-typography-callout-font-family)), - "font-size": (var(--ds-typography-callout-font-size)), - "font-style": (var(--ds-typography-callout-font-style)), - "font-weight": (var(--ds-typography-callout-font-weight)), - "line-height": (var(--ds-typography-callout-line-height)), - ), - ), - "typography.body": ( - default: ( - "font-family": (var(--ds-typography-body-font-family)), - "font-size": (var(--ds-typography-body-font-size)), - "font-weight": (var(--ds-typography-body-font-weight)), - "line-height": (var(--ds-typography-body-line-height)), - ), - ), ); @function token($tokenName, $modeName: default) { diff --git a/packages/utils/src/string.test.ts b/packages/utils/src/string.test.ts index eaf79aea..c1a7da0f 100644 --- a/packages/utils/src/string.test.ts +++ b/packages/utils/src/string.test.ts @@ -10,6 +10,8 @@ describe('camelize', () => { describe('kebabinate', () => { test('basic', () => { expect(kebabinate('stringToKebabinate')).toBe('string-to-kebabinate'); + expect(kebabinate('color.ui.contrast.00')).toBe('color-ui-contrast-00'); + expect(kebabinate('color.ui.contrast.05')).toBe('color-ui-contrast-05'); }); }); From bcd149eb50b5260cbd03efc3427b5f2672fbc911 Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 31 Aug 2023 16:37:48 -0600 Subject: [PATCH 3/3] Update examples --- examples/adobe/tokens/index.d.ts | 624 +- examples/adobe/tokens/index.js | 6416 ++-- examples/adobe/tokens/index.scss | 1294 +- examples/adobe/tokens/tokens.css | 1906 +- examples/apple/tokens/index.d.ts | 140 +- examples/apple/tokens/index.js | 2004 +- examples/apple/tokens/index.scss | 378 +- examples/apple/tokens/tokens.css | 84 +- examples/github/tokens/index.d.ts | 90 +- examples/github/tokens/index.js | 11396 +++--- examples/github/tokens/index.scss | 150 +- examples/github/tokens/tokens.css | 402 +- examples/ibm/tokens/index.d.ts | 778 +- examples/ibm/tokens/index.js | 47982 +++++++++++++----------- examples/ibm/tokens/index.scss | 1232 +- examples/ibm/tokens/tokens.css | 870 +- examples/salesforce/tokens/index.d.ts | 698 +- examples/salesforce/tokens/index.js | 8052 ++-- examples/salesforce/tokens/index.scss | 1402 +- examples/salesforce/tokens/tokens.css | 714 +- examples/shopify/tokens/index.d.ts | 104 +- examples/shopify/tokens/index.js | 1296 +- examples/shopify/tokens/index.scss | 140 +- examples/shopify/tokens/tokens.css | 164 +- 24 files changed, 45287 insertions(+), 43029 deletions(-) diff --git a/examples/adobe/tokens/index.d.ts b/examples/adobe/tokens/index.d.ts index b1f8bd13..50131806 100644 --- a/examples/adobe/tokens/index.d.ts +++ b/examples/adobe/tokens/index.d.ts @@ -16,6 +16,80 @@ import { } from '@cobalt-ui/core'; export declare const tokens: { + 'alias.appframe.border-color': ColorToken['$value']; + 'alias.appframe.separator-color': ColorToken['$value']; + 'alias.background-color-hover-overly': ColorToken['$value']; + 'alias.background-color-modal-overlay': ColorToken['$value']; + 'alias.background-color-primary': ColorToken['$value']; + 'alias.background-color-quickactions': ColorToken['$value']; + 'alias.background-color-secondary': ColorToken['$value']; + 'alias.border-color-translucent': ColorToken['$value']; + 'alias.dropshadow-color': ColorToken['$value']; + 'alias.highlight-down': ColorToken['$value']; + 'alias.highlight-hover': ColorToken['$value']; + 'alias.highlight-selected': ColorToken['$value']; + 'alias.highlight-selected-hover': ColorToken['$value']; + 'alias.pasteboard-background-color': ColorToken['$value']; + 'alias.radial-reaction-color': ColorToken['$value']; + 'alias.text-highlight-color': ColorToken['$value']; + 'font.family.clean': FontFamilyToken['$value']; + 'font.family.cleanHan': FontFamilyToken['$value']; + 'font.family.cleanSerif': FontFamilyToken['$value']; + 'font.family.sourceCode': FontFamilyToken['$value']; + 'font.size.50': DimensionToken['$value']; + 'font.size.75': DimensionToken['$value']; + 'font.size.100': DimensionToken['$value']; + 'font.size.200': DimensionToken['$value']; + 'font.size.300': DimensionToken['$value']; + 'font.size.400': DimensionToken['$value']; + 'font.size.500': DimensionToken['$value']; + 'font.size.600': DimensionToken['$value']; + 'font.size.700': DimensionToken['$value']; + 'font.size.800': DimensionToken['$value']; + 'font.size.900': DimensionToken['$value']; + 'font.size.1000': DimensionToken['$value']; + 'font.size.1100': DimensionToken['$value']; + 'font.size.1200': DimensionToken['$value']; + 'font.size.1300': DimensionToken['$value']; + 'global.color.blue.400': ColorToken['$value']; + 'global.color.blue.500': ColorToken['$value']; + 'global.color.blue.600': ColorToken['$value']; + 'global.color.blue.700': ColorToken['$value']; + 'global.color.celery.400': ColorToken['$value']; + 'global.color.celery.500': ColorToken['$value']; + 'global.color.celery.600': ColorToken['$value']; + 'global.color.celery.700': ColorToken['$value']; + 'global.color.chartreuse.400': ColorToken['$value']; + 'global.color.chartreuse.500': ColorToken['$value']; + 'global.color.chartreuse.600': ColorToken['$value']; + 'global.color.chartreuse.700': ColorToken['$value']; + 'global.color.fuchsia.400': ColorToken['$value']; + 'global.color.fuchsia.500': ColorToken['$value']; + 'global.color.fuchsia.600': ColorToken['$value']; + 'global.color.fuchsia.700': ColorToken['$value']; + 'global.color.gray.50': ColorToken['$value']; + 'global.color.gray.75': ColorToken['$value']; + 'global.color.gray.100': ColorToken['$value']; + 'global.color.gray.200': ColorToken['$value']; + 'global.color.gray.300': ColorToken['$value']; + 'global.color.gray.400': ColorToken['$value']; + 'global.color.gray.500': ColorToken['$value']; + 'global.color.gray.600': ColorToken['$value']; + 'global.color.gray.700': ColorToken['$value']; + 'global.color.gray.800': ColorToken['$value']; + 'global.color.gray.900': ColorToken['$value']; + 'global.color.green.400': ColorToken['$value']; + 'global.color.green.500': ColorToken['$value']; + 'global.color.green.600': ColorToken['$value']; + 'global.color.green.700': ColorToken['$value']; + 'global.color.indigo.400': ColorToken['$value']; + 'global.color.indigo.500': ColorToken['$value']; + 'global.color.indigo.600': ColorToken['$value']; + 'global.color.indigo.700': ColorToken['$value']; + 'global.color.magenta.400': ColorToken['$value']; + 'global.color.magenta.500': ColorToken['$value']; + 'global.color.magenta.600': ColorToken['$value']; + 'global.color.magenta.700': ColorToken['$value']; 'global.color.opacity.0': NumberToken['$value']; 'global.color.opacity.4': NumberToken['$value']; 'global.color.opacity.5': NumberToken['$value']; @@ -36,107 +110,107 @@ export declare const tokens: { 'global.color.opacity.80': NumberToken['$value']; 'global.color.opacity.90': NumberToken['$value']; 'global.color.opacity.100': NumberToken['$value']; - 'global.color.celery.400': ColorToken['$value']; - 'global.color.celery.500': ColorToken['$value']; - 'global.color.celery.600': ColorToken['$value']; - 'global.color.celery.700': ColorToken['$value']; - 'global.color.chartreuse.400': ColorToken['$value']; - 'global.color.chartreuse.500': ColorToken['$value']; - 'global.color.chartreuse.600': ColorToken['$value']; - 'global.color.chartreuse.700': ColorToken['$value']; - 'global.color.yellow.400': ColorToken['$value']; - 'global.color.yellow.500': ColorToken['$value']; - 'global.color.yellow.600': ColorToken['$value']; - 'global.color.yellow.700': ColorToken['$value']; - 'global.color.magenta.400': ColorToken['$value']; - 'global.color.magenta.500': ColorToken['$value']; - 'global.color.magenta.600': ColorToken['$value']; - 'global.color.magenta.700': ColorToken['$value']; - 'global.color.fuchsia.400': ColorToken['$value']; - 'global.color.fuchsia.500': ColorToken['$value']; - 'global.color.fuchsia.600': ColorToken['$value']; - 'global.color.fuchsia.700': ColorToken['$value']; + 'global.color.orange.400': ColorToken['$value']; + 'global.color.orange.500': ColorToken['$value']; + 'global.color.orange.600': ColorToken['$value']; + 'global.color.orange.700': ColorToken['$value']; 'global.color.purple.400': ColorToken['$value']; 'global.color.purple.500': ColorToken['$value']; 'global.color.purple.600': ColorToken['$value']; 'global.color.purple.700': ColorToken['$value']; - 'global.color.indigo.400': ColorToken['$value']; - 'global.color.indigo.500': ColorToken['$value']; - 'global.color.indigo.600': ColorToken['$value']; - 'global.color.indigo.700': ColorToken['$value']; - 'global.color.seafoam.400': ColorToken['$value']; - 'global.color.seafoam.500': ColorToken['$value']; - 'global.color.seafoam.600': ColorToken['$value']; - 'global.color.seafoam.700': ColorToken['$value']; 'global.color.red.400': ColorToken['$value']; 'global.color.red.500': ColorToken['$value']; 'global.color.red.600': ColorToken['$value']; 'global.color.red.700': ColorToken['$value']; - 'global.color.orange.400': ColorToken['$value']; - 'global.color.orange.500': ColorToken['$value']; - 'global.color.orange.600': ColorToken['$value']; - 'global.color.orange.700': ColorToken['$value']; - 'global.color.green.400': ColorToken['$value']; - 'global.color.green.500': ColorToken['$value']; - 'global.color.green.600': ColorToken['$value']; - 'global.color.green.700': ColorToken['$value']; - 'global.color.blue.400': ColorToken['$value']; - 'global.color.blue.500': ColorToken['$value']; - 'global.color.blue.600': ColorToken['$value']; - 'global.color.blue.700': ColorToken['$value']; - 'global.color.gray.50': ColorToken['$value']; - 'global.color.gray.75': ColorToken['$value']; - 'global.color.gray.100': ColorToken['$value']; - 'global.color.gray.200': ColorToken['$value']; - 'global.color.gray.300': ColorToken['$value']; - 'global.color.gray.400': ColorToken['$value']; - 'global.color.gray.500': ColorToken['$value']; - 'global.color.gray.600': ColorToken['$value']; - 'global.color.gray.700': ColorToken['$value']; - 'global.color.gray.800': ColorToken['$value']; - 'global.color.gray.900': ColorToken['$value']; - 'alias.background-color-primary': ColorToken['$value']; - 'alias.background-color-secondary': ColorToken['$value']; - 'alias.background-color-modal-overlay': ColorToken['$value']; - 'alias.background-color-hover-overly': ColorToken['$value']; - 'alias.background-color-quickactions': ColorToken['$value']; - 'alias.dropshadow-color': ColorToken['$value']; - 'alias.highlight-hover': ColorToken['$value']; - 'alias.highlight-down': ColorToken['$value']; - 'alias.highlight-selected': ColorToken['$value']; - 'alias.highlight-selected-hover': ColorToken['$value']; - 'alias.text-highlight-color': ColorToken['$value']; - 'alias.border-color-translucent': ColorToken['$value']; - 'alias.radial-reaction-color': ColorToken['$value']; - 'alias.pasteboard-background-color': ColorToken['$value']; - 'alias.appframe.border-color': ColorToken['$value']; - 'alias.appframe.separator-color': ColorToken['$value']; - 'scrollbar.mac.s.track-background-color': ColorToken['$value']; - 'scrollbar.mac.m.track-background-color': ColorToken['$value']; + 'global.color.seafoam.400': ColorToken['$value']; + 'global.color.seafoam.500': ColorToken['$value']; + 'global.color.seafoam.600': ColorToken['$value']; + 'global.color.seafoam.700': ColorToken['$value']; + 'global.color.yellow.400': ColorToken['$value']; + 'global.color.yellow.500': ColorToken['$value']; + 'global.color.yellow.600': ColorToken['$value']; + 'global.color.yellow.700': ColorToken['$value']; 'scrollbar.mac.l.track-background-color': ColorToken['$value']; + 'scrollbar.mac.m.track-background-color': ColorToken['$value']; + 'scrollbar.mac.s.track-background-color': ColorToken['$value']; 'well.background-color': ColorToken['$value']; - 'font.family.clean': FontFamilyToken['$value']; - 'font.family.cleanSerif': FontFamilyToken['$value']; - 'font.family.cleanHan': FontFamilyToken['$value']; - 'font.family.sourceCode': FontFamilyToken['$value']; - 'font.size.50': DimensionToken['$value']; - 'font.size.75': DimensionToken['$value']; - 'font.size.100': DimensionToken['$value']; - 'font.size.200': DimensionToken['$value']; - 'font.size.300': DimensionToken['$value']; - 'font.size.400': DimensionToken['$value']; - 'font.size.500': DimensionToken['$value']; - 'font.size.600': DimensionToken['$value']; - 'font.size.700': DimensionToken['$value']; - 'font.size.800': DimensionToken['$value']; - 'font.size.900': DimensionToken['$value']; - 'font.size.1000': DimensionToken['$value']; - 'font.size.1100': DimensionToken['$value']; - 'font.size.1200': DimensionToken['$value']; - 'font.size.1300': DimensionToken['$value']; }; export declare const meta: { + 'alias.appframe.border-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.appframe.border-color'] } }; + 'alias.appframe.separator-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.appframe.separator-color'] } }; + 'alias.background-color-hover-overly': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-hover-overly'] } }; + 'alias.background-color-modal-overlay': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-modal-overlay'] } }; + 'alias.background-color-primary': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-primary'] } }; + 'alias.background-color-quickactions': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-quickactions'] } }; + 'alias.background-color-secondary': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-secondary'] } }; + 'alias.border-color-translucent': ParsedColorToken & { $extensions: { mode: typeof modes['alias.border-color-translucent'] } }; + 'alias.dropshadow-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.dropshadow-color'] } }; + 'alias.highlight-down': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-down'] } }; + 'alias.highlight-hover': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-hover'] } }; + 'alias.highlight-selected': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-selected'] } }; + 'alias.highlight-selected-hover': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-selected-hover'] } }; + 'alias.pasteboard-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.pasteboard-background-color'] } }; + 'alias.radial-reaction-color': ParsedColorToken; + 'alias.text-highlight-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.text-highlight-color'] } }; + 'font.family.clean': ParsedFontFamilyToken; + 'font.family.cleanHan': ParsedFontFamilyToken; + 'font.family.cleanSerif': ParsedFontFamilyToken; + 'font.family.sourceCode': ParsedFontFamilyToken; + 'font.size.50': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.50'] } }; + 'font.size.75': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.75'] } }; + 'font.size.100': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.100'] } }; + 'font.size.200': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.200'] } }; + 'font.size.300': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.300'] } }; + 'font.size.400': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.400'] } }; + 'font.size.500': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.500'] } }; + 'font.size.600': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.600'] } }; + 'font.size.700': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.700'] } }; + 'font.size.800': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.800'] } }; + 'font.size.900': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.900'] } }; + 'font.size.1000': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1000'] } }; + 'font.size.1100': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1100'] } }; + 'font.size.1200': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1200'] } }; + 'font.size.1300': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1300'] } }; + 'global.color.blue.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.400'] } }; + 'global.color.blue.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.500'] } }; + 'global.color.blue.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.600'] } }; + 'global.color.blue.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.700'] } }; + 'global.color.celery.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.400'] } }; + 'global.color.celery.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.500'] } }; + 'global.color.celery.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.600'] } }; + 'global.color.celery.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.700'] } }; + 'global.color.chartreuse.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.400'] } }; + 'global.color.chartreuse.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.500'] } }; + 'global.color.chartreuse.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.600'] } }; + 'global.color.chartreuse.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.700'] } }; + 'global.color.fuchsia.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.400'] } }; + 'global.color.fuchsia.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.500'] } }; + 'global.color.fuchsia.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.600'] } }; + 'global.color.fuchsia.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.700'] } }; + 'global.color.gray.50': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.50'] } }; + 'global.color.gray.75': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.75'] } }; + 'global.color.gray.100': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.100'] } }; + 'global.color.gray.200': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.200'] } }; + 'global.color.gray.300': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.300'] } }; + 'global.color.gray.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.400'] } }; + 'global.color.gray.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.500'] } }; + 'global.color.gray.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.600'] } }; + 'global.color.gray.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.700'] } }; + 'global.color.gray.800': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.800'] } }; + 'global.color.gray.900': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.900'] } }; + 'global.color.green.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.400'] } }; + 'global.color.green.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.500'] } }; + 'global.color.green.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.600'] } }; + 'global.color.green.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.700'] } }; + 'global.color.indigo.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.400'] } }; + 'global.color.indigo.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.500'] } }; + 'global.color.indigo.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.600'] } }; + 'global.color.indigo.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.700'] } }; + 'global.color.magenta.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.400'] } }; + 'global.color.magenta.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.500'] } }; + 'global.color.magenta.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.600'] } }; + 'global.color.magenta.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.700'] } }; 'global.color.opacity.0': ParsedNumberToken; 'global.color.opacity.4': ParsedNumberToken; 'global.color.opacity.5': ParsedNumberToken; @@ -157,108 +231,34 @@ export declare const meta: { 'global.color.opacity.80': ParsedNumberToken; 'global.color.opacity.90': ParsedNumberToken; 'global.color.opacity.100': ParsedNumberToken; - 'global.color.celery.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.400'] } }; - 'global.color.celery.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.500'] } }; - 'global.color.celery.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.600'] } }; - 'global.color.celery.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.celery.700'] } }; - 'global.color.chartreuse.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.400'] } }; - 'global.color.chartreuse.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.500'] } }; - 'global.color.chartreuse.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.600'] } }; - 'global.color.chartreuse.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.chartreuse.700'] } }; - 'global.color.yellow.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.400'] } }; - 'global.color.yellow.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.500'] } }; - 'global.color.yellow.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.600'] } }; - 'global.color.yellow.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.700'] } }; - 'global.color.magenta.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.400'] } }; - 'global.color.magenta.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.500'] } }; - 'global.color.magenta.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.600'] } }; - 'global.color.magenta.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.magenta.700'] } }; - 'global.color.fuchsia.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.400'] } }; - 'global.color.fuchsia.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.500'] } }; - 'global.color.fuchsia.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.600'] } }; - 'global.color.fuchsia.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.fuchsia.700'] } }; + 'global.color.orange.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.400'] } }; + 'global.color.orange.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.500'] } }; + 'global.color.orange.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.600'] } }; + 'global.color.orange.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.700'] } }; 'global.color.purple.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.purple.400'] } }; 'global.color.purple.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.purple.500'] } }; 'global.color.purple.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.purple.600'] } }; 'global.color.purple.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.purple.700'] } }; - 'global.color.indigo.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.400'] } }; - 'global.color.indigo.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.500'] } }; - 'global.color.indigo.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.600'] } }; - 'global.color.indigo.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.indigo.700'] } }; - 'global.color.seafoam.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.400'] } }; - 'global.color.seafoam.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.500'] } }; - 'global.color.seafoam.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.600'] } }; - 'global.color.seafoam.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.700'] } }; 'global.color.red.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.red.400'] } }; 'global.color.red.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.red.500'] } }; 'global.color.red.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.red.600'] } }; 'global.color.red.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.red.700'] } }; - 'global.color.orange.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.400'] } }; - 'global.color.orange.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.500'] } }; - 'global.color.orange.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.600'] } }; - 'global.color.orange.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.orange.700'] } }; - 'global.color.green.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.400'] } }; - 'global.color.green.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.500'] } }; - 'global.color.green.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.600'] } }; - 'global.color.green.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.green.700'] } }; - 'global.color.blue.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.400'] } }; - 'global.color.blue.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.500'] } }; - 'global.color.blue.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.600'] } }; - 'global.color.blue.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.blue.700'] } }; - 'global.color.gray.50': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.50'] } }; - 'global.color.gray.75': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.75'] } }; - 'global.color.gray.100': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.100'] } }; - 'global.color.gray.200': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.200'] } }; - 'global.color.gray.300': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.300'] } }; - 'global.color.gray.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.400'] } }; - 'global.color.gray.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.500'] } }; - 'global.color.gray.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.600'] } }; - 'global.color.gray.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.700'] } }; - 'global.color.gray.800': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.800'] } }; - 'global.color.gray.900': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.gray.900'] } }; - 'alias.background-color-primary': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-primary'] } }; - 'alias.background-color-secondary': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-secondary'] } }; - 'alias.background-color-modal-overlay': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-modal-overlay'] } }; - 'alias.background-color-hover-overly': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-hover-overly'] } }; - 'alias.background-color-quickactions': ParsedColorToken & { $extensions: { mode: typeof modes['alias.background-color-quickactions'] } }; - 'alias.dropshadow-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.dropshadow-color'] } }; - 'alias.highlight-hover': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-hover'] } }; - 'alias.highlight-down': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-down'] } }; - 'alias.highlight-selected': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-selected'] } }; - 'alias.highlight-selected-hover': ParsedColorToken & { $extensions: { mode: typeof modes['alias.highlight-selected-hover'] } }; - 'alias.text-highlight-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.text-highlight-color'] } }; - 'alias.border-color-translucent': ParsedColorToken & { $extensions: { mode: typeof modes['alias.border-color-translucent'] } }; - 'alias.radial-reaction-color': ParsedColorToken; - 'alias.pasteboard-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.pasteboard-background-color'] } }; - 'alias.appframe.border-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.appframe.border-color'] } }; - 'alias.appframe.separator-color': ParsedColorToken & { $extensions: { mode: typeof modes['alias.appframe.separator-color'] } }; - 'scrollbar.mac.s.track-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['scrollbar.mac.s.track-background-color'] } }; - 'scrollbar.mac.m.track-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['scrollbar.mac.m.track-background-color'] } }; + 'global.color.seafoam.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.400'] } }; + 'global.color.seafoam.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.500'] } }; + 'global.color.seafoam.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.600'] } }; + 'global.color.seafoam.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.seafoam.700'] } }; + 'global.color.yellow.400': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.400'] } }; + 'global.color.yellow.500': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.500'] } }; + 'global.color.yellow.600': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.600'] } }; + 'global.color.yellow.700': ParsedColorToken & { $extensions: { mode: typeof modes['global.color.yellow.700'] } }; 'scrollbar.mac.l.track-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['scrollbar.mac.l.track-background-color'] } }; + 'scrollbar.mac.m.track-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['scrollbar.mac.m.track-background-color'] } }; + 'scrollbar.mac.s.track-background-color': ParsedColorToken & { $extensions: { mode: typeof modes['scrollbar.mac.s.track-background-color'] } }; 'well.background-color': ParsedColorToken & { $extensions: { mode: typeof modes['well.background-color'] } }; - 'font.family.clean': ParsedFontFamilyToken; - 'font.family.cleanSerif': ParsedFontFamilyToken; - 'font.family.cleanHan': ParsedFontFamilyToken; - 'font.family.sourceCode': ParsedFontFamilyToken; - 'font.size.50': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.50'] } }; - 'font.size.75': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.75'] } }; - 'font.size.100': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.100'] } }; - 'font.size.200': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.200'] } }; - 'font.size.300': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.300'] } }; - 'font.size.400': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.400'] } }; - 'font.size.500': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.500'] } }; - 'font.size.600': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.600'] } }; - 'font.size.700': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.700'] } }; - 'font.size.800': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.800'] } }; - 'font.size.900': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.900'] } }; - 'font.size.1000': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1000'] } }; - 'font.size.1100': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1100'] } }; - 'font.size.1200': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1200'] } }; - 'font.size.1300': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.size.1300'] } }; }; export declare const modes: { - 'global.color.celery.400': { + 'alias.appframe.border-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -266,7 +266,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.celery.500': { + 'alias.appframe.separator-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -274,7 +274,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.celery.600': { + 'alias.background-color-hover-overly': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -282,7 +282,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.celery.700': { + 'alias.background-color-modal-overlay': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -290,7 +290,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.chartreuse.400': { + 'alias.background-color-primary': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -298,7 +298,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.chartreuse.500': { + 'alias.background-color-quickactions': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -306,7 +306,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.chartreuse.600': { + 'alias.background-color-secondary': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -314,7 +314,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.chartreuse.700': { + 'alias.border-color-translucent': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -322,7 +322,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.yellow.400': { + 'alias.dropshadow-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -330,7 +330,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.yellow.500': { + 'alias.highlight-down': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -338,7 +338,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.yellow.600': { + 'alias.highlight-hover': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -346,7 +346,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.yellow.700': { + 'alias.highlight-selected': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -354,7 +354,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.magenta.400': { + 'alias.highlight-selected-hover': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -362,7 +362,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.magenta.500': { + 'alias.pasteboard-background-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -370,7 +370,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.magenta.600': { + 'alias.text-highlight-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -378,7 +378,67 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.magenta.700': { + 'font.size.50': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.75': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.100': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.200': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.300': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.400': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.500': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.600': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.700': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.800': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.900': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.1000': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.1100': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.1200': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'font.size.1300': { + desktop: DimensionToken['$value']; + mobile: DimensionToken['$value']; + }; + 'global.color.blue.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -386,7 +446,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.fuchsia.400': { + 'global.color.blue.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -394,7 +454,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.fuchsia.500': { + 'global.color.blue.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -402,7 +462,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.fuchsia.600': { + 'global.color.blue.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -410,7 +470,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.fuchsia.700': { + 'global.color.celery.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -418,7 +478,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.purple.400': { + 'global.color.celery.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -426,7 +486,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.purple.500': { + 'global.color.celery.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -434,7 +494,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.purple.600': { + 'global.color.celery.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -442,7 +502,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.purple.700': { + 'global.color.chartreuse.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -450,7 +510,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.indigo.400': { + 'global.color.chartreuse.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -458,7 +518,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.indigo.500': { + 'global.color.chartreuse.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -466,7 +526,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.indigo.600': { + 'global.color.chartreuse.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -474,7 +534,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.indigo.700': { + 'global.color.fuchsia.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -482,7 +542,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.seafoam.400': { + 'global.color.fuchsia.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -490,7 +550,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.seafoam.500': { + 'global.color.fuchsia.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -498,7 +558,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.seafoam.600': { + 'global.color.fuchsia.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -506,7 +566,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.seafoam.700': { + 'global.color.gray.50': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -514,7 +574,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.red.400': { + 'global.color.gray.75': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -522,7 +582,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.red.500': { + 'global.color.gray.100': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -530,7 +590,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.red.600': { + 'global.color.gray.200': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -538,7 +598,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.red.700': { + 'global.color.gray.300': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -546,7 +606,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.orange.400': { + 'global.color.gray.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -554,7 +614,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.orange.500': { + 'global.color.gray.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -562,7 +622,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.orange.600': { + 'global.color.gray.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -570,7 +630,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.orange.700': { + 'global.color.gray.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -578,7 +638,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.green.400': { + 'global.color.gray.800': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -586,7 +646,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.green.500': { + 'global.color.gray.900': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -594,7 +654,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.green.600': { + 'global.color.green.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -602,7 +662,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.green.700': { + 'global.color.green.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -610,7 +670,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.blue.400': { + 'global.color.green.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -618,7 +678,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.blue.500': { + 'global.color.green.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -626,7 +686,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.blue.600': { + 'global.color.indigo.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -634,7 +694,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.blue.700': { + 'global.color.indigo.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -642,7 +702,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.50': { + 'global.color.indigo.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -650,7 +710,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.75': { + 'global.color.indigo.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -658,7 +718,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.100': { + 'global.color.magenta.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -666,7 +726,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.200': { + 'global.color.magenta.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -674,7 +734,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.300': { + 'global.color.magenta.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -682,7 +742,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.400': { + 'global.color.magenta.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -690,7 +750,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.500': { + 'global.color.orange.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -698,7 +758,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.600': { + 'global.color.orange.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -706,7 +766,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.700': { + 'global.color.orange.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -714,7 +774,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.800': { + 'global.color.orange.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -722,7 +782,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'global.color.gray.900': { + 'global.color.purple.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -730,7 +790,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.background-color-primary': { + 'global.color.purple.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -738,7 +798,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.background-color-secondary': { + 'global.color.purple.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -746,7 +806,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.background-color-modal-overlay': { + 'global.color.purple.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -754,7 +814,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.background-color-hover-overly': { + 'global.color.red.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -762,7 +822,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.background-color-quickactions': { + 'global.color.red.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -770,7 +830,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.dropshadow-color': { + 'global.color.red.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -778,7 +838,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.highlight-hover': { + 'global.color.red.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -786,7 +846,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.highlight-down': { + 'global.color.seafoam.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -794,7 +854,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.highlight-selected': { + 'global.color.seafoam.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -802,7 +862,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.highlight-selected-hover': { + 'global.color.seafoam.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -810,7 +870,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.text-highlight-color': { + 'global.color.seafoam.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -818,7 +878,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.border-color-translucent': { + 'global.color.yellow.400': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -826,7 +886,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.pasteboard-background-color': { + 'global.color.yellow.500': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -834,7 +894,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.appframe.border-color': { + 'global.color.yellow.600': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -842,7 +902,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'alias.appframe.separator-color': { + 'global.color.yellow.700': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -850,7 +910,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'scrollbar.mac.s.track-background-color': { + 'scrollbar.mac.l.track-background-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -864,7 +924,7 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'scrollbar.mac.l.track-background-color': { + 'scrollbar.mac.s.track-background-color': { dark: ColorToken['$value']; darkest: ColorToken['$value']; light: ColorToken['$value']; @@ -878,66 +938,6 @@ export declare const modes: { middark: ColorToken['$value']; midlight: ColorToken['$value']; }; - 'font.size.50': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.75': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.100': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.200': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.300': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.400': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.500': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.600': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.700': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.800': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.900': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.1000': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.1100': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.1200': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; - 'font.size.1300': { - desktop: DimensionToken['$value']; - mobile: DimensionToken['$value']; - }; }; export declare function token(tokenID: K, modeName?: never): typeof tokens[K]; diff --git a/examples/adobe/tokens/index.js b/examples/adobe/tokens/index.js index f4d7ca18..aeb018d4 100644 --- a/examples/adobe/tokens/index.js +++ b/examples/adobe/tokens/index.js @@ -5,6 +5,80 @@ */ export const tokens = { + 'alias.appframe.border-color': '#d5d5d5', + 'alias.appframe.separator-color': '#d5d5d5', + 'alias.background-color-hover-overly': '#0000000a', + 'alias.background-color-modal-overlay': '#00000066', + 'alias.background-color-primary': '#ffffff', + 'alias.background-color-quickactions': '#f8f8f8e6', + 'alias.background-color-secondary': '#f8f8f8', + 'alias.border-color-translucent': '#0000001a', + 'alias.dropshadow-color': '#00000026', + 'alias.highlight-down': '#0000001a', + 'alias.highlight-hover': '#0000000f', + 'alias.highlight-selected': '#0265dc1a', + 'alias.highlight-selected-hover': '#0265dc33', + 'alias.pasteboard-background-color': '#d5d5d5', + 'alias.radial-reaction-color': '#22222299', + 'alias.text-highlight-color': '#0265dc33', + 'font.family.clean': ['Adobe Clean'], + 'font.family.cleanHan': ['Adobe Clean Han'], + 'font.family.cleanSerif': ['Adobe Clean Serif'], + 'font.family.sourceCode': ['Source Code Pro'], + 'font.size.50': '11px', + 'font.size.75': '12px', + 'font.size.100': '14px', + 'font.size.200': '16px', + 'font.size.300': '18px', + 'font.size.400': '20px', + 'font.size.500': '22px', + 'font.size.600': '25px', + 'font.size.700': '28px', + 'font.size.800': '32px', + 'font.size.900': '36px', + 'font.size.1000': '40px', + 'font.size.1100': '45px', + 'font.size.1200': '50px', + 'font.size.1300': '60px', + 'global.color.blue.400': '#147af3', + 'global.color.blue.500': '#0265dc', + 'global.color.blue.600': '#0054b6', + 'global.color.blue.700': '#004491', + 'global.color.celery.400': '#27bb36', + 'global.color.celery.500': '#07a721', + 'global.color.celery.600': '#009112', + 'global.color.celery.700': '#007c0f', + 'global.color.chartreuse.400': '#98c50a', + 'global.color.chartreuse.500': '#87b103', + 'global.color.chartreuse.600': '#769c00', + 'global.color.chartreuse.700': '#678800', + 'global.color.fuchsia.400': '#cd3ace', + 'global.color.fuchsia.500': '#b622b7', + 'global.color.fuchsia.600': '#9d039e', + 'global.color.fuchsia.700': '#800081', + 'global.color.gray.50': '#ffffff', + 'global.color.gray.75': '#fdfdfd', + 'global.color.gray.100': '#f8f8f8', + 'global.color.gray.200': '#e6e6e6', + 'global.color.gray.300': '#d5d5d5', + 'global.color.gray.400': '#b1b1b1', + 'global.color.gray.500': '#909090', + 'global.color.gray.600': '#6d6d6d', + 'global.color.gray.700': '#464646', + 'global.color.gray.800': '#222222', + 'global.color.gray.900': '#000000', + 'global.color.green.400': '#008f5d', + 'global.color.green.500': '#007a4d', + 'global.color.green.600': '#00653e', + 'global.color.green.700': '#005132', + 'global.color.indigo.400': '#686df4', + 'global.color.indigo.500': '#5258e4', + 'global.color.indigo.600': '#4046ca', + 'global.color.indigo.700': '#3236a8', + 'global.color.magenta.400': '#de3d82', + 'global.color.magenta.500': '#c82269', + 'global.color.magenta.600': '#ad0955', + 'global.color.magenta.700': '#8e0045', 'global.color.opacity.0': 0, 'global.color.opacity.4': 0.04, 'global.color.opacity.5': 0.05, @@ -25,2226 +99,1727 @@ export const tokens = { 'global.color.opacity.80': 0.8, 'global.color.opacity.90': 0.9, 'global.color.opacity.100': 1, - 'global.color.celery.400': '#27bb36', - 'global.color.celery.500': '#07a721', - 'global.color.celery.600': '#009112', - 'global.color.celery.700': '#007c0f', - 'global.color.chartreuse.400': '#98c50a', - 'global.color.chartreuse.500': '#87b103', - 'global.color.chartreuse.600': '#769c00', - 'global.color.chartreuse.700': '#678800', - 'global.color.yellow.400': '#e8c600', - 'global.color.yellow.500': '#d7b300', - 'global.color.yellow.600': '#c49f00', - 'global.color.yellow.700': '#b08c00', - 'global.color.magenta.400': '#de3d82', - 'global.color.magenta.500': '#c82269', - 'global.color.magenta.600': '#ad0955', - 'global.color.magenta.700': '#8e0045', - 'global.color.fuchsia.400': '#cd3ace', - 'global.color.fuchsia.500': '#b622b7', - 'global.color.fuchsia.600': '#9d039e', - 'global.color.fuchsia.700': '#800081', + 'global.color.orange.400': '#f68511', + 'global.color.orange.500': '#e46f00', + 'global.color.orange.600': '#cb5d00', + 'global.color.orange.700': '#b14c00', 'global.color.purple.400': '#9d57f4', 'global.color.purple.500': '#893de7', 'global.color.purple.600': '#7326d3', 'global.color.purple.700': '#5d13b7', - 'global.color.indigo.400': '#686df4', - 'global.color.indigo.500': '#5258e4', - 'global.color.indigo.600': '#4046ca', - 'global.color.indigo.700': '#3236a8', - 'global.color.seafoam.400': '#00a19a', - 'global.color.seafoam.500': '#008c87', - 'global.color.seafoam.600': '#007772', - 'global.color.seafoam.700': '#00635f', 'global.color.red.400': '#ea3829', 'global.color.red.500': '#d31510', 'global.color.red.600': '#b40000', 'global.color.red.700': '#930000', - 'global.color.orange.400': '#f68511', - 'global.color.orange.500': '#e46f00', - 'global.color.orange.600': '#cb5d00', - 'global.color.orange.700': '#b14c00', - 'global.color.green.400': '#008f5d', - 'global.color.green.500': '#007a4d', - 'global.color.green.600': '#00653e', - 'global.color.green.700': '#005132', - 'global.color.blue.400': '#147af3', - 'global.color.blue.500': '#0265dc', - 'global.color.blue.600': '#0054b6', - 'global.color.blue.700': '#004491', - 'global.color.gray.50': '#ffffff', - 'global.color.gray.75': '#fdfdfd', - 'global.color.gray.100': '#f8f8f8', - 'global.color.gray.200': '#e6e6e6', - 'global.color.gray.300': '#d5d5d5', - 'global.color.gray.400': '#b1b1b1', - 'global.color.gray.500': '#909090', - 'global.color.gray.600': '#6d6d6d', - 'global.color.gray.700': '#464646', - 'global.color.gray.800': '#222222', - 'global.color.gray.900': '#000000', - 'alias.background-color-primary': '#ffffff', - 'alias.background-color-secondary': '#f8f8f8', - 'alias.background-color-modal-overlay': '#00000066', - 'alias.background-color-hover-overly': '#0000000a', - 'alias.background-color-quickactions': '#f8f8f8e6', - 'alias.dropshadow-color': '#00000026', - 'alias.highlight-hover': '#0000000f', - 'alias.highlight-down': '#0000001a', - 'alias.highlight-selected': '#0265dc1a', - 'alias.highlight-selected-hover': '#0265dc33', - 'alias.text-highlight-color': '#0265dc33', - 'alias.border-color-translucent': '#0000001a', - 'alias.radial-reaction-color': '#22222299', - 'alias.pasteboard-background-color': '#d5d5d5', - 'alias.appframe.border-color': '#d5d5d5', - 'alias.appframe.separator-color': '#d5d5d5', - 'scrollbar.mac.s.track-background-color': '#fdfdfd', - 'scrollbar.mac.m.track-background-color': '#fdfdfd', + 'global.color.seafoam.400': '#00a19a', + 'global.color.seafoam.500': '#008c87', + 'global.color.seafoam.600': '#007772', + 'global.color.seafoam.700': '#00635f', + 'global.color.yellow.400': '#e8c600', + 'global.color.yellow.500': '#d7b300', + 'global.color.yellow.600': '#c49f00', + 'global.color.yellow.700': '#b08c00', 'scrollbar.mac.l.track-background-color': '#fdfdfd', + 'scrollbar.mac.m.track-background-color': '#fdfdfd', + 'scrollbar.mac.s.track-background-color': '#fdfdfd', 'well.background-color': '#22222205', - 'font.family.clean': ['Adobe Clean'], - 'font.family.cleanSerif': ['Adobe Clean Serif'], - 'font.family.cleanHan': ['Adobe Clean Han'], - 'font.family.sourceCode': ['Source Code Pro'], - 'font.size.50': '11px', - 'font.size.75': '12px', - 'font.size.100': '14px', - 'font.size.200': '16px', - 'font.size.300': '18px', - 'font.size.400': '20px', - 'font.size.500': '22px', - 'font.size.600': '25px', - 'font.size.700': '28px', - 'font.size.800': '32px', - 'font.size.900': '36px', - 'font.size.1000': '40px', - 'font.size.1100': '45px', - 'font.size.1200': '50px', - 'font.size.1300': '60px', }; export const meta = { - 'global.color.opacity.0': { - '_original': { - '$value': 0, - }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + 'alias.appframe.border-color': { + _original: { + $type: 'color', + $value: '{global.color.gray.300}', + $extensions: { + mode: { + dark: '{global.color.gray.50}', + darkest: '{global.color.gray.50}', + light: '{global.color.gray.300}', + lightest: '{global.color.gray.300}', + middark: '{global.color.gray.50}', + midlight: '{global.color.gray.300}', + }, }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.0', - '$type': 'number', - '$value': 0, - }, - 'global.color.opacity.4': { - '_original': { - '$value': 0.04, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias.appframe', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.4', - '$type': 'number', - '$value': 0.04, - }, - 'global.color.opacity.5': { - '_original': { - '$value': 0.05, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.appframe.border-color', + $type: 'color', + $value: '#d5d5d5', + $extensions: { + mode: { + dark: '#ffffff', + darkest: '#ffffff', + light: '#d5d5d5', + lightest: '#d5d5d5', + middark: '#ffffff', + midlight: '#d5d5d5', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.5', - '$type': 'number', - '$value': 0.05, }, - 'global.color.opacity.6': { - '_original': { - '$value': 0.06, + 'alias.appframe.separator-color': { + _original: { + $type: 'color', + $value: '{global.color.gray.300}', + $extensions: { + mode: { + dark: '{global.color.gray.50}', + darkest: '{global.color.gray.50}', + light: '{global.color.gray.300}', + lightest: '{global.color.gray.300}', + middark: '{global.color.gray.50}', + midlight: '{global.color.gray.300}', + }, + }, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias.appframe', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.6', - '$type': 'number', - '$value': 0.06, - }, - 'global.color.opacity.7': { - '_original': { - '$value': 0.07, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.appframe.separator-color', + $type: 'color', + $value: '#d5d5d5', + $extensions: { + mode: { + dark: '#ffffff', + darkest: '#ffffff', + light: '#d5d5d5', + lightest: '#d5d5d5', + middark: '#ffffff', + midlight: '#d5d5d5', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.7', - '$type': 'number', - '$value': 0.07, }, - 'global.color.opacity.8': { - '_original': { - '$value': 0.08, + 'alias.background-color-hover-overly': { + _original: { + $type: 'color', + $value: 'rgba(0, 0, 0, 0.04)', + $extensions: { + mode: { + dark: 'rgba(255, 255, 255, 0.06)', + darkest: 'rgba(255, 255, 255, 0.08)', + light: 'rgba(0, 0, 0, 0.04)', + lightest: 'rgba(0, 0, 0, 0.04)', + middark: 'rgba(255, 255, 255, 0.05)', + midlight: 'rgba(0, 0, 0, 0.04)', + }, + }, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.8', - '$type': 'number', - '$value': 0.08, - }, - 'global.color.opacity.10': { - '_original': { - '$value': 0.1, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.background-color-hover-overly', + $type: 'color', + $value: '#0000000a', + $extensions: { + mode: { + dark: '#ffffff0f', + darkest: '#ffffff14', + light: '#0000000a', + lightest: '#0000000a', + middark: '#ffffff0d', + midlight: '#0000000a', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.10', - '$type': 'number', - '$value': 0.1, }, - 'global.color.opacity.15': { - '_original': { - '$value': 0.15, - }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + 'alias.background-color-modal-overlay': { + _original: { + $type: 'color', + $value: 'rgba(0, 0, 0, 0.4)', + $extensions: { + mode: { + dark: 'rgba(0, 0, 0, 0.5)', + darkest: 'rgba(0, 0, 0, 0.6)', + light: 'rgba(0, 0, 0, 0.4)', + lightest: 'rgba(0, 0, 0, 0.4)', + middark: 'rgba(0, 0, 0, 0.4)', + midlight: 'rgba(0, 0, 0, 0.4)', + }, }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.15', - '$type': 'number', - '$value': 0.15, - }, - 'global.color.opacity.20': { - '_original': { - '$value': 0.2, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.20', - '$type': 'number', - '$value': 0.2, - }, - 'global.color.opacity.25': { - '_original': { - '$value': 0.25, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.background-color-modal-overlay', + $type: 'color', + $value: '#00000066', + $extensions: { + mode: { + dark: '#00000080', + darkest: '#00000099', + light: '#00000066', + lightest: '#00000066', + middark: '#00000066', + midlight: '#00000066', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.25', - '$type': 'number', - '$value': 0.25, }, - 'global.color.opacity.30': { - '_original': { - '$value': 0.3, - }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + 'alias.background-color-primary': { + _original: { + $type: 'color', + $value: '{global.color.gray.50}', + $extensions: { + mode: { + dark: '{global.color.gray.100}', + darkest: '{global.color.gray.100}', + light: '{global.color.gray.50}', + lightest: '{global.color.gray.50}', + middark: '{global.color.gray.100}', + midlight: '{global.color.gray.50}', + }, }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.30', - '$type': 'number', - '$value': 0.3, - }, - 'global.color.opacity.40': { - '_original': { - '$value': 0.4, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.40', - '$type': 'number', - '$value': 0.4, - }, - 'global.color.opacity.42': { - '_original': { - '$value': 0.42, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.background-color-primary', + $type: 'color', + $value: '#ffffff', + $extensions: { + mode: { + dark: '#f8f8f8', + darkest: '#f8f8f8', + light: '#ffffff', + lightest: '#ffffff', + middark: '#f8f8f8', + midlight: '#ffffff', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.42', - '$type': 'number', - '$value': 0.42, }, - 'global.color.opacity.50': { - '_original': { - '$value': 0.5, - }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + 'alias.background-color-quickactions': { + _original: { + $type: 'color', + $value: 'rgba(248, 248, 248, 0.9)', + $extensions: { + mode: { + dark: 'rgba(50, 50, 50, 0.9)', + darkest: 'rgba(29, 29, 29, 0.9)', + light: 'rgba(248, 248, 248, 0.9)', + lightest: 'rgba(255, 255, 255, 0.9)', + middark: 'rgba(75, 75, 75, 0.9)', + midlight: 'rgba(219, 219, 219, 0.9)', + }, }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.50', - '$type': 'number', - '$value': 0.5, - }, - 'global.color.opacity.55': { - '_original': { - '$value': 0.55, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.55', - '$type': 'number', - '$value': 0.55, - }, - 'global.color.opacity.60': { - '_original': { - '$value': 0.6, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.background-color-quickactions', + $type: 'color', + $value: '#f8f8f8e6', + $extensions: { + mode: { + dark: '#323232e6', + darkest: '#1d1d1de6', + light: '#f8f8f8e6', + lightest: '#ffffffe6', + middark: '#4b4b4be6', + midlight: '#dbdbdbe6', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.60', - '$type': 'number', - '$value': 0.6, }, - 'global.color.opacity.70': { - '_original': { - '$value': 0.7, + 'alias.background-color-secondary': { + _original: { + $type: 'color', + $value: '{global.color.gray.100}', + $extensions: { + mode: { + dark: '{global.color.gray.75}', + darkest: '{global.color.gray.75}', + light: '{global.color.gray.100}', + lightest: '{global.color.gray.100}', + middark: '{global.color.gray.75}', + midlight: '{global.color.gray.100}', + }, + }, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.70', - '$type': 'number', - '$value': 0.7, - }, - 'global.color.opacity.80': { - '_original': { - '$value': 0.8, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.background-color-secondary', + $type: 'color', + $value: '#f8f8f8', + $extensions: { + mode: { + dark: '#fdfdfd', + darkest: '#fdfdfd', + light: '#f8f8f8', + lightest: '#f8f8f8', + middark: '#fdfdfd', + midlight: '#f8f8f8', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.80', - '$type': 'number', - '$value': 0.8, }, - 'global.color.opacity.90': { - '_original': { - '$value': 0.9, + 'alias.border-color-translucent': { + _original: { + $type: 'color', + $value: 'rgba(0, 0, 0, 0.1)', + $extensions: { + mode: { + dark: 'rgba(255, 255, 255, 0.1)', + darkest: 'rgba(255, 255, 255, 0.1)', + light: 'rgba(0, 0, 0, 0.1)', + lightest: 'rgba(0, 0, 0, 0.1)', + middark: 'rgba(255, 255, 255, 0.1)', + midlight: 'rgba(0, 0, 0, 0.1)', + }, + }, }, - '_group': { - id: 'global.color.opacity', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', - }, - id: 'global.color.opacity.90', - '$type': 'number', - '$value': 0.9, - }, - 'global.color.opacity.100': { - '_original': { - '$value': 1, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - '_group': { - id: 'global.color.opacity', - '$extensions': { - requiredModes: [], + id: 'alias.border-color-translucent', + $type: 'color', + $value: '#0000001a', + $extensions: { + mode: { + dark: '#ffffff1a', + darkest: '#ffffff1a', + light: '#0000001a', + lightest: '#0000001a', + middark: '#ffffff1a', + midlight: '#0000001a', }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'number', }, - id: 'global.color.opacity.100', - '$type': 'number', - '$value': 1, }, - 'global.color.celery.400': { - '_original': { - '$value': 'rgb(39, 187, 54)', - '$extensions': { + 'alias.dropshadow-color': { + _original: { + $value: 'rgba(0, 0, 0, 0.15)', + $type: 'color', + $extensions: { mode: { - dark: 'rgb(34, 184, 51)', - darkest: 'rgb(13, 171, 37)', - light: 'rgb(39, 187, 54)', - lightest: 'rgb(48, 193, 61)', - middark: 'rgb(45, 190, 58)', - midlight: 'rgb(7, 167, 33)', + dark: 'rgba(0, 0, 0, 0.5)', + darkest: 'rgba(0, 0, 0, 0.8)', + light: 'rgba(0, 0, 0, 0.15)', + lightest: 'rgba(0, 0, 0, 0.15)', + middark: 'rgba(0, 0, 0, 0.3)', + midlight: 'rgba(0, 0, 0, 0.15)', }, }, }, - '_group': { - id: 'global.color.celery', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.celery.400', - '$type': 'color', - '$value': '#27bb36', - '$extensions': { + id: 'alias.dropshadow-color', + $type: 'color', + $value: '#00000026', + $extensions: { mode: { - dark: '#22b833', - darkest: '#0dab25', - light: '#27bb36', - lightest: '#30c13d', - middark: '#2dbe3a', - midlight: '#07a721', + dark: '#00000080', + darkest: '#000000cc', + light: '#00000026', + lightest: '#00000026', + middark: '#0000004d', + midlight: '#00000026', }, }, }, - 'global.color.celery.500': { - '_original': { - '$value': 'rgb(7, 167, 33)', - '$extensions': { + 'alias.highlight-down': { + _original: { + $type: 'color', + $value: 'rgba(0, 0, 0, 0.1)', + $extensions: { mode: { - dark: 'rgb(68, 202, 73)', - darkest: 'rgb(45, 191, 58)', - light: 'rgb(7, 167, 33)', - lightest: 'rgb(15, 172, 38)', - middark: 'rgb(78, 207, 80)', - midlight: 'rgb(0, 148, 19)', + dark: 'rgba(255, 255, 255, 0.1)', + darkest: 'rgba(255, 255, 255, 0.15)', + light: 'rgba(0, 0, 0, 0.1)', + lightest: 'rgba(0, 0, 0, 0.1)', + middark: 'rgba(255, 255, 255, 0.1)', + midlight: 'rgba(0, 0, 0, 0.1)', }, }, }, - '_group': { - id: 'global.color.celery', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.celery.500', - '$type': 'color', - '$value': '#07a721', - '$extensions': { + id: 'alias.highlight-down', + $type: 'color', + $value: '#0000001a', + $extensions: { mode: { - dark: '#44ca49', - darkest: '#2dbf3a', - light: '#07a721', - lightest: '#0fac26', - middark: '#4ecf50', - midlight: '#009413', + dark: '#ffffff1a', + darkest: '#ffffff26', + light: '#0000001a', + lightest: '#0000001a', + middark: '#ffffff1a', + midlight: '#0000001a', }, }, }, - 'global.color.celery.600': { - '_original': { - '$value': 'rgb(0, 145, 18)', - '$extensions': { + 'alias.highlight-hover': { + _original: { + $type: 'color', + $value: 'rgba(0, 0, 0, 0.06)', + $extensions: { mode: { - dark: 'rgb(105, 220, 99)', - darkest: 'rgb(80, 208, 82)', - light: 'rgb(0, 145, 18)', - lightest: 'rgb(0, 150, 20)', - middark: 'rgb(112, 223, 104)', - midlight: 'rgb(0, 127, 15)', + dark: 'rgba(255, 255, 255, 0.07)', + darkest: 'rgba(255, 255, 255, 0.08)', + light: 'rgba(0, 0, 0, 0.06)', + lightest: 'rgba(0, 0, 0, 0.06)', + middark: 'rgba(255, 255, 255, 0.06)', + midlight: 'rgba(0, 0, 0, 0.06)', }, }, }, - '_group': { - id: 'global.color.celery', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.celery.600', - '$type': 'color', - '$value': '#009112', - '$extensions': { + id: 'alias.highlight-hover', + $type: 'color', + $value: '#0000000f', + $extensions: { mode: { - dark: '#69dc63', - darkest: '#50d052', - light: '#009112', - lightest: '#009614', - middark: '#70df68', - midlight: '#007f0f', - }, - }, - }, - 'global.color.celery.700': { - '_original': { - '$value': 'rgb(0, 124, 15)', - '$extensions': { + dark: '#ffffff12', + darkest: '#ffffff14', + light: '#0000000f', + lightest: '#0000000f', + middark: '#ffffff0f', + midlight: '#0000000f', + }, + }, + }, + 'alias.highlight-selected': { + _original: { + $type: 'color', + $value: 'rgba(2, 101, 220, 0.1)', + $extensions: { mode: { - dark: 'rgb(142, 235, 127)', - darkest: 'rgb(115, 224, 107)', - light: 'rgb(0, 124, 15)', - lightest: 'rgb(0, 128, 15)', - middark: 'rgb(146, 237, 130)', - midlight: 'rgb(0, 107, 15)', + dark: 'rgba(84, 163, 246, 0.15)', + darkest: 'rgba(64, 150, 243, 0.2)', + light: 'rgba(2, 101, 220, 0.1)', + lightest: 'rgba(4, 105, 227, 0.1)', + middark: 'rgba(94, 170, 247, 0.1)', + midlight: 'rgba(0, 87, 190, 0.1)', }, }, }, - '_group': { - id: 'global.color.celery', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.celery.700', - '$type': 'color', - '$value': '#007c0f', - '$extensions': { + id: 'alias.highlight-selected', + $type: 'color', + $value: '#0265dc1a', + $extensions: { mode: { - dark: '#8eeb7f', - darkest: '#73e06b', - light: '#007c0f', - lightest: '#00800f', - middark: '#92ed82', - midlight: '#006b0f', + dark: '#54a3f626', + darkest: '#4096f333', + light: '#0265dc1a', + lightest: '#0469e31a', + middark: '#5eaaf71a', + midlight: '#0057be1a', }, }, }, - 'global.color.chartreuse.400': { - '_original': { - '$value': 'rgb(152, 197, 10)', - '$extensions': { + 'alias.highlight-selected-hover': { + _original: { + $type: 'color', + $value: 'rgba(2, 101, 220, 0.2)', + $extensions: { mode: { - dark: 'rgb(148, 192, 8)', - darkest: 'rgb(138, 180, 3)', - light: 'rgb(152, 197, 10)', - lightest: 'rgb(157, 203, 13)', - middark: 'rgb(153, 197, 10)', - midlight: 'rgb(134, 175, 2)', + dark: 'rgba(84, 163, 246, 0.25)', + darkest: 'rgba(64, 150, 243, 0.3)', + light: 'rgba(2, 101, 220, 0.2)', + lightest: 'rgba(4, 105, 227, 0.2)', + middark: 'rgba(94, 170, 247, 0.2)', + midlight: 'rgba(0, 87, 190, 0.2)', }, }, }, - '_group': { - id: 'global.color.chartreuse', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.chartreuse.400', - '$type': 'color', - '$value': '#98c50a', - '$extensions': { + id: 'alias.highlight-selected-hover', + $type: 'color', + $value: '#0265dc33', + $extensions: { mode: { - dark: '#94c008', - darkest: '#8ab403', - light: '#98c50a', - lightest: '#9dcb0d', - middark: '#99c50a', - midlight: '#86af02', + dark: '#54a3f640', + darkest: '#4096f34d', + light: '#0265dc33', + lightest: '#0469e333', + middark: '#5eaaf733', + midlight: '#0057be33', }, }, }, - 'global.color.chartreuse.500': { - '_original': { - '$value': 'rgb(135, 177, 3)', - '$extensions': { + 'alias.pasteboard-background-color': { + _original: { + $type: 'color', + $value: '{global.color.gray.300}', + $extensions: { mode: { - dark: 'rgb(166, 211, 18)', - darkest: 'rgb(154, 198, 11)', - light: 'rgb(135, 177, 3)', - lightest: 'rgb(139, 182, 4)', - middark: 'rgb(169, 215, 21)', - midlight: 'rgb(119, 157, 0)', + dark: '{global.color.gray.50}', + darkest: '{global.color.gray.50}', + light: '{global.color.gray.300}', + lightest: '{global.color.gray.300}', + middark: '{global.color.gray.50}', + midlight: '{global.color.gray.300}', }, }, }, - '_group': { - id: 'global.color.chartreuse', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.chartreuse.500', - '$type': 'color', - '$value': '#87b103', - '$extensions': { + id: 'alias.pasteboard-background-color', + $type: 'color', + $value: '#d5d5d5', + $extensions: { mode: { - dark: '#a6d312', - darkest: '#9ac60b', - light: '#87b103', - lightest: '#8bb604', - middark: '#a9d715', - midlight: '#779d00', + dark: '#ffffff', + darkest: '#ffffff', + light: '#d5d5d5', + lightest: '#d5d5d5', + middark: '#ffffff', + midlight: '#d5d5d5', }, }, }, - 'global.color.chartreuse.600': { - '_original': { - '$extensions': { - mode: { - dark: 'rgb(184, 229, 37)', - darkest: 'rgb(170, 216, 22)', - light: 'rgb(118, 156, 0)', - lightest: 'rgb(122, 162, 0)', - middark: 'rgb(186, 232, 40)', - midlight: 'rgb(104, 138, 0)', + 'alias.radial-reaction-color': { + _original: { + $type: 'color', + $value: 'rgba(34, 34, 34, 0.6)', + default: { + $extensions: { + mode: { + dark: 'rgba(235, 235, 235, 0.6)', + darkest: 'rgba(235, 235, 235, 0.6)', + light: 'rgba(34, 34, 34, 0.6)', + lightest: 'rgba(34, 34, 34, 0.6)', + middark: 'rgba(236, 236, 236, 0.6)', + midlight: 'rgba(33, 33, 33, 0.6)', + }, }, }, - '$value': 'rgb(118, 156, 0)', }, - '_group': { - id: 'global.color.chartreuse', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.chartreuse.600', - '$type': 'color', - '$extensions': { - mode: { - dark: '#b8e525', - darkest: '#aad816', - light: '#769c00', - lightest: '#7aa200', - middark: '#bae828', - midlight: '#688a00', + id: 'alias.radial-reaction-color', + $type: 'color', + $value: '#22222299', + default: { + $extensions: { + mode: { + dark: 'rgba(235, 235, 235, 0.6)', + darkest: 'rgba(235, 235, 235, 0.6)', + light: 'rgba(34, 34, 34, 0.6)', + lightest: 'rgba(34, 34, 34, 0.6)', + middark: 'rgba(236, 236, 236, 0.6)', + midlight: 'rgba(33, 33, 33, 0.6)', + }, }, }, - '$value': '#769c00', }, - 'global.color.chartreuse.700': { - '_original': { - '$extensions': { + 'alias.text-highlight-color': { + _original: { + $type: 'color', + $value: 'rgba(2, 101, 220, 0.2)', + $extensions: { mode: { - dark: 'rgb(205, 245, 71)', - darkest: 'rgb(187, 232, 41)', - light: 'rgb(103, 136, 0)', - lightest: 'rgb(106, 141, 0)', - middark: 'rgb(206, 246, 75)', - midlight: 'rgb(90, 119, 0)', + dark: 'rgba(84, 163, 246, 0.25)', + darkest: 'rgba(64, 150, 243, 0.3)', + light: 'rgba(2, 101, 220, 0.2)', + lightest: 'rgba(4, 105, 227, 0.2)', + middark: 'rgba(94, 170, 247, 0.2)', + midlight: 'rgba(0, 87, 190, 0.2)', }, }, - '$value': 'rgb(103, 136, 0)', }, - '_group': { - id: 'global.color.chartreuse', - '$extensions': { + _group: { + id: 'alias', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', }, - id: 'global.color.chartreuse.700', - '$type': 'color', - '$extensions': { + id: 'alias.text-highlight-color', + $type: 'color', + $value: '#0265dc33', + $extensions: { mode: { - dark: '#cdf547', - darkest: '#bbe829', - light: '#678800', - lightest: '#6a8d00', - middark: '#cef64b', - midlight: '#5a7700', + dark: '#54a3f640', + darkest: '#4096f34d', + light: '#0265dc33', + lightest: '#0469e333', + middark: '#5eaaf733', + midlight: '#0057be33', }, }, - '$value': '#678800', }, - 'global.color.yellow.400': { - '_original': { - '$extensions': { - mode: { - dark: 'rgb(228, 194, 0)', - darkest: 'rgb(216, 181, 0)', - light: 'rgb(232, 198, 0)', - lightest: 'rgb(238, 205, 0)', - middark: 'rgb(232, 197, 0)', - midlight: 'rgb(211, 175, 0)', - }, - }, - '$value': 'rgb(232, 198, 0)', + 'font.family.clean': { + _original: { + $value: 'Adobe Clean', }, - '_group': { - id: 'global.color.yellow', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'fontFamily', }, - id: 'global.color.yellow.400', - '$type': 'color', - '$extensions': { - mode: { - dark: '#e4c200', - darkest: '#d8b500', - light: '#e8c600', - lightest: '#eecd00', - middark: '#e8c500', - midlight: '#d3af00', + id: 'font.family.clean', + $type: 'fontFamily', + $value: ['Adobe Clean'], + }, + 'font.family.cleanHan': { + _original: { + $value: 'Adobe Clean Han', + }, + _group: { + id: 'font.family', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'fontFamily', }, - '$value': '#e8c600', + id: 'font.family.cleanHan', + $type: 'fontFamily', + $value: ['Adobe Clean Han'], }, - 'global.color.yellow.500': { - '_original': { - '$extensions': { - mode: { - dark: 'rgb(244, 213, 0)', - darkest: 'rgb(233, 199, 0)', - light: 'rgb(215, 179, 0)', - lightest: 'rgb(221, 185, 0)', - middark: 'rgb(246, 215, 2)', - midlight: 'rgb(194, 157, 0)', - }, - }, - '$value': 'rgb(215, 179, 0)', + 'font.family.cleanSerif': { + _original: { + $value: 'Adobe Clean Serif', }, - '_group': { - id: 'global.color.yellow', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'fontFamily', }, - id: 'global.color.yellow.500', - '$type': 'color', - '$extensions': { - mode: { - dark: '#f4d500', - darkest: '#e9c700', - light: '#d7b300', - lightest: '#ddb900', - middark: '#f6d702', - midlight: '#c29d00', + id: 'font.family.cleanSerif', + $type: 'fontFamily', + $value: ['Adobe Clean Serif'], + }, + 'font.family.sourceCode': { + _original: { + $value: 'Source Code Pro', + }, + _group: { + id: 'font.family', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'fontFamily', }, - '$value': '#d7b300', + id: 'font.family.sourceCode', + $type: 'fontFamily', + $value: ['Source Code Pro'], }, - 'global.color.yellow.600': { - '_original': { - '$extensions': { + 'font.size.50': { + _original: { + $value: '11px', + $extensions: { mode: { - dark: 'rgb(249, 232, 92)', - darkest: 'rgb(247, 216, 4)', - light: 'rgb(196, 159, 0)', - lightest: 'rgb(201, 164, 0)', - middark: 'rgb(249, 234, 99)', - midlight: 'rgb(176, 140, 0)', + desktop: '11px', + mobile: '13px', }, }, - '$value': 'rgb(196, 159, 0)', }, - '_group': { - id: 'global.color.yellow', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.yellow.600', - '$type': 'color', - '$extensions': { + id: 'font.size.50', + $type: 'dimension', + $value: '11px', + $extensions: { mode: { - dark: '#f9e85c', - darkest: '#f7d804', - light: '#c49f00', - lightest: '#c9a400', - middark: '#f9ea63', - midlight: '#b08c00', + desktop: '11px', + mobile: '13px', }, }, - '$value': '#c49f00', }, - 'global.color.yellow.700': { - '_original': { - '$extensions': { + 'font.size.75': { + _original: { + $value: '12px', + $extensions: { mode: { - dark: 'rgb(252, 246, 187)', - darkest: 'rgb(249, 233, 97)', - light: 'rgb(176, 140, 0)', - lightest: 'rgb(181, 144, 0)', - middark: 'rgb(253, 246, 191)', - midlight: 'rgb(157, 122, 0)', + desktop: '12px', + mobile: '13px', }, }, - '$value': 'rgb(176, 140, 0)', }, - '_group': { - id: 'global.color.yellow', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.yellow.700', - '$type': 'color', - '$extensions': { + id: 'font.size.75', + $type: 'dimension', + $value: '12px', + $extensions: { mode: { - dark: '#fcf6bb', - darkest: '#f9e961', - light: '#b08c00', - lightest: '#b59000', - middark: '#fdf6bf', - midlight: '#9d7a00', + desktop: '12px', + mobile: '13px', }, }, - '$value': '#b08c00', }, - 'global.color.magenta.400': { - '_original': { - '$extensions': { + 'font.size.100': { + _original: { + $value: '14px', + $extensions: { mode: { - dark: 'rgb(222, 61, 130)', - darkest: 'rgb(209, 43, 114)', - light: 'rgb(222, 61, 130)', - lightest: 'rgb(226, 68, 135)', - middark: 'rgb(231, 75, 141)', - midlight: 'rgb(204, 39, 110)', + desktop: '14px', + mobile: '17px', }, }, - '$value': 'rgb(222, 61, 130)', }, - '_group': { - id: 'global.color.magenta', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.magenta.400', - '$type': 'color', - '$extensions': { + id: 'font.size.100', + $type: 'dimension', + $value: '14px', + $extensions: { mode: { - dark: '#de3d82', - darkest: '#d12b72', - light: '#de3d82', - lightest: '#e24487', - middark: '#e74b8d', - midlight: '#cc276e', + desktop: '14px', + mobile: '17px', }, }, - '$value': '#de3d82', }, - 'global.color.magenta.500': { - '_original': { - '$extensions': { + 'font.size.200': { + _original: { + $value: '16px', + $extensions: { mode: { - dark: 'rgb(237, 87, 149)', - darkest: 'rgb(227, 69, 137)', - light: 'rgb(200, 34, 105)', - lightest: 'rgb(205, 40, 111)', - middark: 'rgb(242, 99, 157)', - midlight: 'rgb(179, 15, 88)', + desktop: '16px', + mobile: '19px', }, }, - '$value': 'rgb(200, 34, 105)', }, - '_group': { - id: 'global.color.magenta', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.magenta.500', - '$type': 'color', - '$extensions': { + id: 'font.size.200', + $type: 'dimension', + $value: '16px', + $extensions: { mode: { - dark: '#ed5795', - darkest: '#e34589', - light: '#c82269', - lightest: '#cd286f', - middark: '#f2639d', - midlight: '#b30f58', + desktop: '16px', + mobile: '19px', }, }, - '$value': '#c82269', }, - 'global.color.magenta.600': { - '_original': { - '$extensions': { + 'font.size.300': { + _original: { + $value: '18px', + $extensions: { mode: { - dark: 'rgb(249, 114, 167)', - darkest: 'rgb(241, 97, 156)', - light: 'rgb(173, 9, 85)', - lightest: 'rgb(179, 15, 89)', - middark: 'rgb(252, 123, 173)', - midlight: 'rgb(149, 0, 72)', + desktop: '18px', + mobile: '22px', }, }, - '$value': 'rgb(173, 9, 85)', }, - '_group': { - id: 'global.color.magenta', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.magenta.600', - '$type': 'color', - '$extensions': { + id: 'font.size.300', + $type: 'dimension', + $value: '18px', + $extensions: { mode: { - dark: '#f972a7', - darkest: '#f1619c', - light: '#ad0955', - lightest: '#b30f59', - middark: '#fc7bad', - midlight: '#950048', + desktop: '18px', + mobile: '22px', }, }, - '$value': '#ad0955', }, - 'global.color.magenta.700': { - '_original': { - '$extensions': { + 'font.size.400': { + _original: { + $value: '20px', + $extensions: { mode: { - dark: 'rgb(255, 143, 185)', - darkest: 'rgb(252, 124, 173)', - light: 'rgb(142, 0, 69)', - lightest: 'rgb(149, 0, 72)', - middark: 'rgb(255, 150, 189)', - midlight: 'rgb(116, 0, 57)', + desktop: '20px', + mobile: '24px', }, }, - '$value': 'rgb(142, 0, 69)', }, - '_group': { - id: 'global.color.magenta', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.magenta.700', - '$type': 'color', - '$extensions': { + id: 'font.size.400', + $type: 'dimension', + $value: '20px', + $extensions: { mode: { - dark: '#ff8fb9', - darkest: '#fc7cad', - light: '#8e0045', - lightest: '#950048', - middark: '#ff96bd', - midlight: '#740039', + desktop: '20px', + mobile: '24px', }, }, - '$value': '#8e0045', }, - 'global.color.fuchsia.400': { - '_original': { - '$extensions': { + 'font.size.500': { + _original: { + $value: '22px', + $extensions: { mode: { - dark: 'rgb(205, 57, 206)', - darkest: 'rgb(191, 43, 191)', - light: 'rgb(205, 58, 206)', - lightest: 'rgb(211, 63, 212)', - middark: 'rgb(216, 70, 217)', - midlight: 'rgb(186, 38, 186)', + desktop: '22px', + mobile: '27px', }, }, - '$value': 'rgb(205, 58, 206)', }, - '_group': { - id: 'global.color.fuchsia', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.fuchsia.400', - '$type': 'color', - '$extensions': { + id: 'font.size.500', + $type: 'dimension', + $value: '22px', + $extensions: { mode: { - dark: '#cd39ce', - darkest: '#bf2bbf', - light: '#cd3ace', - lightest: '#d33fd4', - middark: '#d846d9', - midlight: '#ba26ba', + desktop: '22px', + mobile: '27px', }, }, - '$value': '#cd3ace', }, - 'global.color.fuchsia.500': { - '_original': { - '$extensions': { + 'font.size.600': { + _original: { + $value: '25px', + $extensions: { mode: { - dark: 'rgb(223, 81, 224)', - darkest: 'rgb(211, 65, 213)', - light: 'rgb(182, 34, 183)', - lightest: 'rgb(188, 39, 187)', - middark: 'rgb(229, 93, 230)', - midlight: 'rgb(163, 9, 163)', + desktop: '25px', + mobile: '31px', }, }, - '$value': 'rgb(182, 34, 183)', }, - '_group': { - id: 'global.color.fuchsia', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.fuchsia.500', - '$type': 'color', - '$extensions': { + id: 'font.size.600', + $type: 'dimension', + $value: '25px', + $extensions: { mode: { - dark: '#df51e0', - darkest: '#d341d5', - light: '#b622b7', - lightest: '#bc27bb', - middark: '#e55de6', - midlight: '#a309a3', + desktop: '25px', + mobile: '31px', }, }, - '$value': '#b622b7', }, - 'global.color.fuchsia.600': { - '_original': { - '$extensions': { + 'font.size.700': { + _original: { + $value: '28px', + $extensions: { mode: { - dark: 'rgb(235, 110, 236)', - darkest: 'rgb(228, 91, 229)', - light: 'rgb(157, 3, 158)', - lightest: 'rgb(163, 10, 163)', - middark: 'rgb(239, 120, 238)', - midlight: 'rgb(134, 0, 135)', + desktop: '28px', + mobile: '34px', }, }, - '$value': 'rgb(157, 3, 158)', }, - '_group': { - id: 'global.color.fuchsia', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.fuchsia.600', - '$type': 'color', - '$extensions': { + id: 'font.size.700', + $type: 'dimension', + $value: '28px', + $extensions: { mode: { - dark: '#eb6eec', - darkest: '#e45be5', - light: '#9d039e', - lightest: '#a30aa3', - middark: '#ef78ee', - midlight: '#860087', + desktop: '28px', + mobile: '34px', }, }, - '$value': '#9d039e', }, - 'global.color.fuchsia.700': { - '_original': { - '$extensions': { + 'font.size.800': { + _original: { + $value: '32px', + $extensions: { mode: { - dark: 'rgb(244, 140, 242)', - darkest: 'rgb(239, 120, 238)', - light: 'rgb(128, 0, 129)', - lightest: 'rgb(135, 0, 136)', - middark: 'rgb(246, 147, 243)', - midlight: 'rgb(104, 4, 104)', + desktop: '32px', + mobile: '39px', }, }, - '$value': 'rgb(128, 0, 129)', }, - '_group': { - id: 'global.color.fuchsia', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.fuchsia.700', - '$type': 'color', - '$extensions': { + id: 'font.size.800', + $type: 'dimension', + $value: '32px', + $extensions: { mode: { - dark: '#f48cf2', - darkest: '#ef78ee', - light: '#800081', - lightest: '#870088', - middark: '#f693f3', - midlight: '#680468', + desktop: '32px', + mobile: '39px', }, }, - '$value': '#800081', }, - 'global.color.purple.400': { - '_original': { - '$extensions': { + 'font.size.900': { + _original: { + $value: '36px', + $extensions: { mode: { - dark: 'rgb(157, 87, 243)', - darkest: 'rgb(145, 70, 236)', - light: 'rgb(157, 87, 244)', - lightest: 'rgb(161, 93, 246)', - middark: 'rgb(166, 100, 247)', - midlight: 'rgb(141, 66, 233)', + desktop: '36px', + mobile: '44px', }, }, - '$value': 'rgb(157, 87, 244)', }, - '_group': { - id: 'global.color.purple', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.purple.400', - '$type': 'color', - '$extensions': { + id: 'font.size.900', + $type: 'dimension', + $value: '36px', + $extensions: { mode: { - dark: '#9d57f3', - darkest: '#9146ec', - light: '#9d57f4', - lightest: '#a15df6', - middark: '#a664f7', - midlight: '#8d42e9', + desktop: '36px', + mobile: '44px', }, }, - '$value': '#9d57f4', }, - 'global.color.purple.500': { - '_original': { - '$extensions': { + 'font.size.1000': { + _original: { + $value: '40px', + $extensions: { mode: { - dark: 'rgb(172, 111, 249)', - darkest: 'rgb(162, 94, 246)', - light: 'rgb(137, 61, 231)', - lightest: 'rgb(142, 67, 234)', - middark: 'rgb(179, 121, 250)', - midlight: 'rgb(120, 42, 216)', + desktop: '40px', + mobile: '49px', }, }, - '$value': 'rgb(137, 61, 231)', }, - '_group': { - id: 'global.color.purple', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.purple.500', - '$type': 'color', - '$extensions': { + id: 'font.size.1000', + $type: 'dimension', + $value: '40px', + $extensions: { mode: { - dark: '#ac6ff9', - darkest: '#a25ef6', - light: '#893de7', - lightest: '#8e43ea', - middark: '#b379fa', - midlight: '#782ad8', + desktop: '40px', + mobile: '49px', }, }, - '$value': '#893de7', }, - 'global.color.purple.600': { - '_original': { - '$extensions': { + 'font.size.1100': { + _original: { + $value: '45px', + $extensions: { mode: { - dark: 'rgb(187, 135, 251)', - darkest: 'rgb(178, 119, 250)', - light: 'rgb(115, 38, 211)', - lightest: 'rgb(120, 43, 216)', - middark: 'rgb(192, 143, 252)', - midlight: 'rgb(97, 22, 190)', + desktop: '45px', + mobile: '55px', }, }, - '$value': 'rgb(115, 38, 211)', }, - '_group': { - id: 'global.color.purple', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.purple.600', - '$type': 'color', - '$extensions': { + id: 'font.size.1100', + $type: 'dimension', + $value: '45px', + $extensions: { mode: { - dark: '#bb87fb', - darkest: '#b277fa', - light: '#7326d3', - lightest: '#782bd8', - middark: '#c08ffc', - midlight: '#6116be', + desktop: '45px', + mobile: '55px', }, }, - '$value': '#7326d3', }, - 'global.color.purple.700': { - '_original': { - '$extensions': { + 'font.size.1200': { + _original: { + $value: '50px', + $extensions: { mode: { - dark: 'rgb(202, 159, 252)', - darkest: 'rgb(192, 143, 252)', - light: 'rgb(93, 19, 183)', - lightest: 'rgb(98, 23, 190)', - middark: 'rgb(205, 165, 253)', - midlight: 'rgb(74, 12, 153)', + desktop: '50px', + mobile: '62px', }, }, - '$value': 'rgb(93, 19, 183)', }, - '_group': { - id: 'global.color.purple', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.purple.700', - '$type': 'color', - '$extensions': { + id: 'font.size.1200', + $type: 'dimension', + $value: '50px', + $extensions: { mode: { - dark: '#ca9ffc', - darkest: '#c08ffc', - light: '#5d13b7', - lightest: '#6217be', - middark: '#cda5fd', - midlight: '#4a0c99', + desktop: '50px', + mobile: '62px', }, }, - '$value': '#5d13b7', }, - 'global.color.indigo.400': { - '_original': { - '$value': 'rgb(104, 109, 244)', - '$extensions': { + 'font.size.1300': { + _original: { + $value: '60px', + $extensions: { mode: { - dark: 'rgb(104, 109, 244)', - darkest: 'rgb(90, 96, 235)', - light: 'rgb(104, 109, 244)', - lightest: 'rgb(109, 115, 246)', - middark: 'rgb(115, 120, 248)', - midlight: 'rgb(86, 92, 231)', + desktop: '60px', + mobile: '70px', }, }, }, - '_group': { - id: 'global.color.indigo', - '$extensions': { - requiredModes: [], + _group: { + id: 'font.size', + $extensions: { + requiredModes: ['desktop', 'mobile'], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'dimension', }, - id: 'global.color.indigo.400', - '$type': 'color', - '$value': '#686df4', - '$extensions': { + id: 'font.size.1300', + $type: 'dimension', + $value: '60px', + $extensions: { mode: { - dark: '#686df4', - darkest: '#5a60eb', - light: '#686df4', - lightest: '#6d73f6', - middark: '#7378f8', - midlight: '#565ce7', + desktop: '60px', + mobile: '70px', }, }, }, - 'global.color.indigo.500': { - '_original': { - '$value': 'rgb(82, 88, 228)', - '$extensions': { + 'global.color.blue.400': { + _original: { + $value: 'rgb(20, 122, 243)', + $extensions: { mode: { - dark: 'rgb(124, 129, 251)', - darkest: 'rgb(110, 115, 246)', - light: 'rgb(82, 88, 228)', - lightest: 'rgb(87, 93, 232)', - middark: 'rgb(133, 138, 253)', - midlight: 'rgb(68, 73, 208)', + dark: 'rgb(52, 143, 244)', + darkest: 'rgb(29, 128, 245)', + light: 'rgb(20, 122, 243)', + lightest: 'rgb(27, 127, 245)', + middark: 'rgb(66, 152, 244)', + midlight: 'rgb(4, 104, 225)', }, }, }, - '_group': { - id: 'global.color.indigo', - '$extensions': { + _group: { + id: 'global.color.blue', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.indigo.500', - '$type': 'color', - '$value': '#5258e4', - '$extensions': { + id: 'global.color.blue.400', + $type: 'color', + $value: '#147af3', + $extensions: { mode: { - dark: '#7c81fb', - darkest: '#6e73f6', - light: '#5258e4', - lightest: '#575de8', - middark: '#858afd', - midlight: '#4449d0', + dark: '#348ff4', + darkest: '#1d80f5', + light: '#147af3', + lightest: '#1b7ff5', + middark: '#4298f4', + midlight: '#0468e1', }, }, }, - 'global.color.indigo.600': { - '_original': { - '$value': 'rgb(64, 70, 202)', - '$extensions': { + 'global.color.blue.500': { + _original: { + $value: 'rgb(2, 101, 220)', + $extensions: { mode: { - dark: 'rgb(145, 149, 255)', - darkest: 'rgb(132, 136, 253)', - light: 'rgb(64, 70, 202)', - lightest: 'rgb(68, 74, 208)', - middark: 'rgb(152, 157, 255)', - midlight: 'rgb(52, 57, 176)', + dark: 'rgb(84, 163, 246)', + darkest: 'rgb(64, 150, 243)', + light: 'rgb(2, 101, 220)', + lightest: 'rgb(4, 105, 227)', + middark: 'rgb(94, 170, 247)', + midlight: 'rgb(0, 87, 190)', }, }, }, - '_group': { - id: 'global.color.indigo', - '$extensions': { + _group: { + id: 'global.color.blue', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.indigo.600', - '$type': 'color', - '$value': '#4046ca', - '$extensions': { + id: 'global.color.blue.500', + $type: 'color', + $value: '#0265dc', + $extensions: { mode: { - dark: '#9195ff', - darkest: '#8488fd', - light: '#4046ca', - lightest: '#444ad0', - middark: '#989dff', - midlight: '#3439b0', + dark: '#54a3f6', + darkest: '#4096f3', + light: '#0265dc', + lightest: '#0469e3', + middark: '#5eaaf7', + midlight: '#0057be', }, }, }, - 'global.color.indigo.700': { - '_original': { - '$value': 'rgb(50, 54, 168)', - '$extensions': { + 'global.color.blue.600': { + _original: { + $extensions: { mode: { - dark: 'rgb(167, 170, 255)', - darkest: 'rgb(153, 157, 255)', - light: 'rgb(50, 54, 168)', - lightest: 'rgb(53, 58, 176)', - middark: 'rgb(172, 176, 255)', - midlight: 'rgb(39, 43, 139)', + dark: 'rgb(114, 183, 249)', + darkest: 'rgb(94, 170, 247)', + light: 'rgb(0, 84, 182)', + lightest: 'rgb(0, 87, 190)', + middark: 'rgb(122, 188, 250)', + midlight: 'rgb(0, 71, 152)', }, }, + $value: 'rgb(0, 84, 182)', }, - '_group': { - id: 'global.color.indigo', - '$extensions': { + _group: { + id: 'global.color.blue', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.indigo.700', - '$type': 'color', - '$value': '#3236a8', - '$extensions': { + id: 'global.color.blue.600', + $type: 'color', + $extensions: { mode: { - dark: '#a7aaff', - darkest: '#999dff', - light: '#3236a8', - lightest: '#353ab0', - middark: '#acb0ff', - midlight: '#272b8b', + dark: '#72b7f9', + darkest: '#5eaaf7', + light: '#0054b6', + lightest: '#0057be', + middark: '#7abcfa', + midlight: '#004798', }, }, + $value: '#0054b6', }, - 'global.color.seafoam.400': { - '_original': { - '$value': 'rgb(0, 161, 154)', - '$extensions': { + 'global.color.blue.700': { + _original: { + $extensions: { mode: { - dark: 'rgb(0, 158, 152)', - darkest: 'rgb(0, 146, 140)', - light: 'rgb(0, 161, 154)', - lightest: 'rgb(0, 166, 160)', - middark: 'rgb(0, 167, 160)', - midlight: 'rgb(0, 142, 136)', + dark: 'rgb(143, 202, 252)', + darkest: 'rgb(124, 189, 250)', + light: 'rgb(0, 68, 145)', + lightest: 'rgb(0, 72, 153)', + middark: 'rgb(149, 205, 252)', + midlight: 'rgb(0, 55, 118)', }, }, + $value: 'rgb(0, 68, 145)', }, - '_group': { - id: 'global.color.seafoam', - '$extensions': { + _group: { + id: 'global.color.blue', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.seafoam.400', - '$type': 'color', - '$value': '#00a19a', - '$extensions': { + id: 'global.color.blue.700', + $type: 'color', + $extensions: { mode: { - dark: '#009e98', - darkest: '#00928c', - light: '#00a19a', - lightest: '#00a6a0', - middark: '#00a7a0', - midlight: '#008e88', + dark: '#8fcafc', + darkest: '#7cbdfa', + light: '#004491', + lightest: '#004899', + middark: '#95cdfc', + midlight: '#003776', }, }, + $value: '#004491', }, - 'global.color.seafoam.500': { - '_original': { - '$value': 'rgb(0, 140, 135)', - '$extensions': { + 'global.color.celery.400': { + _original: { + $value: 'rgb(39, 187, 54)', + $extensions: { mode: { - dark: 'rgb(3, 178, 171)', - darkest: 'rgb(0, 165, 159)', - light: 'rgb(0, 140, 135)', - lightest: 'rgb(0, 145, 139)', - middark: 'rgb(25, 184, 177)', - midlight: 'rgb(0, 122, 117)', + dark: 'rgb(34, 184, 51)', + darkest: 'rgb(13, 171, 37)', + light: 'rgb(39, 187, 54)', + lightest: 'rgb(48, 193, 61)', + middark: 'rgb(45, 190, 58)', + midlight: 'rgb(7, 167, 33)', }, }, }, - '_group': { - id: 'global.color.seafoam', - '$extensions': { + _group: { + id: 'global.color.celery', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.seafoam.500', - '$type': 'color', - '$value': '#008c87', - '$extensions': { + id: 'global.color.celery.400', + $type: 'color', + $value: '#27bb36', + $extensions: { mode: { - dark: '#03b2ab', - darkest: '#00a59f', - light: '#008c87', - lightest: '#00918b', - middark: '#19b8b1', - midlight: '#007a75', + dark: '#22b833', + darkest: '#0dab25', + light: '#27bb36', + lightest: '#30c13d', + middark: '#2dbe3a', + midlight: '#07a721', }, }, }, - 'global.color.seafoam.600': { - '_original': { - '$value': 'rgb(0, 119, 114)', - '$extensions': { + 'global.color.celery.500': { + _original: { + $value: 'rgb(7, 167, 33)', + $extensions: { mode: { - dark: 'rgb(54, 197, 189)', - darkest: 'rgb(26, 185, 178)', - light: 'rgb(0, 119, 114)', - lightest: 'rgb(0, 124, 118)', - middark: 'rgb(64, 201, 194)', - midlight: 'rgb(0, 103, 99)', + dark: 'rgb(68, 202, 73)', + darkest: 'rgb(45, 191, 58)', + light: 'rgb(7, 167, 33)', + lightest: 'rgb(15, 172, 38)', + middark: 'rgb(78, 207, 80)', + midlight: 'rgb(0, 148, 19)', }, }, }, - '_group': { - id: 'global.color.seafoam', - '$extensions': { + _group: { + id: 'global.color.celery', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.seafoam.600', - '$type': 'color', - '$value': '#007772', - '$extensions': { + id: 'global.color.celery.500', + $type: 'color', + $value: '#07a721', + $extensions: { mode: { - dark: '#36c5bd', - darkest: '#1ab9b2', - light: '#007772', - lightest: '#007c76', - middark: '#40c9c2', - midlight: '#006763', + dark: '#44ca49', + darkest: '#2dbf3a', + light: '#07a721', + lightest: '#0fac26', + middark: '#4ecf50', + midlight: '#009413', }, }, }, - 'global.color.seafoam.700': { - '_original': { - '$value': 'rgb(0, 99, 95)', - '$extensions': { + 'global.color.celery.600': { + _original: { + $value: 'rgb(0, 145, 18)', + $extensions: { mode: { - dark: 'rgb(93, 214, 207)', - darkest: 'rgb(66, 202, 195)', - light: 'rgb(0, 99, 95)', - lightest: 'rgb(0, 103, 99)', - middark: 'rgb(100, 217, 210)', - midlight: 'rgb(10, 83, 80)', + dark: 'rgb(105, 220, 99)', + darkest: 'rgb(80, 208, 82)', + light: 'rgb(0, 145, 18)', + lightest: 'rgb(0, 150, 20)', + middark: 'rgb(112, 223, 104)', + midlight: 'rgb(0, 127, 15)', }, }, }, - '_group': { - id: 'global.color.seafoam', - '$extensions': { + _group: { + id: 'global.color.celery', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.seafoam.700', - '$type': 'color', - '$value': '#00635f', - '$extensions': { + id: 'global.color.celery.600', + $type: 'color', + $value: '#009112', + $extensions: { mode: { - dark: '#5dd6cf', - darkest: '#42cac3', - light: '#00635f', - lightest: '#006763', - middark: '#64d9d2', - midlight: '#0a5350', + dark: '#69dc63', + darkest: '#50d052', + light: '#009112', + lightest: '#009614', + middark: '#70df68', + midlight: '#007f0f', }, }, }, - 'global.color.red.400': { - '_original': { - '$value': 'rgb(234, 56, 41)', - '$extensions': { + 'global.color.celery.700': { + _original: { + $value: 'rgb(0, 124, 15)', + $extensions: { mode: { - dark: 'rgb(234, 56, 41)', - darkest: 'rgb(221, 33, 24)', - light: 'rgb(234, 56, 41)', - lightest: 'rgb(237, 64, 48)', - middark: 'rgb(241, 74, 55)', - midlight: 'rgb(216, 26, 19)', + dark: 'rgb(142, 235, 127)', + darkest: 'rgb(115, 224, 107)', + light: 'rgb(0, 124, 15)', + lightest: 'rgb(0, 128, 15)', + middark: 'rgb(146, 237, 130)', + midlight: 'rgb(0, 107, 15)', }, }, }, - '_group': { - id: 'global.color.red', - '$extensions': { + _group: { + id: 'global.color.celery', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.red.400', - '$type': 'color', - '$value': '#ea3829', - '$extensions': { + id: 'global.color.celery.700', + $type: 'color', + $value: '#007c0f', + $extensions: { mode: { - dark: '#ea3829', - darkest: '#dd2118', - light: '#ea3829', - lightest: '#ed4030', - middark: '#f14a37', - midlight: '#d81a13', + dark: '#8eeb7f', + darkest: '#73e06b', + light: '#007c0f', + lightest: '#00800f', + middark: '#92ed82', + midlight: '#006b0f', }, }, }, - 'global.color.red.500': { - '_original': { - '$value': 'rgb(211, 21, 16)', - '$extensions': { + 'global.color.chartreuse.400': { + _original: { + $value: 'rgb(152, 197, 10)', + $extensions: { mode: { - dark: 'rgb(246, 88, 67)', - darkest: 'rgb(238, 67, 49)', - light: 'rgb(211, 21, 16)', - lightest: 'rgb(217, 28, 21)', - middark: 'rgb(250, 101, 79)', - midlight: 'rgb(187, 2, 2)', + dark: 'rgb(148, 192, 8)', + darkest: 'rgb(138, 180, 3)', + light: 'rgb(152, 197, 10)', + lightest: 'rgb(157, 203, 13)', + middark: 'rgb(153, 197, 10)', + midlight: 'rgb(134, 175, 2)', }, }, }, - '_group': { - id: 'global.color.red', - '$extensions': { + _group: { + id: 'global.color.chartreuse', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.red.500', - '$type': 'color', - '$value': '#d31510', - '$extensions': { + id: 'global.color.chartreuse.400', + $type: 'color', + $value: '#98c50a', + $extensions: { mode: { - dark: '#f65843', - darkest: '#ee4331', - light: '#d31510', - lightest: '#d91c15', - middark: '#fa654f', - midlight: '#bb0202', + dark: '#94c008', + darkest: '#8ab403', + light: '#98c50a', + lightest: '#9dcb0d', + middark: '#99c50a', + midlight: '#86af02', }, }, }, - 'global.color.red.600': { - '_original': { - '$value': 'rgb(180, 0, 0)', - '$extensions': { + 'global.color.chartreuse.500': { + _original: { + $value: 'rgb(135, 177, 3)', + $extensions: { mode: { - dark: 'rgb(255, 117, 94)', - darkest: 'rgb(249, 99, 76)', - light: 'rgb(180, 0, 0)', - lightest: 'rgb(187, 2, 2)', - middark: 'rgb(255, 129, 107)', - midlight: 'rgb(153, 0, 0)', + dark: 'rgb(166, 211, 18)', + darkest: 'rgb(154, 198, 11)', + light: 'rgb(135, 177, 3)', + lightest: 'rgb(139, 182, 4)', + middark: 'rgb(169, 215, 21)', + midlight: 'rgb(119, 157, 0)', }, }, }, - '_group': { - id: 'global.color.red', - '$extensions': { + _group: { + id: 'global.color.chartreuse', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.red.600', - '$type': 'color', - '$value': '#b40000', - '$extensions': { + id: 'global.color.chartreuse.500', + $type: 'color', + $value: '#87b103', + $extensions: { mode: { - dark: '#ff755e', - darkest: '#f9634c', - light: '#b40000', - lightest: '#bb0202', - middark: '#ff816b', - midlight: '#990000', + dark: '#a6d312', + darkest: '#9ac60b', + light: '#87b103', + lightest: '#8bb604', + middark: '#a9d715', + midlight: '#779d00', }, }, }, - 'global.color.red.700': { - '_original': { - '$value': 'rgb(147, 0, 0)', - '$extensions': { + 'global.color.chartreuse.600': { + _original: { + $extensions: { mode: { - dark: 'rgb(255, 149, 129)', - darkest: 'rgb(255, 129, 107)', - light: 'rgb(147, 0, 0)', - lightest: 'rgb(154, 0, 0)', - middark: 'rgb(255, 156, 137)', - midlight: 'rgb(120, 0, 0)', + dark: 'rgb(184, 229, 37)', + darkest: 'rgb(170, 216, 22)', + light: 'rgb(118, 156, 0)', + lightest: 'rgb(122, 162, 0)', + middark: 'rgb(186, 232, 40)', + midlight: 'rgb(104, 138, 0)', }, }, + $value: 'rgb(118, 156, 0)', }, - '_group': { - id: 'global.color.red', - '$extensions': { + _group: { + id: 'global.color.chartreuse', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.red.700', - '$type': 'color', - '$value': '#930000', - '$extensions': { + id: 'global.color.chartreuse.600', + $type: 'color', + $extensions: { mode: { - dark: '#ff9581', - darkest: '#ff816b', - light: '#930000', - lightest: '#9a0000', - middark: '#ff9c89', - midlight: '#780000', + dark: '#b8e525', + darkest: '#aad816', + light: '#769c00', + lightest: '#7aa200', + middark: '#bae828', + midlight: '#688a00', }, }, + $value: '#769c00', }, - 'global.color.orange.400': { - '_original': { - '$value': 'rgb(246, 133, 17)', - '$extensions': { + 'global.color.chartreuse.700': { + _original: { + $extensions: { mode: { - dark: 'rgb(244, 129, 12)', - darkest: 'rgb(232, 116, 0)', - light: 'rgb(246, 133, 17)', - lightest: 'rgb(250, 139, 26)', - middark: 'rgb(248, 137, 22)', - midlight: 'rgb(228, 111, 0)', + dark: 'rgb(205, 245, 71)', + darkest: 'rgb(187, 232, 41)', + light: 'rgb(103, 136, 0)', + lightest: 'rgb(106, 141, 0)', + middark: 'rgb(206, 246, 75)', + midlight: 'rgb(90, 119, 0)', }, }, + $value: 'rgb(103, 136, 0)', }, - '_group': { - id: 'global.color.orange', - '$extensions': { + _group: { + id: 'global.color.chartreuse', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.orange.400', - '$type': 'color', - '$value': '#f68511', - '$extensions': { + id: 'global.color.chartreuse.700', + $type: 'color', + $extensions: { mode: { - dark: '#f4810c', - darkest: '#e87400', - light: '#f68511', - lightest: '#fa8b1a', - middark: '#f88916', - midlight: '#e46f00', + dark: '#cdf547', + darkest: '#bbe829', + light: '#678800', + lightest: '#6a8d00', + middark: '#cef64b', + midlight: '#5a7700', }, }, + $value: '#678800', }, - 'global.color.orange.500': { - '_original': { - '$value': 'rgb(228, 111, 0)', - '$extensions': { + 'global.color.fuchsia.400': { + _original: { + $extensions: { mode: { - dark: 'rgb(254, 154, 46)', - darkest: 'rgb(249, 137, 23)', - light: 'rgb(228, 111, 0)', - lightest: 'rgb(233, 117, 0)', - middark: 'rgb(255, 161, 57)', - midlight: 'rgb(205, 95, 0)', + dark: 'rgb(205, 57, 206)', + darkest: 'rgb(191, 43, 191)', + light: 'rgb(205, 58, 206)', + lightest: 'rgb(211, 63, 212)', + middark: 'rgb(216, 70, 217)', + midlight: 'rgb(186, 38, 186)', }, }, + $value: 'rgb(205, 58, 206)', }, - '_group': { - id: 'global.color.orange', - '$extensions': { + _group: { + id: 'global.color.fuchsia', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.orange.500', - '$type': 'color', - '$value': '#e46f00', - '$extensions': { + id: 'global.color.fuchsia.400', + $type: 'color', + $extensions: { mode: { - dark: '#fe9a2e', - darkest: '#f98917', - light: '#e46f00', - lightest: '#e97500', - middark: '#ffa139', - midlight: '#cd5f00', + dark: '#cd39ce', + darkest: '#bf2bbf', + light: '#cd3ace', + lightest: '#d33fd4', + middark: '#d846d9', + midlight: '#ba26ba', }, }, + $value: '#cd3ace', }, - 'global.color.orange.600': { - '_original': { - '$value': 'rgb(203, 93, 0)', - '$extensions': { + 'global.color.fuchsia.500': { + _original: { + $extensions: { mode: { - dark: 'rgb(255, 181, 88)', - darkest: 'rgb(255, 162, 59)', - light: 'rgb(203, 93, 0)', - lightest: 'rgb(209, 97, 0)', - middark: 'rgb(255, 186, 97)', - midlight: 'rgb(181, 79, 0)', + dark: 'rgb(223, 81, 224)', + darkest: 'rgb(211, 65, 213)', + light: 'rgb(182, 34, 183)', + lightest: 'rgb(188, 39, 187)', + middark: 'rgb(229, 93, 230)', + midlight: 'rgb(163, 9, 163)', }, }, + $value: 'rgb(182, 34, 183)', }, - '_group': { - id: 'global.color.orange', - '$extensions': { + _group: { + id: 'global.color.fuchsia', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.orange.600', - '$type': 'color', - '$value': '#cb5d00', - '$extensions': { + id: 'global.color.fuchsia.500', + $type: 'color', + $extensions: { mode: { - dark: '#ffb558', - darkest: '#ffa23b', - light: '#cb5d00', - lightest: '#d16100', - middark: '#ffba61', - midlight: '#b54f00', + dark: '#df51e0', + darkest: '#d341d5', + light: '#b622b7', + lightest: '#bc27bb', + middark: '#e55de6', + midlight: '#a309a3', }, }, + $value: '#b622b7', }, - 'global.color.orange.700': { - '_original': { - '$value': 'rgb(177, 76, 0)', - '$extensions': { + 'global.color.fuchsia.600': { + _original: { + $extensions: { mode: { - dark: 'rgb(253, 206, 136)', - darkest: 'rgb(255, 188, 102)', - light: 'rgb(177, 76, 0)', - lightest: 'rgb(182, 80, 0)', - middark: 'rgb(253, 208, 142)', - midlight: 'rgb(155, 64, 0)', + dark: 'rgb(235, 110, 236)', + darkest: 'rgb(228, 91, 229)', + light: 'rgb(157, 3, 158)', + lightest: 'rgb(163, 10, 163)', + middark: 'rgb(239, 120, 238)', + midlight: 'rgb(134, 0, 135)', }, }, + $value: 'rgb(157, 3, 158)', }, - '_group': { - id: 'global.color.orange', - '$extensions': { + _group: { + id: 'global.color.fuchsia', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.orange.700', - '$type': 'color', - '$value': '#b14c00', - '$extensions': { + id: 'global.color.fuchsia.600', + $type: 'color', + $extensions: { mode: { - dark: '#fdce88', - darkest: '#ffbc66', - light: '#b14c00', - lightest: '#b65000', - middark: '#fdd08e', - midlight: '#9b4000', - }, - }, - }, - 'global.color.green.400': { - '_original': { - '$value': 'rgb(0, 143, 93)', - '$extensions': { - mode: { - dark: 'rgb(18, 162, 108)', - darkest: 'rgb(0, 149, 98)', - light: 'rgb(0, 143, 93)', - lightest: 'rgb(0, 148, 97)', - middark: 'rgb(30, 170, 116)', - midlight: 'rgb(0, 125, 79)', - }, - }, - }, - '_group': { - id: 'global.color.green', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.green.400', - '$type': 'color', - '$value': '#008f5d', - '$extensions': { - mode: { - dark: '#12a26c', - darkest: '#009562', - light: '#008f5d', - lightest: '#009461', - middark: '#1eaa74', - midlight: '#007d4f', - }, - }, - }, - 'global.color.green.500': { - '_original': { - '$value': 'rgb(0, 122, 77)', - '$extensions': { - mode: { - dark: 'rgb(43, 180, 125)', - darkest: 'rgb(28, 168, 114)', - light: 'rgb(0, 122, 77)', - lightest: 'rgb(0, 126, 80)', - middark: 'rgb(51, 187, 131)', - midlight: 'rgb(0, 105, 65)', - }, - }, - }, - '_group': { - id: 'global.color.green', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.green.500', - '$type': 'color', - '$value': '#007a4d', - '$extensions': { - mode: { - dark: '#2bb47d', - darkest: '#1ca872', - light: '#007a4d', - lightest: '#007e50', - middark: '#33bb83', - midlight: '#006941', - }, - }, - }, - 'global.color.green.600': { - '_original': { - '$value': 'rgb(0, 101, 62)', - '$extensions': { - mode: { - dark: 'rgb(67, 199, 143)', - darkest: 'rgb(52, 187, 132)', - light: 'rgb(0, 101, 62)', - lightest: 'rgb(0, 105, 65)', - middark: 'rgb(74, 204, 148)', - midlight: 'rgb(0, 85, 52)', - }, - }, - }, - '_group': { - id: 'global.color.green', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.green.600', - '$type': 'color', - '$value': '#00653e', - '$extensions': { - mode: { - dark: '#43c78f', - darkest: '#34bb84', - light: '#00653e', - lightest: '#006941', - middark: '#4acc94', - midlight: '#005534', - }, - }, - }, - 'global.color.green.700': { - '_original': { - '$value': 'rgb(0, 81, 50)', - '$extensions': { - mode: { - dark: 'rgb(94, 217, 162)', - darkest: 'rgb(75, 205, 149)', - light: 'rgb(0, 81, 50)', - lightest: 'rgb(0, 86, 53)', - middark: 'rgb(101, 221, 167)', - midlight: 'rgb(5, 65, 40)', - }, - }, - }, - '_group': { - id: 'global.color.green', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.green.700', - '$type': 'color', - '$value': '#005132', - '$extensions': { - mode: { - dark: '#5ed9a2', - darkest: '#4bcd95', - light: '#005132', - lightest: '#005635', - middark: '#65dda7', - midlight: '#054128', - }, - }, - }, - 'global.color.blue.400': { - '_original': { - '$value': 'rgb(20, 122, 243)', - '$extensions': { - mode: { - dark: 'rgb(52, 143, 244)', - darkest: 'rgb(29, 128, 245)', - light: 'rgb(20, 122, 243)', - lightest: 'rgb(27, 127, 245)', - middark: 'rgb(66, 152, 244)', - midlight: 'rgb(4, 104, 225)', - }, - }, - }, - '_group': { - id: 'global.color.blue', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.blue.400', - '$type': 'color', - '$value': '#147af3', - '$extensions': { - mode: { - dark: '#348ff4', - darkest: '#1d80f5', - light: '#147af3', - lightest: '#1b7ff5', - middark: '#4298f4', - midlight: '#0468e1', - }, - }, - }, - 'global.color.blue.500': { - '_original': { - '$value': 'rgb(2, 101, 220)', - '$extensions': { - mode: { - dark: 'rgb(84, 163, 246)', - darkest: 'rgb(64, 150, 243)', - light: 'rgb(2, 101, 220)', - lightest: 'rgb(4, 105, 227)', - middark: 'rgb(94, 170, 247)', - midlight: 'rgb(0, 87, 190)', - }, - }, - }, - '_group': { - id: 'global.color.blue', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.blue.500', - '$type': 'color', - '$value': '#0265dc', - '$extensions': { - mode: { - dark: '#54a3f6', - darkest: '#4096f3', - light: '#0265dc', - lightest: '#0469e3', - middark: '#5eaaf7', - midlight: '#0057be', - }, - }, - }, - 'global.color.blue.600': { - '_original': { - '$extensions': { - mode: { - dark: 'rgb(114, 183, 249)', - darkest: 'rgb(94, 170, 247)', - light: 'rgb(0, 84, 182)', - lightest: 'rgb(0, 87, 190)', - middark: 'rgb(122, 188, 250)', - midlight: 'rgb(0, 71, 152)', - }, - }, - '$value': 'rgb(0, 84, 182)', - }, - '_group': { - id: 'global.color.blue', - '$extensions': { - requiredModes: [], - }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', - }, - id: 'global.color.blue.600', - '$type': 'color', - '$extensions': { - mode: { - dark: '#72b7f9', - darkest: '#5eaaf7', - light: '#0054b6', - lightest: '#0057be', - middark: '#7abcfa', - midlight: '#004798', + dark: '#eb6eec', + darkest: '#e45be5', + light: '#9d039e', + lightest: '#a30aa3', + middark: '#ef78ee', + midlight: '#860087', }, }, - '$value': '#0054b6', + $value: '#9d039e', }, - 'global.color.blue.700': { - '_original': { - '$extensions': { + 'global.color.fuchsia.700': { + _original: { + $extensions: { mode: { - dark: 'rgb(143, 202, 252)', - darkest: 'rgb(124, 189, 250)', - light: 'rgb(0, 68, 145)', - lightest: 'rgb(0, 72, 153)', - middark: 'rgb(149, 205, 252)', - midlight: 'rgb(0, 55, 118)', + dark: 'rgb(244, 140, 242)', + darkest: 'rgb(239, 120, 238)', + light: 'rgb(128, 0, 129)', + lightest: 'rgb(135, 0, 136)', + middark: 'rgb(246, 147, 243)', + midlight: 'rgb(104, 4, 104)', }, }, - '$value': 'rgb(0, 68, 145)', + $value: 'rgb(128, 0, 129)', }, - '_group': { - id: 'global.color.blue', - '$extensions': { + _group: { + id: 'global.color.fuchsia', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'global.color.blue.700', - '$type': 'color', - '$extensions': { + id: 'global.color.fuchsia.700', + $type: 'color', + $extensions: { mode: { - dark: '#8fcafc', - darkest: '#7cbdfa', - light: '#004491', - lightest: '#004899', - middark: '#95cdfc', - midlight: '#003776', + dark: '#f48cf2', + darkest: '#ef78ee', + light: '#800081', + lightest: '#870088', + middark: '#f693f3', + midlight: '#680468', }, }, - '$value': '#004491', + $value: '#800081', }, 'global.color.gray.50': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(29, 29, 29)', darkest: 'rgb(0, 0, 0)', @@ -2254,20 +1829,20 @@ export const meta = { midlight: 'rgb(250, 250, 250)', }, }, - '$value': 'rgb(255, 255, 255)', + $value: 'rgb(255, 255, 255)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.50', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#1d1d1d', darkest: '#000000', @@ -2277,11 +1852,11 @@ export const meta = { midlight: '#fafafa', }, }, - '$value': '#ffffff', + $value: '#ffffff', }, 'global.color.gray.75': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(38, 38, 38)', darkest: 'rgb(14, 14, 14)', @@ -2291,20 +1866,20 @@ export const meta = { midlight: 'rgb(239, 239, 239)', }, }, - '$value': 'rgb(253, 253, 253)', + $value: 'rgb(253, 253, 253)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.75', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#262626', darkest: '#0e0e0e', @@ -2314,11 +1889,11 @@ export const meta = { midlight: '#efefef', }, }, - '$value': '#fdfdfd', + $value: '#fdfdfd', }, 'global.color.gray.100': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(50, 50, 50)', darkest: 'rgb(29, 29, 29)', @@ -2328,20 +1903,20 @@ export const meta = { midlight: 'rgb(219, 219, 219)', }, }, - '$value': 'rgb(248, 248, 248)', + $value: 'rgb(248, 248, 248)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.100', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#323232', darkest: '#1d1d1d', @@ -2351,11 +1926,11 @@ export const meta = { midlight: '#dbdbdb', }, }, - '$value': '#f8f8f8', + $value: '#f8f8f8', }, 'global.color.gray.200': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(63, 63, 63)', darkest: 'rgb(48, 48, 48)', @@ -2365,20 +1940,20 @@ export const meta = { midlight: 'rgb(207, 207, 207)', }, }, - '$value': 'rgb(230, 230, 230)', + $value: 'rgb(230, 230, 230)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.200', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#3f3f3f', darkest: '#303030', @@ -2388,11 +1963,11 @@ export const meta = { midlight: '#cfcfcf', }, }, - '$value': '#e6e6e6', + $value: '#e6e6e6', }, 'global.color.gray.300': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(84, 84, 84)', darkest: 'rgb(75, 75, 75)', @@ -2402,20 +1977,20 @@ export const meta = { midlight: 'rgb(195, 195, 195)', }, }, - '$value': 'rgb(213, 213, 213)', + $value: 'rgb(213, 213, 213)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.300', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#545454', darkest: '#4b4b4b', @@ -2425,11 +2000,11 @@ export const meta = { midlight: '#c3c3c3', }, }, - '$value': '#d5d5d5', + $value: '#d5d5d5', }, 'global.color.gray.400': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(112, 112, 112)', darkest: 'rgb(106, 106, 106)', @@ -2439,20 +2014,20 @@ export const meta = { midlight: 'rgb(166, 166, 166)', }, }, - '$value': 'rgb(177, 177, 177)', + $value: 'rgb(177, 177, 177)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.400', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#707070', darkest: '#6a6a6a', @@ -2462,11 +2037,11 @@ export const meta = { midlight: '#a6a6a6', }, }, - '$value': '#b1b1b1', + $value: '#b1b1b1', }, 'global.color.gray.500': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(144, 144, 144)', darkest: 'rgb(141, 141, 141)', @@ -2476,20 +2051,20 @@ export const meta = { midlight: 'rgb(138, 138, 138)', }, }, - '$value': 'rgb(144, 144, 144)', + $value: 'rgb(144, 144, 144)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.500', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#909090', darkest: '#8d8d8d', @@ -2499,11 +2074,11 @@ export const meta = { midlight: '#8a8a8a', }, }, - '$value': '#909090', + $value: '#909090', }, 'global.color.gray.600': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(178, 178, 178)', darkest: 'rgb(176, 176, 176)', @@ -2513,20 +2088,20 @@ export const meta = { midlight: 'rgb(106, 106, 106)', }, }, - '$value': 'rgb(109, 109, 109)', + $value: 'rgb(109, 109, 109)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.600', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#b2b2b2', darkest: '#b0b0b0', @@ -2536,11 +2111,11 @@ export const meta = { midlight: '#6a6a6a', }, }, - '$value': '#6d6d6d', + $value: '#6d6d6d', }, 'global.color.gray.700': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(209, 209, 209)', darkest: 'rgb(208, 208, 208)', @@ -2550,20 +2125,20 @@ export const meta = { midlight: 'rgb(69, 69, 69)', }, }, - '$value': 'rgb(70, 70, 70)', + $value: 'rgb(70, 70, 70)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.700', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#d1d1d1', darkest: '#d0d0d0', @@ -2573,11 +2148,11 @@ export const meta = { midlight: '#454545', }, }, - '$value': '#464646', + $value: '#464646', }, 'global.color.gray.800': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(235, 235, 235)', darkest: 'rgb(235, 235, 235)', @@ -2587,20 +2162,20 @@ export const meta = { midlight: 'rgb(33, 33, 33)', }, }, - '$value': 'rgb(34, 34, 34)', + $value: 'rgb(34, 34, 34)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.800', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#ebebeb', darkest: '#ebebeb', @@ -2610,11 +2185,11 @@ export const meta = { midlight: '#212121', }, }, - '$value': '#222222', + $value: '#222222', }, 'global.color.gray.900': { - '_original': { - '$extensions': { + _original: { + $extensions: { mode: { dark: 'rgb(255, 255, 255)', darkest: 'rgb(255, 255, 255)', @@ -2624,20 +2199,20 @@ export const meta = { midlight: 'rgb(0, 0, 0)', }, }, - '$value': 'rgb(0, 0, 0)', + $value: 'rgb(0, 0, 0)', }, - '_group': { + _group: { id: 'global.color.gray', - '$extensions': { + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, id: 'global.color.gray.900', - '$type': 'color', - '$extensions': { + $type: 'color', + $extensions: { mode: { dark: '#ffffff', darkest: '#ffffff', @@ -2647,1601 +2222,1854 @@ export const meta = { midlight: '#000000', }, }, - '$value': '#000000', + $value: '#000000', }, - 'alias.background-color-primary': { - '_original': { - '$type': 'color', - '$value': '{global.color.gray.50}', - '$extensions': { + 'global.color.green.400': { + _original: { + $value: 'rgb(0, 143, 93)', + $extensions: { mode: { - dark: '{global.color.gray.100}', - darkest: '{global.color.gray.100}', - light: '{global.color.gray.50}', - lightest: '{global.color.gray.50}', - middark: '{global.color.gray.100}', - midlight: '{global.color.gray.50}', + dark: 'rgb(18, 162, 108)', + darkest: 'rgb(0, 149, 98)', + light: 'rgb(0, 143, 93)', + lightest: 'rgb(0, 148, 97)', + middark: 'rgb(30, 170, 116)', + midlight: 'rgb(0, 125, 79)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.green', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.background-color-primary', - '$type': 'color', - '$value': '#ffffff', - '$extensions': { + id: 'global.color.green.400', + $type: 'color', + $value: '#008f5d', + $extensions: { mode: { - dark: '#f8f8f8', - darkest: '#f8f8f8', - light: '#ffffff', - lightest: '#ffffff', - middark: '#f8f8f8', - midlight: '#ffffff', + dark: '#12a26c', + darkest: '#009562', + light: '#008f5d', + lightest: '#009461', + middark: '#1eaa74', + midlight: '#007d4f', }, }, }, - 'alias.background-color-secondary': { - '_original': { - '$type': 'color', - '$value': '{global.color.gray.100}', - '$extensions': { + 'global.color.green.500': { + _original: { + $value: 'rgb(0, 122, 77)', + $extensions: { mode: { - dark: '{global.color.gray.75}', - darkest: '{global.color.gray.75}', - light: '{global.color.gray.100}', - lightest: '{global.color.gray.100}', - middark: '{global.color.gray.75}', - midlight: '{global.color.gray.100}', + dark: 'rgb(43, 180, 125)', + darkest: 'rgb(28, 168, 114)', + light: 'rgb(0, 122, 77)', + lightest: 'rgb(0, 126, 80)', + middark: 'rgb(51, 187, 131)', + midlight: 'rgb(0, 105, 65)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.green', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.background-color-secondary', - '$type': 'color', - '$value': '#f8f8f8', - '$extensions': { + id: 'global.color.green.500', + $type: 'color', + $value: '#007a4d', + $extensions: { mode: { - dark: '#fdfdfd', - darkest: '#fdfdfd', - light: '#f8f8f8', - lightest: '#f8f8f8', - middark: '#fdfdfd', - midlight: '#f8f8f8', + dark: '#2bb47d', + darkest: '#1ca872', + light: '#007a4d', + lightest: '#007e50', + middark: '#33bb83', + midlight: '#006941', }, }, }, - 'alias.background-color-modal-overlay': { - '_original': { - '$type': 'color', - '$value': 'rgba(0, 0, 0, 0.4)', - '$extensions': { + 'global.color.green.600': { + _original: { + $value: 'rgb(0, 101, 62)', + $extensions: { mode: { - dark: 'rgba(0, 0, 0, 0.5)', - darkest: 'rgba(0, 0, 0, 0.6)', - light: 'rgba(0, 0, 0, 0.4)', - lightest: 'rgba(0, 0, 0, 0.4)', - middark: 'rgba(0, 0, 0, 0.4)', - midlight: 'rgba(0, 0, 0, 0.4)', + dark: 'rgb(67, 199, 143)', + darkest: 'rgb(52, 187, 132)', + light: 'rgb(0, 101, 62)', + lightest: 'rgb(0, 105, 65)', + middark: 'rgb(74, 204, 148)', + midlight: 'rgb(0, 85, 52)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.green', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.background-color-modal-overlay', - '$type': 'color', - '$value': '#00000066', - '$extensions': { + id: 'global.color.green.600', + $type: 'color', + $value: '#00653e', + $extensions: { mode: { - dark: '#00000080', - darkest: '#00000099', - light: '#00000066', - lightest: '#00000066', - middark: '#00000066', - midlight: '#00000066', + dark: '#43c78f', + darkest: '#34bb84', + light: '#00653e', + lightest: '#006941', + middark: '#4acc94', + midlight: '#005534', }, }, }, - 'alias.background-color-hover-overly': { - '_original': { - '$type': 'color', - '$value': 'rgba(0, 0, 0, 0.04)', - '$extensions': { + 'global.color.green.700': { + _original: { + $value: 'rgb(0, 81, 50)', + $extensions: { mode: { - dark: 'rgba(255, 255, 255, 0.06)', - darkest: 'rgba(255, 255, 255, 0.08)', - light: 'rgba(0, 0, 0, 0.04)', - lightest: 'rgba(0, 0, 0, 0.04)', - middark: 'rgba(255, 255, 255, 0.05)', - midlight: 'rgba(0, 0, 0, 0.04)', + dark: 'rgb(94, 217, 162)', + darkest: 'rgb(75, 205, 149)', + light: 'rgb(0, 81, 50)', + lightest: 'rgb(0, 86, 53)', + middark: 'rgb(101, 221, 167)', + midlight: 'rgb(5, 65, 40)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.green', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.background-color-hover-overly', - '$type': 'color', - '$value': '#0000000a', - '$extensions': { + id: 'global.color.green.700', + $type: 'color', + $value: '#005132', + $extensions: { mode: { - dark: '#ffffff0f', - darkest: '#ffffff14', - light: '#0000000a', - lightest: '#0000000a', - middark: '#ffffff0d', - midlight: '#0000000a', + dark: '#5ed9a2', + darkest: '#4bcd95', + light: '#005132', + lightest: '#005635', + middark: '#65dda7', + midlight: '#054128', }, }, }, - 'alias.background-color-quickactions': { - '_original': { - '$type': 'color', - '$value': 'rgba(248, 248, 248, 0.9)', - '$extensions': { + 'global.color.indigo.400': { + _original: { + $value: 'rgb(104, 109, 244)', + $extensions: { mode: { - dark: 'rgba(50, 50, 50, 0.9)', - darkest: 'rgba(29, 29, 29, 0.9)', - light: 'rgba(248, 248, 248, 0.9)', - lightest: 'rgba(255, 255, 255, 0.9)', - middark: 'rgba(75, 75, 75, 0.9)', - midlight: 'rgba(219, 219, 219, 0.9)', + dark: 'rgb(104, 109, 244)', + darkest: 'rgb(90, 96, 235)', + light: 'rgb(104, 109, 244)', + lightest: 'rgb(109, 115, 246)', + middark: 'rgb(115, 120, 248)', + midlight: 'rgb(86, 92, 231)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.indigo', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.background-color-quickactions', - '$type': 'color', - '$value': '#f8f8f8e6', - '$extensions': { + id: 'global.color.indigo.400', + $type: 'color', + $value: '#686df4', + $extensions: { mode: { - dark: '#323232e6', - darkest: '#1d1d1de6', - light: '#f8f8f8e6', - lightest: '#ffffffe6', - middark: '#4b4b4be6', - midlight: '#dbdbdbe6', + dark: '#686df4', + darkest: '#5a60eb', + light: '#686df4', + lightest: '#6d73f6', + middark: '#7378f8', + midlight: '#565ce7', }, }, }, - 'alias.dropshadow-color': { - '_original': { - '$value': 'rgba(0, 0, 0, 0.15)', - '$type': 'color', - '$extensions': { + 'global.color.indigo.500': { + _original: { + $value: 'rgb(82, 88, 228)', + $extensions: { mode: { - dark: 'rgba(0, 0, 0, 0.5)', - darkest: 'rgba(0, 0, 0, 0.8)', - light: 'rgba(0, 0, 0, 0.15)', - lightest: 'rgba(0, 0, 0, 0.15)', - middark: 'rgba(0, 0, 0, 0.3)', - midlight: 'rgba(0, 0, 0, 0.15)', + dark: 'rgb(124, 129, 251)', + darkest: 'rgb(110, 115, 246)', + light: 'rgb(82, 88, 228)', + lightest: 'rgb(87, 93, 232)', + middark: 'rgb(133, 138, 253)', + midlight: 'rgb(68, 73, 208)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.indigo', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.dropshadow-color', - '$type': 'color', - '$value': '#00000026', - '$extensions': { + id: 'global.color.indigo.500', + $type: 'color', + $value: '#5258e4', + $extensions: { mode: { - dark: '#00000080', - darkest: '#000000cc', - light: '#00000026', - lightest: '#00000026', - middark: '#0000004d', - midlight: '#00000026', + dark: '#7c81fb', + darkest: '#6e73f6', + light: '#5258e4', + lightest: '#575de8', + middark: '#858afd', + midlight: '#4449d0', }, }, }, - 'alias.highlight-hover': { - '_original': { - '$type': 'color', - '$value': 'rgba(0, 0, 0, 0.06)', - '$extensions': { + 'global.color.indigo.600': { + _original: { + $value: 'rgb(64, 70, 202)', + $extensions: { mode: { - dark: 'rgba(255, 255, 255, 0.07)', - darkest: 'rgba(255, 255, 255, 0.08)', - light: 'rgba(0, 0, 0, 0.06)', - lightest: 'rgba(0, 0, 0, 0.06)', - middark: 'rgba(255, 255, 255, 0.06)', - midlight: 'rgba(0, 0, 0, 0.06)', + dark: 'rgb(145, 149, 255)', + darkest: 'rgb(132, 136, 253)', + light: 'rgb(64, 70, 202)', + lightest: 'rgb(68, 74, 208)', + middark: 'rgb(152, 157, 255)', + midlight: 'rgb(52, 57, 176)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.indigo', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.highlight-hover', - '$type': 'color', - '$value': '#0000000f', - '$extensions': { + id: 'global.color.indigo.600', + $type: 'color', + $value: '#4046ca', + $extensions: { mode: { - dark: '#ffffff12', - darkest: '#ffffff14', - light: '#0000000f', - lightest: '#0000000f', - middark: '#ffffff0f', - midlight: '#0000000f', + dark: '#9195ff', + darkest: '#8488fd', + light: '#4046ca', + lightest: '#444ad0', + middark: '#989dff', + midlight: '#3439b0', }, }, }, - 'alias.highlight-down': { - '_original': { - '$type': 'color', - '$value': 'rgba(0, 0, 0, 0.1)', - '$extensions': { + 'global.color.indigo.700': { + _original: { + $value: 'rgb(50, 54, 168)', + $extensions: { mode: { - dark: 'rgba(255, 255, 255, 0.1)', - darkest: 'rgba(255, 255, 255, 0.15)', - light: 'rgba(0, 0, 0, 0.1)', - lightest: 'rgba(0, 0, 0, 0.1)', - middark: 'rgba(255, 255, 255, 0.1)', - midlight: 'rgba(0, 0, 0, 0.1)', + dark: 'rgb(167, 170, 255)', + darkest: 'rgb(153, 157, 255)', + light: 'rgb(50, 54, 168)', + lightest: 'rgb(53, 58, 176)', + middark: 'rgb(172, 176, 255)', + midlight: 'rgb(39, 43, 139)', }, }, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.indigo', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.highlight-down', - '$type': 'color', - '$value': '#0000001a', - '$extensions': { + id: 'global.color.indigo.700', + $type: 'color', + $value: '#3236a8', + $extensions: { mode: { - dark: '#ffffff1a', - darkest: '#ffffff26', - light: '#0000001a', - lightest: '#0000001a', - middark: '#ffffff1a', - midlight: '#0000001a', + dark: '#a7aaff', + darkest: '#999dff', + light: '#3236a8', + lightest: '#353ab0', + middark: '#acb0ff', + midlight: '#272b8b', }, }, }, - 'alias.highlight-selected': { - '_original': { - '$type': 'color', - '$value': 'rgba(2, 101, 220, 0.1)', - '$extensions': { + 'global.color.magenta.400': { + _original: { + $extensions: { mode: { - dark: 'rgba(84, 163, 246, 0.15)', - darkest: 'rgba(64, 150, 243, 0.2)', - light: 'rgba(2, 101, 220, 0.1)', - lightest: 'rgba(4, 105, 227, 0.1)', - middark: 'rgba(94, 170, 247, 0.1)', - midlight: 'rgba(0, 87, 190, 0.1)', + dark: 'rgb(222, 61, 130)', + darkest: 'rgb(209, 43, 114)', + light: 'rgb(222, 61, 130)', + lightest: 'rgb(226, 68, 135)', + middark: 'rgb(231, 75, 141)', + midlight: 'rgb(204, 39, 110)', }, }, + $value: 'rgb(222, 61, 130)', }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.magenta', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.highlight-selected', - '$type': 'color', - '$value': '#0265dc1a', - '$extensions': { + id: 'global.color.magenta.400', + $type: 'color', + $extensions: { mode: { - dark: '#54a3f626', - darkest: '#4096f333', - light: '#0265dc1a', - lightest: '#0469e31a', - middark: '#5eaaf71a', - midlight: '#0057be1a', + dark: '#de3d82', + darkest: '#d12b72', + light: '#de3d82', + lightest: '#e24487', + middark: '#e74b8d', + midlight: '#cc276e', }, }, + $value: '#de3d82', }, - 'alias.highlight-selected-hover': { - '_original': { - '$type': 'color', - '$value': 'rgba(2, 101, 220, 0.2)', - '$extensions': { + 'global.color.magenta.500': { + _original: { + $extensions: { mode: { - dark: 'rgba(84, 163, 246, 0.25)', - darkest: 'rgba(64, 150, 243, 0.3)', - light: 'rgba(2, 101, 220, 0.2)', - lightest: 'rgba(4, 105, 227, 0.2)', - middark: 'rgba(94, 170, 247, 0.2)', - midlight: 'rgba(0, 87, 190, 0.2)', + dark: 'rgb(237, 87, 149)', + darkest: 'rgb(227, 69, 137)', + light: 'rgb(200, 34, 105)', + lightest: 'rgb(205, 40, 111)', + middark: 'rgb(242, 99, 157)', + midlight: 'rgb(179, 15, 88)', }, }, + $value: 'rgb(200, 34, 105)', }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.magenta', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.highlight-selected-hover', - '$type': 'color', - '$value': '#0265dc33', - '$extensions': { + id: 'global.color.magenta.500', + $type: 'color', + $extensions: { mode: { - dark: '#54a3f640', - darkest: '#4096f34d', - light: '#0265dc33', - lightest: '#0469e333', - middark: '#5eaaf733', - midlight: '#0057be33', + dark: '#ed5795', + darkest: '#e34589', + light: '#c82269', + lightest: '#cd286f', + middark: '#f2639d', + midlight: '#b30f58', }, }, + $value: '#c82269', }, - 'alias.text-highlight-color': { - '_original': { - '$type': 'color', - '$value': 'rgba(2, 101, 220, 0.2)', - '$extensions': { + 'global.color.magenta.600': { + _original: { + $extensions: { mode: { - dark: 'rgba(84, 163, 246, 0.25)', - darkest: 'rgba(64, 150, 243, 0.3)', - light: 'rgba(2, 101, 220, 0.2)', - lightest: 'rgba(4, 105, 227, 0.2)', - middark: 'rgba(94, 170, 247, 0.2)', - midlight: 'rgba(0, 87, 190, 0.2)', + dark: 'rgb(249, 114, 167)', + darkest: 'rgb(241, 97, 156)', + light: 'rgb(173, 9, 85)', + lightest: 'rgb(179, 15, 89)', + middark: 'rgb(252, 123, 173)', + midlight: 'rgb(149, 0, 72)', }, }, + $value: 'rgb(173, 9, 85)', }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.magenta', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.text-highlight-color', - '$type': 'color', - '$value': '#0265dc33', - '$extensions': { + id: 'global.color.magenta.600', + $type: 'color', + $extensions: { mode: { - dark: '#54a3f640', - darkest: '#4096f34d', - light: '#0265dc33', - lightest: '#0469e333', - middark: '#5eaaf733', - midlight: '#0057be33', + dark: '#f972a7', + darkest: '#f1619c', + light: '#ad0955', + lightest: '#b30f59', + middark: '#fc7bad', + midlight: '#950048', }, }, + $value: '#ad0955', }, - 'alias.border-color-translucent': { - '_original': { - '$type': 'color', - '$value': 'rgba(0, 0, 0, 0.1)', - '$extensions': { + 'global.color.magenta.700': { + _original: { + $extensions: { mode: { - dark: 'rgba(255, 255, 255, 0.1)', - darkest: 'rgba(255, 255, 255, 0.1)', - light: 'rgba(0, 0, 0, 0.1)', - lightest: 'rgba(0, 0, 0, 0.1)', - middark: 'rgba(255, 255, 255, 0.1)', - midlight: 'rgba(0, 0, 0, 0.1)', + dark: 'rgb(255, 143, 185)', + darkest: 'rgb(252, 124, 173)', + light: 'rgb(142, 0, 69)', + lightest: 'rgb(149, 0, 72)', + middark: 'rgb(255, 150, 189)', + midlight: 'rgb(116, 0, 57)', }, }, + $value: 'rgb(142, 0, 69)', }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.magenta', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'alias.border-color-translucent', - '$type': 'color', - '$value': '#0000001a', - '$extensions': { + id: 'global.color.magenta.700', + $type: 'color', + $extensions: { mode: { - dark: '#ffffff1a', - darkest: '#ffffff1a', - light: '#0000001a', - lightest: '#0000001a', - middark: '#ffffff1a', - midlight: '#0000001a', + dark: '#ff8fb9', + darkest: '#fc7cad', + light: '#8e0045', + lightest: '#950048', + middark: '#ff96bd', + midlight: '#740039', }, }, + $value: '#8e0045', }, - 'alias.radial-reaction-color': { - '_original': { - '$type': 'color', - '$value': 'rgba(34, 34, 34, 0.6)', - default: { - '$extensions': { - mode: { - dark: 'rgba(235, 235, 235, 0.6)', - darkest: 'rgba(235, 235, 235, 0.6)', - light: 'rgba(34, 34, 34, 0.6)', - lightest: 'rgba(34, 34, 34, 0.6)', - middark: 'rgba(236, 236, 236, 0.6)', - midlight: 'rgba(33, 33, 33, 0.6)', - }, - }, - }, + 'global.color.opacity.0': { + _original: { + $value: 0, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'alias.radial-reaction-color', - '$type': 'color', - '$value': '#22222299', - default: { - '$extensions': { - mode: { - dark: 'rgba(235, 235, 235, 0.6)', - darkest: 'rgba(235, 235, 235, 0.6)', - light: 'rgba(34, 34, 34, 0.6)', - lightest: 'rgba(34, 34, 34, 0.6)', - middark: 'rgba(236, 236, 236, 0.6)', - midlight: 'rgba(33, 33, 33, 0.6)', - }, + id: 'global.color.opacity.0', + $type: 'number', + $value: 0, + }, + 'global.color.opacity.4': { + _original: { + $value: 0.04, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, + id: 'global.color.opacity.4', + $type: 'number', + $value: 0.04, }, - 'alias.pasteboard-background-color': { - '_original': { - '$type': 'color', - '$value': '{global.color.gray.300}', - '$extensions': { - mode: { - dark: '{global.color.gray.50}', - darkest: '{global.color.gray.50}', - light: '{global.color.gray.300}', - lightest: '{global.color.gray.300}', - middark: '{global.color.gray.50}', - midlight: '{global.color.gray.300}', - }, - }, + 'global.color.opacity.5': { + _original: { + $value: 0.05, }, - '_group': { - id: 'alias', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'alias.pasteboard-background-color', - '$type': 'color', - '$value': '#d5d5d5', - '$extensions': { - mode: { - dark: '#ffffff', - darkest: '#ffffff', - light: '#d5d5d5', - lightest: '#d5d5d5', - middark: '#ffffff', - midlight: '#d5d5d5', + id: 'global.color.opacity.5', + $type: 'number', + $value: 0.05, + }, + 'global.color.opacity.6': { + _original: { + $value: 0.06, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, + id: 'global.color.opacity.6', + $type: 'number', + $value: 0.06, }, - 'alias.appframe.border-color': { - '_original': { - '$type': 'color', - '$value': '{global.color.gray.300}', - '$extensions': { - mode: { - dark: '{global.color.gray.50}', - darkest: '{global.color.gray.50}', - light: '{global.color.gray.300}', - lightest: '{global.color.gray.300}', - middark: '{global.color.gray.50}', - midlight: '{global.color.gray.300}', - }, - }, + 'global.color.opacity.7': { + _original: { + $value: 0.07, }, - '_group': { - id: 'alias.appframe', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'alias.appframe.border-color', - '$type': 'color', - '$value': '#d5d5d5', - '$extensions': { - mode: { - dark: '#ffffff', - darkest: '#ffffff', - light: '#d5d5d5', - lightest: '#d5d5d5', - middark: '#ffffff', - midlight: '#d5d5d5', + id: 'global.color.opacity.7', + $type: 'number', + $value: 0.07, + }, + 'global.color.opacity.8': { + _original: { + $value: 0.08, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, + id: 'global.color.opacity.8', + $type: 'number', + $value: 0.08, }, - 'alias.appframe.separator-color': { - '_original': { - '$type': 'color', - '$value': '{global.color.gray.300}', - '$extensions': { - mode: { - dark: '{global.color.gray.50}', - darkest: '{global.color.gray.50}', - light: '{global.color.gray.300}', - lightest: '{global.color.gray.300}', - middark: '{global.color.gray.50}', - midlight: '{global.color.gray.300}', - }, - }, + 'global.color.opacity.10': { + _original: { + $value: 0.1, }, - '_group': { - id: 'alias.appframe', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'alias.appframe.separator-color', - '$type': 'color', - '$value': '#d5d5d5', - '$extensions': { - mode: { - dark: '#ffffff', - darkest: '#ffffff', - light: '#d5d5d5', - lightest: '#d5d5d5', - middark: '#ffffff', - midlight: '#d5d5d5', + id: 'global.color.opacity.10', + $type: 'number', + $value: 0.1, + }, + 'global.color.opacity.15': { + _original: { + $value: 0.15, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, + id: 'global.color.opacity.15', + $type: 'number', + $value: 0.15, }, - 'scrollbar.mac.s.track-background-color': { - '_original': { - '$type': 'color', - '$extensions': { - mode: { - dark: '{global.color.gray.100}', - darkest: '{global.color.gray.100}', - light: '{global.color.gray.75}', - middark: 'transparent', - midlight: 'transparent', - }, - }, - '$value': '{global.color.gray.75}', + 'global.color.opacity.20': { + _original: { + $value: 0.2, }, - '_group': { - id: 'scrollbar.mac.s', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'scrollbar.mac.s.track-background-color', - '$type': 'color', - '$extensions': { - mode: { - dark: '#f8f8f8', - darkest: '#f8f8f8', - light: '#fdfdfd', - middark: '#00000000', - midlight: '#00000000', + id: 'global.color.opacity.20', + $type: 'number', + $value: 0.2, + }, + 'global.color.opacity.25': { + _original: { + $value: 0.25, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - '$value': '#fdfdfd', + id: 'global.color.opacity.25', + $type: 'number', + $value: 0.25, }, - 'scrollbar.mac.m.track-background-color': { - '_original': { - '$type': 'color', - '$extensions': { - mode: { - dark: '{global.color.gray.100}', - darkest: '{global.color.gray.100}', - light: '{global.color.gray.75}', - middark: 'transparent', - midlight: 'transparent', - }, - }, - '$value': '{global.color.gray.75}', + 'global.color.opacity.30': { + _original: { + $value: 0.3, }, - '_group': { - id: 'scrollbar.mac.m', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'scrollbar.mac.m.track-background-color', - '$type': 'color', - '$extensions': { - mode: { - dark: '#f8f8f8', - darkest: '#f8f8f8', - light: '#fdfdfd', - middark: '#00000000', - midlight: '#00000000', + id: 'global.color.opacity.30', + $type: 'number', + $value: 0.3, + }, + 'global.color.opacity.40': { + _original: { + $value: 0.4, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - '$value': '#fdfdfd', + id: 'global.color.opacity.40', + $type: 'number', + $value: 0.4, }, - 'scrollbar.mac.l.track-background-color': { - '_original': { - '$type': 'color', - '$extensions': { - mode: { - dark: '{global.color.gray.100}', - darkest: '{global.color.gray.100}', - light: '{global.color.gray.75}', - middark: 'transparent', - midlight: 'transparent', - }, + 'global.color.opacity.42': { + _original: { + $value: 0.42, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, - '$value': '{global.color.gray.75}', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - '_group': { - id: 'scrollbar.mac.l', - '$extensions': { + id: 'global.color.opacity.42', + $type: 'number', + $value: 0.42, + }, + 'global.color.opacity.50': { + _original: { + $value: 0.5, + }, + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'scrollbar.mac.l.track-background-color', - '$type': 'color', - '$extensions': { - mode: { - dark: '#f8f8f8', - darkest: '#f8f8f8', - light: '#fdfdfd', - middark: '#00000000', - midlight: '#00000000', - }, - }, - '$value': '#fdfdfd', + id: 'global.color.opacity.50', + $type: 'number', + $value: 0.5, }, - 'well.background-color': { - '_original': { - '$type': 'color', - '$extensions': { - mode: { - dark: 'rgba(235, 235, 235, 0.02)', - darkest: 'rgba(235, 235, 235, 0.02)', - light: 'rgba(34, 34, 34, 0.02)', - middark: 'rgba(236, 236, 236, 0.02)', - midlight: 'rgba(33, 33, 33, 0.02)', - }, - }, - '$value': 'rgba(34, 34, 34, 0.02)', + 'global.color.opacity.55': { + _original: { + $value: 0.55, }, - '_group': { - id: 'well', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'well.background-color', - '$type': 'color', - '$extensions': { - mode: { - dark: '#ebebeb05', - darkest: '#ebebeb05', - light: '#22222205', - middark: '#ececec05', - midlight: '#21212105', + id: 'global.color.opacity.55', + $type: 'number', + $value: 0.55, + }, + 'global.color.opacity.60': { + _original: { + $value: 0.6, + }, + _group: { + id: 'global.color.opacity', + $extensions: { + requiredModes: [], }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - '$value': '#22222205', + id: 'global.color.opacity.60', + $type: 'number', + $value: 0.6, }, - 'font.family.clean': { - '_original': { - '$value': 'Adobe Clean', + 'global.color.opacity.70': { + _original: { + $value: 0.7, }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'font.family.clean', - '$type': 'fontFamily', - '$value': ['Adobe Clean'], + id: 'global.color.opacity.70', + $type: 'number', + $value: 0.7, }, - 'font.family.cleanSerif': { - '_original': { - '$value': 'Adobe Clean Serif', + 'global.color.opacity.80': { + _original: { + $value: 0.8, }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'font.family.cleanSerif', - '$type': 'fontFamily', - '$value': ['Adobe Clean Serif'], + id: 'global.color.opacity.80', + $type: 'number', + $value: 0.8, }, - 'font.family.cleanHan': { - '_original': { - '$value': 'Adobe Clean Han', + 'global.color.opacity.90': { + _original: { + $value: 0.9, }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'font.family.cleanHan', - '$type': 'fontFamily', - '$value': ['Adobe Clean Han'], + id: 'global.color.opacity.90', + $type: 'number', + $value: 0.9, }, - 'font.family.sourceCode': { - '_original': { - '$value': 'Source Code Pro', + 'global.color.opacity.100': { + _original: { + $value: 1, }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'global.color.opacity', + $extensions: { requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'number', }, - id: 'font.family.sourceCode', - '$type': 'fontFamily', - '$value': ['Source Code Pro'], + id: 'global.color.opacity.100', + $type: 'number', + $value: 1, }, - 'font.size.50': { - '_original': { - '$value': '11px', - '$extensions': { + 'global.color.orange.400': { + _original: { + $value: 'rgb(246, 133, 17)', + $extensions: { mode: { - desktop: '11px', - mobile: '13px', + dark: 'rgb(244, 129, 12)', + darkest: 'rgb(232, 116, 0)', + light: 'rgb(246, 133, 17)', + lightest: 'rgb(250, 139, 26)', + middark: 'rgb(248, 137, 22)', + midlight: 'rgb(228, 111, 0)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.orange', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.50', - '$type': 'dimension', - '$value': '11px', - '$extensions': { + id: 'global.color.orange.400', + $type: 'color', + $value: '#f68511', + $extensions: { mode: { - desktop: '11px', - mobile: '13px', + dark: '#f4810c', + darkest: '#e87400', + light: '#f68511', + lightest: '#fa8b1a', + middark: '#f88916', + midlight: '#e46f00', }, }, }, - 'font.size.75': { - '_original': { - '$value': '12px', - '$extensions': { + 'global.color.orange.500': { + _original: { + $value: 'rgb(228, 111, 0)', + $extensions: { mode: { - desktop: '12px', - mobile: '13px', + dark: 'rgb(254, 154, 46)', + darkest: 'rgb(249, 137, 23)', + light: 'rgb(228, 111, 0)', + lightest: 'rgb(233, 117, 0)', + middark: 'rgb(255, 161, 57)', + midlight: 'rgb(205, 95, 0)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.orange', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.75', - '$type': 'dimension', - '$value': '12px', - '$extensions': { + id: 'global.color.orange.500', + $type: 'color', + $value: '#e46f00', + $extensions: { mode: { - desktop: '12px', - mobile: '13px', + dark: '#fe9a2e', + darkest: '#f98917', + light: '#e46f00', + lightest: '#e97500', + middark: '#ffa139', + midlight: '#cd5f00', }, }, }, - 'font.size.100': { - '_original': { - '$value': '14px', - '$extensions': { + 'global.color.orange.600': { + _original: { + $value: 'rgb(203, 93, 0)', + $extensions: { mode: { - desktop: '14px', - mobile: '17px', + dark: 'rgb(255, 181, 88)', + darkest: 'rgb(255, 162, 59)', + light: 'rgb(203, 93, 0)', + lightest: 'rgb(209, 97, 0)', + middark: 'rgb(255, 186, 97)', + midlight: 'rgb(181, 79, 0)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.orange', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.100', - '$type': 'dimension', - '$value': '14px', - '$extensions': { + id: 'global.color.orange.600', + $type: 'color', + $value: '#cb5d00', + $extensions: { mode: { - desktop: '14px', - mobile: '17px', + dark: '#ffb558', + darkest: '#ffa23b', + light: '#cb5d00', + lightest: '#d16100', + middark: '#ffba61', + midlight: '#b54f00', }, }, }, - 'font.size.200': { - '_original': { - '$value': '16px', - '$extensions': { + 'global.color.orange.700': { + _original: { + $value: 'rgb(177, 76, 0)', + $extensions: { mode: { - desktop: '16px', - mobile: '19px', + dark: 'rgb(253, 206, 136)', + darkest: 'rgb(255, 188, 102)', + light: 'rgb(177, 76, 0)', + lightest: 'rgb(182, 80, 0)', + middark: 'rgb(253, 208, 142)', + midlight: 'rgb(155, 64, 0)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.orange', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.200', - '$type': 'dimension', - '$value': '16px', - '$extensions': { + id: 'global.color.orange.700', + $type: 'color', + $value: '#b14c00', + $extensions: { mode: { - desktop: '16px', - mobile: '19px', + dark: '#fdce88', + darkest: '#ffbc66', + light: '#b14c00', + lightest: '#b65000', + middark: '#fdd08e', + midlight: '#9b4000', }, }, }, - 'font.size.300': { - '_original': { - '$value': '18px', - '$extensions': { + 'global.color.purple.400': { + _original: { + $extensions: { mode: { - desktop: '18px', - mobile: '22px', + dark: 'rgb(157, 87, 243)', + darkest: 'rgb(145, 70, 236)', + light: 'rgb(157, 87, 244)', + lightest: 'rgb(161, 93, 246)', + middark: 'rgb(166, 100, 247)', + midlight: 'rgb(141, 66, 233)', }, }, + $value: 'rgb(157, 87, 244)', }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.purple', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.300', - '$type': 'dimension', - '$value': '18px', - '$extensions': { + id: 'global.color.purple.400', + $type: 'color', + $extensions: { mode: { - desktop: '18px', - mobile: '22px', + dark: '#9d57f3', + darkest: '#9146ec', + light: '#9d57f4', + lightest: '#a15df6', + middark: '#a664f7', + midlight: '#8d42e9', }, }, + $value: '#9d57f4', }, - 'font.size.400': { - '_original': { - '$value': '20px', - '$extensions': { + 'global.color.purple.500': { + _original: { + $extensions: { mode: { - desktop: '20px', - mobile: '24px', + dark: 'rgb(172, 111, 249)', + darkest: 'rgb(162, 94, 246)', + light: 'rgb(137, 61, 231)', + lightest: 'rgb(142, 67, 234)', + middark: 'rgb(179, 121, 250)', + midlight: 'rgb(120, 42, 216)', }, }, + $value: 'rgb(137, 61, 231)', }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.purple', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.400', - '$type': 'dimension', - '$value': '20px', - '$extensions': { + id: 'global.color.purple.500', + $type: 'color', + $extensions: { mode: { - desktop: '20px', - mobile: '24px', + dark: '#ac6ff9', + darkest: '#a25ef6', + light: '#893de7', + lightest: '#8e43ea', + middark: '#b379fa', + midlight: '#782ad8', }, }, + $value: '#893de7', }, - 'font.size.500': { - '_original': { - '$value': '22px', - '$extensions': { + 'global.color.purple.600': { + _original: { + $extensions: { mode: { - desktop: '22px', - mobile: '27px', + dark: 'rgb(187, 135, 251)', + darkest: 'rgb(178, 119, 250)', + light: 'rgb(115, 38, 211)', + lightest: 'rgb(120, 43, 216)', + middark: 'rgb(192, 143, 252)', + midlight: 'rgb(97, 22, 190)', }, }, + $value: 'rgb(115, 38, 211)', }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.purple', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.500', - '$type': 'dimension', - '$value': '22px', - '$extensions': { + id: 'global.color.purple.600', + $type: 'color', + $extensions: { mode: { - desktop: '22px', - mobile: '27px', + dark: '#bb87fb', + darkest: '#b277fa', + light: '#7326d3', + lightest: '#782bd8', + middark: '#c08ffc', + midlight: '#6116be', }, }, + $value: '#7326d3', }, - 'font.size.600': { - '_original': { - '$value': '25px', - '$extensions': { + 'global.color.purple.700': { + _original: { + $extensions: { mode: { - desktop: '25px', - mobile: '31px', + dark: 'rgb(202, 159, 252)', + darkest: 'rgb(192, 143, 252)', + light: 'rgb(93, 19, 183)', + lightest: 'rgb(98, 23, 190)', + middark: 'rgb(205, 165, 253)', + midlight: 'rgb(74, 12, 153)', }, }, + $value: 'rgb(93, 19, 183)', }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.purple', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.600', - '$type': 'dimension', - '$value': '25px', - '$extensions': { + id: 'global.color.purple.700', + $type: 'color', + $extensions: { mode: { - desktop: '25px', - mobile: '31px', + dark: '#ca9ffc', + darkest: '#c08ffc', + light: '#5d13b7', + lightest: '#6217be', + middark: '#cda5fd', + midlight: '#4a0c99', }, }, + $value: '#5d13b7', }, - 'font.size.700': { - '_original': { - '$value': '28px', - '$extensions': { + 'global.color.red.400': { + _original: { + $value: 'rgb(234, 56, 41)', + $extensions: { mode: { - desktop: '28px', - mobile: '34px', - }, - }, + dark: 'rgb(234, 56, 41)', + darkest: 'rgb(221, 33, 24)', + light: 'rgb(234, 56, 41)', + lightest: 'rgb(237, 64, 48)', + middark: 'rgb(241, 74, 55)', + midlight: 'rgb(216, 26, 19)', + }, + }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.red', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.700', - '$type': 'dimension', - '$value': '28px', - '$extensions': { + id: 'global.color.red.400', + $type: 'color', + $value: '#ea3829', + $extensions: { mode: { - desktop: '28px', - mobile: '34px', + dark: '#ea3829', + darkest: '#dd2118', + light: '#ea3829', + lightest: '#ed4030', + middark: '#f14a37', + midlight: '#d81a13', }, }, }, - 'font.size.800': { - '_original': { - '$value': '32px', - '$extensions': { + 'global.color.red.500': { + _original: { + $value: 'rgb(211, 21, 16)', + $extensions: { mode: { - desktop: '32px', - mobile: '39px', + dark: 'rgb(246, 88, 67)', + darkest: 'rgb(238, 67, 49)', + light: 'rgb(211, 21, 16)', + lightest: 'rgb(217, 28, 21)', + middark: 'rgb(250, 101, 79)', + midlight: 'rgb(187, 2, 2)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.red', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.800', - '$type': 'dimension', - '$value': '32px', - '$extensions': { + id: 'global.color.red.500', + $type: 'color', + $value: '#d31510', + $extensions: { mode: { - desktop: '32px', - mobile: '39px', + dark: '#f65843', + darkest: '#ee4331', + light: '#d31510', + lightest: '#d91c15', + middark: '#fa654f', + midlight: '#bb0202', }, }, }, - 'font.size.900': { - '_original': { - '$value': '36px', - '$extensions': { + 'global.color.red.600': { + _original: { + $value: 'rgb(180, 0, 0)', + $extensions: { mode: { - desktop: '36px', - mobile: '44px', + dark: 'rgb(255, 117, 94)', + darkest: 'rgb(249, 99, 76)', + light: 'rgb(180, 0, 0)', + lightest: 'rgb(187, 2, 2)', + middark: 'rgb(255, 129, 107)', + midlight: 'rgb(153, 0, 0)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.red', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.900', - '$type': 'dimension', - '$value': '36px', - '$extensions': { + id: 'global.color.red.600', + $type: 'color', + $value: '#b40000', + $extensions: { mode: { - desktop: '36px', - mobile: '44px', + dark: '#ff755e', + darkest: '#f9634c', + light: '#b40000', + lightest: '#bb0202', + middark: '#ff816b', + midlight: '#990000', }, }, }, - 'font.size.1000': { - '_original': { - '$value': '40px', - '$extensions': { + 'global.color.red.700': { + _original: { + $value: 'rgb(147, 0, 0)', + $extensions: { mode: { - desktop: '40px', - mobile: '49px', + dark: 'rgb(255, 149, 129)', + darkest: 'rgb(255, 129, 107)', + light: 'rgb(147, 0, 0)', + lightest: 'rgb(154, 0, 0)', + middark: 'rgb(255, 156, 137)', + midlight: 'rgb(120, 0, 0)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.red', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.1000', - '$type': 'dimension', - '$value': '40px', - '$extensions': { + id: 'global.color.red.700', + $type: 'color', + $value: '#930000', + $extensions: { mode: { - desktop: '40px', - mobile: '49px', + dark: '#ff9581', + darkest: '#ff816b', + light: '#930000', + lightest: '#9a0000', + middark: '#ff9c89', + midlight: '#780000', }, }, }, - 'font.size.1100': { - '_original': { - '$value': '45px', - '$extensions': { + 'global.color.seafoam.400': { + _original: { + $value: 'rgb(0, 161, 154)', + $extensions: { mode: { - desktop: '45px', - mobile: '55px', + dark: 'rgb(0, 158, 152)', + darkest: 'rgb(0, 146, 140)', + light: 'rgb(0, 161, 154)', + lightest: 'rgb(0, 166, 160)', + middark: 'rgb(0, 167, 160)', + midlight: 'rgb(0, 142, 136)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.seafoam', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.1100', - '$type': 'dimension', - '$value': '45px', - '$extensions': { + id: 'global.color.seafoam.400', + $type: 'color', + $value: '#00a19a', + $extensions: { mode: { - desktop: '45px', - mobile: '55px', + dark: '#009e98', + darkest: '#00928c', + light: '#00a19a', + lightest: '#00a6a0', + middark: '#00a7a0', + midlight: '#008e88', }, }, }, - 'font.size.1200': { - '_original': { - '$value': '50px', - '$extensions': { + 'global.color.seafoam.500': { + _original: { + $value: 'rgb(0, 140, 135)', + $extensions: { mode: { - desktop: '50px', - mobile: '62px', + dark: 'rgb(3, 178, 171)', + darkest: 'rgb(0, 165, 159)', + light: 'rgb(0, 140, 135)', + lightest: 'rgb(0, 145, 139)', + middark: 'rgb(25, 184, 177)', + midlight: 'rgb(0, 122, 117)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.seafoam', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.1200', - '$type': 'dimension', - '$value': '50px', - '$extensions': { + id: 'global.color.seafoam.500', + $type: 'color', + $value: '#008c87', + $extensions: { mode: { - desktop: '50px', - mobile: '62px', + dark: '#03b2ab', + darkest: '#00a59f', + light: '#008c87', + lightest: '#00918b', + middark: '#19b8b1', + midlight: '#007a75', }, }, }, - 'font.size.1300': { - '_original': { - '$value': '60px', - '$extensions': { + 'global.color.seafoam.600': { + _original: { + $value: 'rgb(0, 119, 114)', + $extensions: { mode: { - desktop: '60px', - mobile: '70px', + dark: 'rgb(54, 197, 189)', + darkest: 'rgb(26, 185, 178)', + light: 'rgb(0, 119, 114)', + lightest: 'rgb(0, 124, 118)', + middark: 'rgb(64, 201, 194)', + midlight: 'rgb(0, 103, 99)', }, }, }, - '_group': { - id: 'font.size', - '$extensions': { - requiredModes: ['desktop', 'mobile'], + _group: { + id: 'global.color.seafoam', + $extensions: { + requiredModes: [], }, - '$schema': '../../packages/core/tokens-schema.json', - '$name': 'Adobe Spectrum', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', }, - id: 'font.size.1300', - '$type': 'dimension', - '$value': '60px', - '$extensions': { + id: 'global.color.seafoam.600', + $type: 'color', + $value: '#007772', + $extensions: { mode: { - desktop: '60px', - mobile: '70px', + dark: '#36c5bd', + darkest: '#1ab9b2', + light: '#007772', + lightest: '#007c76', + middark: '#40c9c2', + midlight: '#006763', }, }, }, -}; - -export const modes = { - 'global.color.celery.400': { - dark: '#22b833', - darkest: '#0dab25', - light: '#27bb36', - lightest: '#30c13d', - middark: '#2dbe3a', - midlight: '#07a721', - }, - 'global.color.celery.500': { - dark: '#44ca49', - darkest: '#2dbf3a', - light: '#07a721', - lightest: '#0fac26', - middark: '#4ecf50', - midlight: '#009413', - }, - 'global.color.celery.600': { - dark: '#69dc63', - darkest: '#50d052', - light: '#009112', - lightest: '#009614', - middark: '#70df68', - midlight: '#007f0f', + 'global.color.seafoam.700': { + _original: { + $value: 'rgb(0, 99, 95)', + $extensions: { + mode: { + dark: 'rgb(93, 214, 207)', + darkest: 'rgb(66, 202, 195)', + light: 'rgb(0, 99, 95)', + lightest: 'rgb(0, 103, 99)', + middark: 'rgb(100, 217, 210)', + midlight: 'rgb(10, 83, 80)', + }, + }, + }, + _group: { + id: 'global.color.seafoam', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', + }, + id: 'global.color.seafoam.700', + $type: 'color', + $value: '#00635f', + $extensions: { + mode: { + dark: '#5dd6cf', + darkest: '#42cac3', + light: '#00635f', + lightest: '#006763', + middark: '#64d9d2', + midlight: '#0a5350', + }, + }, }, - 'global.color.celery.700': { - dark: '#8eeb7f', - darkest: '#73e06b', - light: '#007c0f', - lightest: '#00800f', - middark: '#92ed82', - midlight: '#006b0f', - }, - 'global.color.chartreuse.400': { - dark: '#94c008', - darkest: '#8ab403', - light: '#98c50a', - lightest: '#9dcb0d', - middark: '#99c50a', - midlight: '#86af02', - }, - 'global.color.chartreuse.500': { - dark: '#a6d312', - darkest: '#9ac60b', - light: '#87b103', - lightest: '#8bb604', - middark: '#a9d715', - midlight: '#779d00', - }, - 'global.color.chartreuse.600': { - dark: '#b8e525', - darkest: '#aad816', - light: '#769c00', - lightest: '#7aa200', - middark: '#bae828', - midlight: '#688a00', - }, - 'global.color.chartreuse.700': { - dark: '#cdf547', - darkest: '#bbe829', - light: '#678800', - lightest: '#6a8d00', - middark: '#cef64b', - midlight: '#5a7700', - }, - 'global.color.yellow.400': { - dark: '#e4c200', - darkest: '#d8b500', - light: '#e8c600', - lightest: '#eecd00', - middark: '#e8c500', - midlight: '#d3af00', + 'global.color.yellow.400': { + _original: { + $extensions: { + mode: { + dark: 'rgb(228, 194, 0)', + darkest: 'rgb(216, 181, 0)', + light: 'rgb(232, 198, 0)', + lightest: 'rgb(238, 205, 0)', + middark: 'rgb(232, 197, 0)', + midlight: 'rgb(211, 175, 0)', + }, + }, + $value: 'rgb(232, 198, 0)', + }, + _group: { + id: 'global.color.yellow', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', + }, + id: 'global.color.yellow.400', + $type: 'color', + $extensions: { + mode: { + dark: '#e4c200', + darkest: '#d8b500', + light: '#e8c600', + lightest: '#eecd00', + middark: '#e8c500', + midlight: '#d3af00', + }, + }, + $value: '#e8c600', }, 'global.color.yellow.500': { - dark: '#f4d500', - darkest: '#e9c700', - light: '#d7b300', - lightest: '#ddb900', - middark: '#f6d702', - midlight: '#c29d00', + _original: { + $extensions: { + mode: { + dark: 'rgb(244, 213, 0)', + darkest: 'rgb(233, 199, 0)', + light: 'rgb(215, 179, 0)', + lightest: 'rgb(221, 185, 0)', + middark: 'rgb(246, 215, 2)', + midlight: 'rgb(194, 157, 0)', + }, + }, + $value: 'rgb(215, 179, 0)', + }, + _group: { + id: 'global.color.yellow', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', + }, + id: 'global.color.yellow.500', + $type: 'color', + $extensions: { + mode: { + dark: '#f4d500', + darkest: '#e9c700', + light: '#d7b300', + lightest: '#ddb900', + middark: '#f6d702', + midlight: '#c29d00', + }, + }, + $value: '#d7b300', }, 'global.color.yellow.600': { - dark: '#f9e85c', - darkest: '#f7d804', - light: '#c49f00', - lightest: '#c9a400', - middark: '#f9ea63', - midlight: '#b08c00', + _original: { + $extensions: { + mode: { + dark: 'rgb(249, 232, 92)', + darkest: 'rgb(247, 216, 4)', + light: 'rgb(196, 159, 0)', + lightest: 'rgb(201, 164, 0)', + middark: 'rgb(249, 234, 99)', + midlight: 'rgb(176, 140, 0)', + }, + }, + $value: 'rgb(196, 159, 0)', + }, + _group: { + id: 'global.color.yellow', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', + }, + id: 'global.color.yellow.600', + $type: 'color', + $extensions: { + mode: { + dark: '#f9e85c', + darkest: '#f7d804', + light: '#c49f00', + lightest: '#c9a400', + middark: '#f9ea63', + midlight: '#b08c00', + }, + }, + $value: '#c49f00', }, 'global.color.yellow.700': { - dark: '#fcf6bb', - darkest: '#f9e961', - light: '#b08c00', - lightest: '#b59000', - middark: '#fdf6bf', - midlight: '#9d7a00', + _original: { + $extensions: { + mode: { + dark: 'rgb(252, 246, 187)', + darkest: 'rgb(249, 233, 97)', + light: 'rgb(176, 140, 0)', + lightest: 'rgb(181, 144, 0)', + middark: 'rgb(253, 246, 191)', + midlight: 'rgb(157, 122, 0)', + }, + }, + $value: 'rgb(176, 140, 0)', + }, + _group: { + id: 'global.color.yellow', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + $type: 'color', + }, + id: 'global.color.yellow.700', + $type: 'color', + $extensions: { + mode: { + dark: '#fcf6bb', + darkest: '#f9e961', + light: '#b08c00', + lightest: '#b59000', + middark: '#fdf6bf', + midlight: '#9d7a00', + }, + }, + $value: '#b08c00', }, - 'global.color.magenta.400': { - dark: '#de3d82', - darkest: '#d12b72', - light: '#de3d82', - lightest: '#e24487', - middark: '#e74b8d', - midlight: '#cc276e', + 'scrollbar.mac.l.track-background-color': { + _original: { + $type: 'color', + $extensions: { + mode: { + dark: '{global.color.gray.100}', + darkest: '{global.color.gray.100}', + light: '{global.color.gray.75}', + middark: 'transparent', + midlight: 'transparent', + }, + }, + $value: '{global.color.gray.75}', + }, + _group: { + id: 'scrollbar.mac.l', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + }, + id: 'scrollbar.mac.l.track-background-color', + $type: 'color', + $extensions: { + mode: { + dark: '#f8f8f8', + darkest: '#f8f8f8', + light: '#fdfdfd', + middark: '#00000000', + midlight: '#00000000', + }, + }, + $value: '#fdfdfd', }, - 'global.color.magenta.500': { - dark: '#ed5795', - darkest: '#e34589', - light: '#c82269', - lightest: '#cd286f', - middark: '#f2639d', - midlight: '#b30f58', + 'scrollbar.mac.m.track-background-color': { + _original: { + $type: 'color', + $extensions: { + mode: { + dark: '{global.color.gray.100}', + darkest: '{global.color.gray.100}', + light: '{global.color.gray.75}', + middark: 'transparent', + midlight: 'transparent', + }, + }, + $value: '{global.color.gray.75}', + }, + _group: { + id: 'scrollbar.mac.m', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + }, + id: 'scrollbar.mac.m.track-background-color', + $type: 'color', + $extensions: { + mode: { + dark: '#f8f8f8', + darkest: '#f8f8f8', + light: '#fdfdfd', + middark: '#00000000', + midlight: '#00000000', + }, + }, + $value: '#fdfdfd', }, - 'global.color.magenta.600': { - dark: '#f972a7', - darkest: '#f1619c', - light: '#ad0955', - lightest: '#b30f59', - middark: '#fc7bad', - midlight: '#950048', + 'scrollbar.mac.s.track-background-color': { + _original: { + $type: 'color', + $extensions: { + mode: { + dark: '{global.color.gray.100}', + darkest: '{global.color.gray.100}', + light: '{global.color.gray.75}', + middark: 'transparent', + midlight: 'transparent', + }, + }, + $value: '{global.color.gray.75}', + }, + _group: { + id: 'scrollbar.mac.s', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + }, + id: 'scrollbar.mac.s.track-background-color', + $type: 'color', + $extensions: { + mode: { + dark: '#f8f8f8', + darkest: '#f8f8f8', + light: '#fdfdfd', + middark: '#00000000', + midlight: '#00000000', + }, + }, + $value: '#fdfdfd', }, - 'global.color.magenta.700': { - dark: '#ff8fb9', - darkest: '#fc7cad', - light: '#8e0045', - lightest: '#950048', - middark: '#ff96bd', - midlight: '#740039', + 'well.background-color': { + _original: { + $type: 'color', + $extensions: { + mode: { + dark: 'rgba(235, 235, 235, 0.02)', + darkest: 'rgba(235, 235, 235, 0.02)', + light: 'rgba(34, 34, 34, 0.02)', + middark: 'rgba(236, 236, 236, 0.02)', + midlight: 'rgba(33, 33, 33, 0.02)', + }, + }, + $value: 'rgba(34, 34, 34, 0.02)', + }, + _group: { + id: 'well', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'Adobe Spectrum', + }, + id: 'well.background-color', + $type: 'color', + $extensions: { + mode: { + dark: '#ebebeb05', + darkest: '#ebebeb05', + light: '#22222205', + middark: '#ececec05', + midlight: '#21212105', + }, + }, + $value: '#22222205', }, - 'global.color.fuchsia.400': { - dark: '#cd39ce', - darkest: '#bf2bbf', - light: '#cd3ace', - lightest: '#d33fd4', - middark: '#d846d9', - midlight: '#ba26ba', +}; + +export const modes = { + 'alias.appframe.border-color': { + dark: '#ffffff', + darkest: '#ffffff', + light: '#d5d5d5', + lightest: '#d5d5d5', + middark: '#ffffff', + midlight: '#d5d5d5', }, - 'global.color.fuchsia.500': { - dark: '#df51e0', - darkest: '#d341d5', - light: '#b622b7', - lightest: '#bc27bb', - middark: '#e55de6', - midlight: '#a309a3', + 'alias.appframe.separator-color': { + dark: '#ffffff', + darkest: '#ffffff', + light: '#d5d5d5', + lightest: '#d5d5d5', + middark: '#ffffff', + midlight: '#d5d5d5', }, - 'global.color.fuchsia.600': { - dark: '#eb6eec', - darkest: '#e45be5', - light: '#9d039e', - lightest: '#a30aa3', - middark: '#ef78ee', - midlight: '#860087', + 'alias.background-color-hover-overly': { + dark: '#ffffff0f', + darkest: '#ffffff14', + light: '#0000000a', + lightest: '#0000000a', + middark: '#ffffff0d', + midlight: '#0000000a', }, - 'global.color.fuchsia.700': { - dark: '#f48cf2', - darkest: '#ef78ee', - light: '#800081', - lightest: '#870088', - middark: '#f693f3', - midlight: '#680468', + 'alias.background-color-modal-overlay': { + dark: '#00000080', + darkest: '#00000099', + light: '#00000066', + lightest: '#00000066', + middark: '#00000066', + midlight: '#00000066', }, - 'global.color.purple.400': { - dark: '#9d57f3', - darkest: '#9146ec', - light: '#9d57f4', - lightest: '#a15df6', - middark: '#a664f7', - midlight: '#8d42e9', + 'alias.background-color-primary': { + dark: '#f8f8f8', + darkest: '#f8f8f8', + light: '#ffffff', + lightest: '#ffffff', + middark: '#f8f8f8', + midlight: '#ffffff', }, - 'global.color.purple.500': { - dark: '#ac6ff9', - darkest: '#a25ef6', - light: '#893de7', - lightest: '#8e43ea', - middark: '#b379fa', - midlight: '#782ad8', + 'alias.background-color-quickactions': { + dark: '#323232e6', + darkest: '#1d1d1de6', + light: '#f8f8f8e6', + lightest: '#ffffffe6', + middark: '#4b4b4be6', + midlight: '#dbdbdbe6', + }, + 'alias.background-color-secondary': { + dark: '#fdfdfd', + darkest: '#fdfdfd', + light: '#f8f8f8', + lightest: '#f8f8f8', + middark: '#fdfdfd', + midlight: '#f8f8f8', }, - 'global.color.purple.600': { - dark: '#bb87fb', - darkest: '#b277fa', - light: '#7326d3', - lightest: '#782bd8', - middark: '#c08ffc', - midlight: '#6116be', + 'alias.border-color-translucent': { + dark: '#ffffff1a', + darkest: '#ffffff1a', + light: '#0000001a', + lightest: '#0000001a', + middark: '#ffffff1a', + midlight: '#0000001a', }, - 'global.color.purple.700': { - dark: '#ca9ffc', - darkest: '#c08ffc', - light: '#5d13b7', - lightest: '#6217be', - middark: '#cda5fd', - midlight: '#4a0c99', + 'alias.dropshadow-color': { + dark: '#00000080', + darkest: '#000000cc', + light: '#00000026', + lightest: '#00000026', + middark: '#0000004d', + midlight: '#00000026', }, - 'global.color.indigo.400': { - dark: '#686df4', - darkest: '#5a60eb', - light: '#686df4', - lightest: '#6d73f6', - middark: '#7378f8', - midlight: '#565ce7', + 'alias.highlight-down': { + dark: '#ffffff1a', + darkest: '#ffffff26', + light: '#0000001a', + lightest: '#0000001a', + middark: '#ffffff1a', + midlight: '#0000001a', }, - 'global.color.indigo.500': { - dark: '#7c81fb', - darkest: '#6e73f6', - light: '#5258e4', - lightest: '#575de8', - middark: '#858afd', - midlight: '#4449d0', + 'alias.highlight-hover': { + dark: '#ffffff12', + darkest: '#ffffff14', + light: '#0000000f', + lightest: '#0000000f', + middark: '#ffffff0f', + midlight: '#0000000f', }, - 'global.color.indigo.600': { - dark: '#9195ff', - darkest: '#8488fd', - light: '#4046ca', - lightest: '#444ad0', - middark: '#989dff', - midlight: '#3439b0', + 'alias.highlight-selected': { + dark: '#54a3f626', + darkest: '#4096f333', + light: '#0265dc1a', + lightest: '#0469e31a', + middark: '#5eaaf71a', + midlight: '#0057be1a', }, - 'global.color.indigo.700': { - dark: '#a7aaff', - darkest: '#999dff', - light: '#3236a8', - lightest: '#353ab0', - middark: '#acb0ff', - midlight: '#272b8b', + 'alias.highlight-selected-hover': { + dark: '#54a3f640', + darkest: '#4096f34d', + light: '#0265dc33', + lightest: '#0469e333', + middark: '#5eaaf733', + midlight: '#0057be33', }, - 'global.color.seafoam.400': { - dark: '#009e98', - darkest: '#00928c', - light: '#00a19a', - lightest: '#00a6a0', - middark: '#00a7a0', - midlight: '#008e88', + 'alias.pasteboard-background-color': { + dark: '#ffffff', + darkest: '#ffffff', + light: '#d5d5d5', + lightest: '#d5d5d5', + middark: '#ffffff', + midlight: '#d5d5d5', }, - 'global.color.seafoam.500': { - dark: '#03b2ab', - darkest: '#00a59f', - light: '#008c87', - lightest: '#00918b', - middark: '#19b8b1', - midlight: '#007a75', + 'alias.text-highlight-color': { + dark: '#54a3f640', + darkest: '#4096f34d', + light: '#0265dc33', + lightest: '#0469e333', + middark: '#5eaaf733', + midlight: '#0057be33', }, - 'global.color.seafoam.600': { - dark: '#36c5bd', - darkest: '#1ab9b2', - light: '#007772', - lightest: '#007c76', - middark: '#40c9c2', - midlight: '#006763', + 'font.size.50': { + desktop: '11px', + mobile: '13px', }, - 'global.color.seafoam.700': { - dark: '#5dd6cf', - darkest: '#42cac3', - light: '#00635f', - lightest: '#006763', - middark: '#64d9d2', - midlight: '#0a5350', + 'font.size.75': { + desktop: '12px', + mobile: '13px', }, - 'global.color.red.400': { - dark: '#ea3829', - darkest: '#dd2118', - light: '#ea3829', - lightest: '#ed4030', - middark: '#f14a37', - midlight: '#d81a13', + 'font.size.100': { + desktop: '14px', + mobile: '17px', }, - 'global.color.red.500': { - dark: '#f65843', - darkest: '#ee4331', - light: '#d31510', - lightest: '#d91c15', - middark: '#fa654f', - midlight: '#bb0202', + 'font.size.200': { + desktop: '16px', + mobile: '19px', }, - 'global.color.red.600': { - dark: '#ff755e', - darkest: '#f9634c', - light: '#b40000', - lightest: '#bb0202', - middark: '#ff816b', - midlight: '#990000', + 'font.size.300': { + desktop: '18px', + mobile: '22px', }, - 'global.color.red.700': { - dark: '#ff9581', - darkest: '#ff816b', - light: '#930000', - lightest: '#9a0000', - middark: '#ff9c89', - midlight: '#780000', + 'font.size.400': { + desktop: '20px', + mobile: '24px', }, - 'global.color.orange.400': { - dark: '#f4810c', - darkest: '#e87400', - light: '#f68511', - lightest: '#fa8b1a', - middark: '#f88916', - midlight: '#e46f00', + 'font.size.500': { + desktop: '22px', + mobile: '27px', }, - 'global.color.orange.500': { - dark: '#fe9a2e', - darkest: '#f98917', - light: '#e46f00', - lightest: '#e97500', - middark: '#ffa139', - midlight: '#cd5f00', + 'font.size.600': { + desktop: '25px', + mobile: '31px', }, - 'global.color.orange.600': { - dark: '#ffb558', - darkest: '#ffa23b', - light: '#cb5d00', - lightest: '#d16100', - middark: '#ffba61', - midlight: '#b54f00', + 'font.size.700': { + desktop: '28px', + mobile: '34px', }, - 'global.color.orange.700': { - dark: '#fdce88', - darkest: '#ffbc66', - light: '#b14c00', - lightest: '#b65000', - middark: '#fdd08e', - midlight: '#9b4000', + 'font.size.800': { + desktop: '32px', + mobile: '39px', }, - 'global.color.green.400': { - dark: '#12a26c', - darkest: '#009562', - light: '#008f5d', - lightest: '#009461', - middark: '#1eaa74', - midlight: '#007d4f', + 'font.size.900': { + desktop: '36px', + mobile: '44px', }, - 'global.color.green.500': { - dark: '#2bb47d', - darkest: '#1ca872', - light: '#007a4d', - lightest: '#007e50', - middark: '#33bb83', - midlight: '#006941', + 'font.size.1000': { + desktop: '40px', + mobile: '49px', }, - 'global.color.green.600': { - dark: '#43c78f', - darkest: '#34bb84', - light: '#00653e', - lightest: '#006941', - middark: '#4acc94', - midlight: '#005534', + 'font.size.1100': { + desktop: '45px', + mobile: '55px', }, - 'global.color.green.700': { - dark: '#5ed9a2', - darkest: '#4bcd95', - light: '#005132', - lightest: '#005635', - middark: '#65dda7', - midlight: '#054128', + 'font.size.1200': { + desktop: '50px', + mobile: '62px', + }, + 'font.size.1300': { + desktop: '60px', + mobile: '70px', }, 'global.color.blue.400': { dark: '#348ff4', @@ -4275,6 +4103,102 @@ export const modes = { middark: '#95cdfc', midlight: '#003776', }, + 'global.color.celery.400': { + dark: '#22b833', + darkest: '#0dab25', + light: '#27bb36', + lightest: '#30c13d', + middark: '#2dbe3a', + midlight: '#07a721', + }, + 'global.color.celery.500': { + dark: '#44ca49', + darkest: '#2dbf3a', + light: '#07a721', + lightest: '#0fac26', + middark: '#4ecf50', + midlight: '#009413', + }, + 'global.color.celery.600': { + dark: '#69dc63', + darkest: '#50d052', + light: '#009112', + lightest: '#009614', + middark: '#70df68', + midlight: '#007f0f', + }, + 'global.color.celery.700': { + dark: '#8eeb7f', + darkest: '#73e06b', + light: '#007c0f', + lightest: '#00800f', + middark: '#92ed82', + midlight: '#006b0f', + }, + 'global.color.chartreuse.400': { + dark: '#94c008', + darkest: '#8ab403', + light: '#98c50a', + lightest: '#9dcb0d', + middark: '#99c50a', + midlight: '#86af02', + }, + 'global.color.chartreuse.500': { + dark: '#a6d312', + darkest: '#9ac60b', + light: '#87b103', + lightest: '#8bb604', + middark: '#a9d715', + midlight: '#779d00', + }, + 'global.color.chartreuse.600': { + dark: '#b8e525', + darkest: '#aad816', + light: '#769c00', + lightest: '#7aa200', + middark: '#bae828', + midlight: '#688a00', + }, + 'global.color.chartreuse.700': { + dark: '#cdf547', + darkest: '#bbe829', + light: '#678800', + lightest: '#6a8d00', + middark: '#cef64b', + midlight: '#5a7700', + }, + 'global.color.fuchsia.400': { + dark: '#cd39ce', + darkest: '#bf2bbf', + light: '#cd3ace', + lightest: '#d33fd4', + middark: '#d846d9', + midlight: '#ba26ba', + }, + 'global.color.fuchsia.500': { + dark: '#df51e0', + darkest: '#d341d5', + light: '#b622b7', + lightest: '#bc27bb', + middark: '#e55de6', + midlight: '#a309a3', + }, + 'global.color.fuchsia.600': { + dark: '#eb6eec', + darkest: '#e45be5', + light: '#9d039e', + lightest: '#a30aa3', + middark: '#ef78ee', + midlight: '#860087', + }, + 'global.color.fuchsia.700': { + dark: '#f48cf2', + darkest: '#ef78ee', + light: '#800081', + lightest: '#870088', + middark: '#f693f3', + midlight: '#680468', + }, 'global.color.gray.50': { dark: '#1d1d1d', darkest: '#000000', @@ -4363,127 +4287,263 @@ export const modes = { middark: '#ffffff', midlight: '#000000', }, - 'alias.background-color-primary': { - dark: '#f8f8f8', - darkest: '#f8f8f8', - light: '#ffffff', - lightest: '#ffffff', - middark: '#f8f8f8', - midlight: '#ffffff', + 'global.color.green.400': { + dark: '#12a26c', + darkest: '#009562', + light: '#008f5d', + lightest: '#009461', + middark: '#1eaa74', + midlight: '#007d4f', }, - 'alias.background-color-secondary': { - dark: '#fdfdfd', - darkest: '#fdfdfd', - light: '#f8f8f8', - lightest: '#f8f8f8', - middark: '#fdfdfd', - midlight: '#f8f8f8', + 'global.color.green.500': { + dark: '#2bb47d', + darkest: '#1ca872', + light: '#007a4d', + lightest: '#007e50', + middark: '#33bb83', + midlight: '#006941', + }, + 'global.color.green.600': { + dark: '#43c78f', + darkest: '#34bb84', + light: '#00653e', + lightest: '#006941', + middark: '#4acc94', + midlight: '#005534', + }, + 'global.color.green.700': { + dark: '#5ed9a2', + darkest: '#4bcd95', + light: '#005132', + lightest: '#005635', + middark: '#65dda7', + midlight: '#054128', + }, + 'global.color.indigo.400': { + dark: '#686df4', + darkest: '#5a60eb', + light: '#686df4', + lightest: '#6d73f6', + middark: '#7378f8', + midlight: '#565ce7', + }, + 'global.color.indigo.500': { + dark: '#7c81fb', + darkest: '#6e73f6', + light: '#5258e4', + lightest: '#575de8', + middark: '#858afd', + midlight: '#4449d0', + }, + 'global.color.indigo.600': { + dark: '#9195ff', + darkest: '#8488fd', + light: '#4046ca', + lightest: '#444ad0', + middark: '#989dff', + midlight: '#3439b0', + }, + 'global.color.indigo.700': { + dark: '#a7aaff', + darkest: '#999dff', + light: '#3236a8', + lightest: '#353ab0', + middark: '#acb0ff', + midlight: '#272b8b', + }, + 'global.color.magenta.400': { + dark: '#de3d82', + darkest: '#d12b72', + light: '#de3d82', + lightest: '#e24487', + middark: '#e74b8d', + midlight: '#cc276e', + }, + 'global.color.magenta.500': { + dark: '#ed5795', + darkest: '#e34589', + light: '#c82269', + lightest: '#cd286f', + middark: '#f2639d', + midlight: '#b30f58', + }, + 'global.color.magenta.600': { + dark: '#f972a7', + darkest: '#f1619c', + light: '#ad0955', + lightest: '#b30f59', + middark: '#fc7bad', + midlight: '#950048', + }, + 'global.color.magenta.700': { + dark: '#ff8fb9', + darkest: '#fc7cad', + light: '#8e0045', + lightest: '#950048', + middark: '#ff96bd', + midlight: '#740039', + }, + 'global.color.orange.400': { + dark: '#f4810c', + darkest: '#e87400', + light: '#f68511', + lightest: '#fa8b1a', + middark: '#f88916', + midlight: '#e46f00', + }, + 'global.color.orange.500': { + dark: '#fe9a2e', + darkest: '#f98917', + light: '#e46f00', + lightest: '#e97500', + middark: '#ffa139', + midlight: '#cd5f00', + }, + 'global.color.orange.600': { + dark: '#ffb558', + darkest: '#ffa23b', + light: '#cb5d00', + lightest: '#d16100', + middark: '#ffba61', + midlight: '#b54f00', + }, + 'global.color.orange.700': { + dark: '#fdce88', + darkest: '#ffbc66', + light: '#b14c00', + lightest: '#b65000', + middark: '#fdd08e', + midlight: '#9b4000', + }, + 'global.color.purple.400': { + dark: '#9d57f3', + darkest: '#9146ec', + light: '#9d57f4', + lightest: '#a15df6', + middark: '#a664f7', + midlight: '#8d42e9', + }, + 'global.color.purple.500': { + dark: '#ac6ff9', + darkest: '#a25ef6', + light: '#893de7', + lightest: '#8e43ea', + middark: '#b379fa', + midlight: '#782ad8', }, - 'alias.background-color-modal-overlay': { - dark: '#00000080', - darkest: '#00000099', - light: '#00000066', - lightest: '#00000066', - middark: '#00000066', - midlight: '#00000066', + 'global.color.purple.600': { + dark: '#bb87fb', + darkest: '#b277fa', + light: '#7326d3', + lightest: '#782bd8', + middark: '#c08ffc', + midlight: '#6116be', }, - 'alias.background-color-hover-overly': { - dark: '#ffffff0f', - darkest: '#ffffff14', - light: '#0000000a', - lightest: '#0000000a', - middark: '#ffffff0d', - midlight: '#0000000a', + 'global.color.purple.700': { + dark: '#ca9ffc', + darkest: '#c08ffc', + light: '#5d13b7', + lightest: '#6217be', + middark: '#cda5fd', + midlight: '#4a0c99', }, - 'alias.background-color-quickactions': { - dark: '#323232e6', - darkest: '#1d1d1de6', - light: '#f8f8f8e6', - lightest: '#ffffffe6', - middark: '#4b4b4be6', - midlight: '#dbdbdbe6', + 'global.color.red.400': { + dark: '#ea3829', + darkest: '#dd2118', + light: '#ea3829', + lightest: '#ed4030', + middark: '#f14a37', + midlight: '#d81a13', }, - 'alias.dropshadow-color': { - dark: '#00000080', - darkest: '#000000cc', - light: '#00000026', - lightest: '#00000026', - middark: '#0000004d', - midlight: '#00000026', + 'global.color.red.500': { + dark: '#f65843', + darkest: '#ee4331', + light: '#d31510', + lightest: '#d91c15', + middark: '#fa654f', + midlight: '#bb0202', }, - 'alias.highlight-hover': { - dark: '#ffffff12', - darkest: '#ffffff14', - light: '#0000000f', - lightest: '#0000000f', - middark: '#ffffff0f', - midlight: '#0000000f', + 'global.color.red.600': { + dark: '#ff755e', + darkest: '#f9634c', + light: '#b40000', + lightest: '#bb0202', + middark: '#ff816b', + midlight: '#990000', }, - 'alias.highlight-down': { - dark: '#ffffff1a', - darkest: '#ffffff26', - light: '#0000001a', - lightest: '#0000001a', - middark: '#ffffff1a', - midlight: '#0000001a', + 'global.color.red.700': { + dark: '#ff9581', + darkest: '#ff816b', + light: '#930000', + lightest: '#9a0000', + middark: '#ff9c89', + midlight: '#780000', }, - 'alias.highlight-selected': { - dark: '#54a3f626', - darkest: '#4096f333', - light: '#0265dc1a', - lightest: '#0469e31a', - middark: '#5eaaf71a', - midlight: '#0057be1a', + 'global.color.seafoam.400': { + dark: '#009e98', + darkest: '#00928c', + light: '#00a19a', + lightest: '#00a6a0', + middark: '#00a7a0', + midlight: '#008e88', }, - 'alias.highlight-selected-hover': { - dark: '#54a3f640', - darkest: '#4096f34d', - light: '#0265dc33', - lightest: '#0469e333', - middark: '#5eaaf733', - midlight: '#0057be33', + 'global.color.seafoam.500': { + dark: '#03b2ab', + darkest: '#00a59f', + light: '#008c87', + lightest: '#00918b', + middark: '#19b8b1', + midlight: '#007a75', }, - 'alias.text-highlight-color': { - dark: '#54a3f640', - darkest: '#4096f34d', - light: '#0265dc33', - lightest: '#0469e333', - middark: '#5eaaf733', - midlight: '#0057be33', + 'global.color.seafoam.600': { + dark: '#36c5bd', + darkest: '#1ab9b2', + light: '#007772', + lightest: '#007c76', + middark: '#40c9c2', + midlight: '#006763', }, - 'alias.border-color-translucent': { - dark: '#ffffff1a', - darkest: '#ffffff1a', - light: '#0000001a', - lightest: '#0000001a', - middark: '#ffffff1a', - midlight: '#0000001a', + 'global.color.seafoam.700': { + dark: '#5dd6cf', + darkest: '#42cac3', + light: '#00635f', + lightest: '#006763', + middark: '#64d9d2', + midlight: '#0a5350', }, - 'alias.pasteboard-background-color': { - dark: '#ffffff', - darkest: '#ffffff', - light: '#d5d5d5', - lightest: '#d5d5d5', - middark: '#ffffff', - midlight: '#d5d5d5', + 'global.color.yellow.400': { + dark: '#e4c200', + darkest: '#d8b500', + light: '#e8c600', + lightest: '#eecd00', + middark: '#e8c500', + midlight: '#d3af00', }, - 'alias.appframe.border-color': { - dark: '#ffffff', - darkest: '#ffffff', - light: '#d5d5d5', - lightest: '#d5d5d5', - middark: '#ffffff', - midlight: '#d5d5d5', + 'global.color.yellow.500': { + dark: '#f4d500', + darkest: '#e9c700', + light: '#d7b300', + lightest: '#ddb900', + middark: '#f6d702', + midlight: '#c29d00', }, - 'alias.appframe.separator-color': { - dark: '#ffffff', - darkest: '#ffffff', - light: '#d5d5d5', - lightest: '#d5d5d5', - middark: '#ffffff', - midlight: '#d5d5d5', + 'global.color.yellow.600': { + dark: '#f9e85c', + darkest: '#f7d804', + light: '#c49f00', + lightest: '#c9a400', + middark: '#f9ea63', + midlight: '#b08c00', }, - 'scrollbar.mac.s.track-background-color': { + 'global.color.yellow.700': { + dark: '#fcf6bb', + darkest: '#f9e961', + light: '#b08c00', + lightest: '#b59000', + middark: '#fdf6bf', + midlight: '#9d7a00', + }, + 'scrollbar.mac.l.track-background-color': { dark: '#f8f8f8', darkest: '#f8f8f8', light: '#fdfdfd', @@ -4497,7 +4557,7 @@ export const modes = { middark: '#00000000', midlight: '#00000000', }, - 'scrollbar.mac.l.track-background-color': { + 'scrollbar.mac.s.track-background-color': { dark: '#f8f8f8', darkest: '#f8f8f8', light: '#fdfdfd', @@ -4511,66 +4571,6 @@ export const modes = { middark: '#ececec05', midlight: '#21212105', }, - 'font.size.50': { - desktop: '11px', - mobile: '13px', - }, - 'font.size.75': { - desktop: '12px', - mobile: '13px', - }, - 'font.size.100': { - desktop: '14px', - mobile: '17px', - }, - 'font.size.200': { - desktop: '16px', - mobile: '19px', - }, - 'font.size.300': { - desktop: '18px', - mobile: '22px', - }, - 'font.size.400': { - desktop: '20px', - mobile: '24px', - }, - 'font.size.500': { - desktop: '22px', - mobile: '27px', - }, - 'font.size.600': { - desktop: '25px', - mobile: '31px', - }, - 'font.size.700': { - desktop: '28px', - mobile: '34px', - }, - 'font.size.800': { - desktop: '32px', - mobile: '39px', - }, - 'font.size.900': { - desktop: '36px', - mobile: '44px', - }, - 'font.size.1000': { - desktop: '40px', - mobile: '49px', - }, - 'font.size.1100': { - desktop: '45px', - mobile: '55px', - }, - 'font.size.1200': { - desktop: '50px', - mobile: '62px', - }, - 'font.size.1300': { - desktop: '60px', - mobile: '70px', - }, }; /** Get individual token */ diff --git a/examples/adobe/tokens/index.scss b/examples/adobe/tokens/index.scss index bfe347d1..e4153ca0 100644 --- a/examples/adobe/tokens/index.scss +++ b/examples/adobe/tokens/index.scss @@ -8,209 +8,338 @@ @use "sass:map"; $__token-values: ( - "global.color.opacity.0": ( - default: (0), + "alias.appframe.border-color": ( + default: (#d5d5d5), + "dark": (#ffffff), + "darkest": (#ffffff), + "light": (#d5d5d5), + "lightest": (#d5d5d5), + "middark": (#ffffff), + "midlight": (#d5d5d5), ), - "global.color.opacity.4": ( - default: (0.04), + "alias.appframe.separator-color": ( + default: (#d5d5d5), + "dark": (#ffffff), + "darkest": (#ffffff), + "light": (#d5d5d5), + "lightest": (#d5d5d5), + "middark": (#ffffff), + "midlight": (#d5d5d5), ), - "global.color.opacity.5": ( - default: (0.05), + "alias.background-color-hover-overly": ( + default: (#0000000a), + "dark": (#ffffff0f), + "darkest": (#ffffff14), + "light": (#0000000a), + "lightest": (#0000000a), + "middark": (#ffffff0d), + "midlight": (#0000000a), ), - "global.color.opacity.6": ( - default: (0.06), + "alias.background-color-modal-overlay": ( + default: (#00000066), + "dark": (#00000080), + "darkest": (#00000099), + "light": (#00000066), + "lightest": (#00000066), + "middark": (#00000066), + "midlight": (#00000066), ), - "global.color.opacity.7": ( - default: (0.07), + "alias.background-color-primary": ( + default: (#ffffff), + "dark": (#f8f8f8), + "darkest": (#f8f8f8), + "light": (#ffffff), + "lightest": (#ffffff), + "middark": (#f8f8f8), + "midlight": (#ffffff), ), - "global.color.opacity.8": ( - default: (0.08), + "alias.background-color-quickactions": ( + default: (#f8f8f8e6), + "dark": (#323232e6), + "darkest": (#1d1d1de6), + "light": (#f8f8f8e6), + "lightest": (#ffffffe6), + "middark": (#4b4b4be6), + "midlight": (#dbdbdbe6), ), - "global.color.opacity.10": ( - default: (0.1), + "alias.background-color-secondary": ( + default: (#f8f8f8), + "dark": (#fdfdfd), + "darkest": (#fdfdfd), + "light": (#f8f8f8), + "lightest": (#f8f8f8), + "middark": (#fdfdfd), + "midlight": (#f8f8f8), ), - "global.color.opacity.15": ( - default: (0.15), + "alias.border-color-translucent": ( + default: (#0000001a), + "dark": (#ffffff1a), + "darkest": (#ffffff1a), + "light": (#0000001a), + "lightest": (#0000001a), + "middark": (#ffffff1a), + "midlight": (#0000001a), ), - "global.color.opacity.20": ( - default: (0.2), + "alias.dropshadow-color": ( + default: (#00000026), + "dark": (#00000080), + "darkest": (#000000cc), + "light": (#00000026), + "lightest": (#00000026), + "middark": (#0000004d), + "midlight": (#00000026), ), - "global.color.opacity.25": ( - default: (0.25), + "alias.highlight-down": ( + default: (#0000001a), + "dark": (#ffffff1a), + "darkest": (#ffffff26), + "light": (#0000001a), + "lightest": (#0000001a), + "middark": (#ffffff1a), + "midlight": (#0000001a), ), - "global.color.opacity.30": ( - default: (0.3), + "alias.highlight-hover": ( + default: (#0000000f), + "dark": (#ffffff12), + "darkest": (#ffffff14), + "light": (#0000000f), + "lightest": (#0000000f), + "middark": (#ffffff0f), + "midlight": (#0000000f), ), - "global.color.opacity.40": ( - default: (0.4), + "alias.highlight-selected": ( + default: (#0265dc1a), + "dark": (#54a3f626), + "darkest": (#4096f333), + "light": (#0265dc1a), + "lightest": (#0469e31a), + "middark": (#5eaaf71a), + "midlight": (#0057be1a), ), - "global.color.opacity.42": ( - default: (0.42), + "alias.highlight-selected-hover": ( + default: (#0265dc33), + "dark": (#54a3f640), + "darkest": (#4096f34d), + "light": (#0265dc33), + "lightest": (#0469e333), + "middark": (#5eaaf733), + "midlight": (#0057be33), ), - "global.color.opacity.50": ( - default: (0.5), + "alias.pasteboard-background-color": ( + default: (#d5d5d5), + "dark": (#ffffff), + "darkest": (#ffffff), + "light": (#d5d5d5), + "lightest": (#d5d5d5), + "middark": (#ffffff), + "midlight": (#d5d5d5), ), - "global.color.opacity.55": ( - default: (0.55), + "alias.radial-reaction-color": ( + default: (#22222299), ), - "global.color.opacity.60": ( - default: (0.6), + "alias.text-highlight-color": ( + default: (#0265dc33), + "dark": (#54a3f640), + "darkest": (#4096f34d), + "light": (#0265dc33), + "lightest": (#0469e333), + "middark": (#5eaaf733), + "midlight": (#0057be33), ), - "global.color.opacity.70": ( - default: (0.7), + "font.family.clean": ( + default: ("Adobe Clean"), ), - "global.color.opacity.80": ( - default: (0.8), + "font.family.cleanHan": ( + default: ("Adobe Clean Han"), ), - "global.color.opacity.90": ( - default: (0.9), + "font.family.cleanSerif": ( + default: ("Adobe Clean Serif"), ), - "global.color.opacity.100": ( - default: (1), + "font.family.sourceCode": ( + default: ("Source Code Pro"), ), - "global.color.celery.400": ( - default: (#27bb36), - "dark": (#22b833), - "darkest": (#0dab25), - "light": (#27bb36), - "lightest": (#30c13d), - "middark": (#2dbe3a), - "midlight": (#07a721), + "font.size.50": ( + default: (11px), + "desktop": (11px), + "mobile": (13px), ), - "global.color.celery.500": ( - default: (#07a721), - "dark": (#44ca49), - "darkest": (#2dbf3a), - "light": (#07a721), - "lightest": (#0fac26), - "middark": (#4ecf50), - "midlight": (#009413), + "font.size.75": ( + default: (12px), + "desktop": (12px), + "mobile": (13px), ), - "global.color.celery.600": ( - default: (#009112), - "dark": (#69dc63), - "darkest": (#50d052), - "light": (#009112), - "lightest": (#009614), - "middark": (#70df68), - "midlight": (#007f0f), + "font.size.100": ( + default: (14px), + "desktop": (14px), + "mobile": (17px), ), - "global.color.celery.700": ( - default: (#007c0f), - "dark": (#8eeb7f), - "darkest": (#73e06b), - "light": (#007c0f), - "lightest": (#00800f), - "middark": (#92ed82), - "midlight": (#006b0f), + "font.size.200": ( + default: (16px), + "desktop": (16px), + "mobile": (19px), ), - "global.color.chartreuse.400": ( - default: (#98c50a), - "dark": (#94c008), - "darkest": (#8ab403), - "light": (#98c50a), - "lightest": (#9dcb0d), - "middark": (#99c50a), - "midlight": (#86af02), + "font.size.300": ( + default: (18px), + "desktop": (18px), + "mobile": (22px), ), - "global.color.chartreuse.500": ( - default: (#87b103), - "dark": (#a6d312), - "darkest": (#9ac60b), - "light": (#87b103), - "lightest": (#8bb604), - "middark": (#a9d715), - "midlight": (#779d00), + "font.size.400": ( + default: (20px), + "desktop": (20px), + "mobile": (24px), ), - "global.color.chartreuse.600": ( - default: (#769c00), - "dark": (#b8e525), - "darkest": (#aad816), - "light": (#769c00), - "lightest": (#7aa200), - "middark": (#bae828), - "midlight": (#688a00), + "font.size.500": ( + default: (22px), + "desktop": (22px), + "mobile": (27px), ), - "global.color.chartreuse.700": ( - default: (#678800), - "dark": (#cdf547), - "darkest": (#bbe829), - "light": (#678800), - "lightest": (#6a8d00), - "middark": (#cef64b), - "midlight": (#5a7700), + "font.size.600": ( + default: (25px), + "desktop": (25px), + "mobile": (31px), ), - "global.color.yellow.400": ( - default: (#e8c600), - "dark": (#e4c200), - "darkest": (#d8b500), - "light": (#e8c600), - "lightest": (#eecd00), - "middark": (#e8c500), - "midlight": (#d3af00), + "font.size.700": ( + default: (28px), + "desktop": (28px), + "mobile": (34px), ), - "global.color.yellow.500": ( - default: (#d7b300), - "dark": (#f4d500), - "darkest": (#e9c700), - "light": (#d7b300), - "lightest": (#ddb900), - "middark": (#f6d702), - "midlight": (#c29d00), + "font.size.800": ( + default: (32px), + "desktop": (32px), + "mobile": (39px), ), - "global.color.yellow.600": ( - default: (#c49f00), - "dark": (#f9e85c), - "darkest": (#f7d804), - "light": (#c49f00), - "lightest": (#c9a400), - "middark": (#f9ea63), - "midlight": (#b08c00), + "font.size.900": ( + default: (36px), + "desktop": (36px), + "mobile": (44px), ), - "global.color.yellow.700": ( - default: (#b08c00), - "dark": (#fcf6bb), - "darkest": (#f9e961), - "light": (#b08c00), - "lightest": (#b59000), - "middark": (#fdf6bf), - "midlight": (#9d7a00), + "font.size.1000": ( + default: (40px), + "desktop": (40px), + "mobile": (49px), ), - "global.color.magenta.400": ( - default: (#de3d82), - "dark": (#de3d82), - "darkest": (#d12b72), - "light": (#de3d82), - "lightest": (#e24487), - "middark": (#e74b8d), - "midlight": (#cc276e), + "font.size.1100": ( + default: (45px), + "desktop": (45px), + "mobile": (55px), ), - "global.color.magenta.500": ( - default: (#c82269), - "dark": (#ed5795), - "darkest": (#e34589), - "light": (#c82269), - "lightest": (#cd286f), - "middark": (#f2639d), - "midlight": (#b30f58), + "font.size.1200": ( + default: (50px), + "desktop": (50px), + "mobile": (62px), ), - "global.color.magenta.600": ( - default: (#ad0955), - "dark": (#f972a7), - "darkest": (#f1619c), - "light": (#ad0955), - "lightest": (#b30f59), - "middark": (#fc7bad), - "midlight": (#950048), + "font.size.1300": ( + default: (60px), + "desktop": (60px), + "mobile": (70px), ), - "global.color.magenta.700": ( - default: (#8e0045), - "dark": (#ff8fb9), - "darkest": (#fc7cad), - "light": (#8e0045), - "lightest": (#950048), - "middark": (#ff96bd), - "midlight": (#740039), + "global.color.blue.400": ( + default: (#147af3), + "dark": (#348ff4), + "darkest": (#1d80f5), + "light": (#147af3), + "lightest": (#1b7ff5), + "middark": (#4298f4), + "midlight": (#0468e1), + ), + "global.color.blue.500": ( + default: (#0265dc), + "dark": (#54a3f6), + "darkest": (#4096f3), + "light": (#0265dc), + "lightest": (#0469e3), + "middark": (#5eaaf7), + "midlight": (#0057be), + ), + "global.color.blue.600": ( + default: (#0054b6), + "dark": (#72b7f9), + "darkest": (#5eaaf7), + "light": (#0054b6), + "lightest": (#0057be), + "middark": (#7abcfa), + "midlight": (#004798), + ), + "global.color.blue.700": ( + default: (#004491), + "dark": (#8fcafc), + "darkest": (#7cbdfa), + "light": (#004491), + "lightest": (#004899), + "middark": (#95cdfc), + "midlight": (#003776), + ), + "global.color.celery.400": ( + default: (#27bb36), + "dark": (#22b833), + "darkest": (#0dab25), + "light": (#27bb36), + "lightest": (#30c13d), + "middark": (#2dbe3a), + "midlight": (#07a721), + ), + "global.color.celery.500": ( + default: (#07a721), + "dark": (#44ca49), + "darkest": (#2dbf3a), + "light": (#07a721), + "lightest": (#0fac26), + "middark": (#4ecf50), + "midlight": (#009413), + ), + "global.color.celery.600": ( + default: (#009112), + "dark": (#69dc63), + "darkest": (#50d052), + "light": (#009112), + "lightest": (#009614), + "middark": (#70df68), + "midlight": (#007f0f), + ), + "global.color.celery.700": ( + default: (#007c0f), + "dark": (#8eeb7f), + "darkest": (#73e06b), + "light": (#007c0f), + "lightest": (#00800f), + "middark": (#92ed82), + "midlight": (#006b0f), + ), + "global.color.chartreuse.400": ( + default: (#98c50a), + "dark": (#94c008), + "darkest": (#8ab403), + "light": (#98c50a), + "lightest": (#9dcb0d), + "middark": (#99c50a), + "midlight": (#86af02), + ), + "global.color.chartreuse.500": ( + default: (#87b103), + "dark": (#a6d312), + "darkest": (#9ac60b), + "light": (#87b103), + "lightest": (#8bb604), + "middark": (#a9d715), + "midlight": (#779d00), + ), + "global.color.chartreuse.600": ( + default: (#769c00), + "dark": (#b8e525), + "darkest": (#aad816), + "light": (#769c00), + "lightest": (#7aa200), + "middark": (#bae828), + "midlight": (#688a00), + ), + "global.color.chartreuse.700": ( + default: (#678800), + "dark": (#cdf547), + "darkest": (#bbe829), + "light": (#678800), + "lightest": (#6a8d00), + "middark": (#cef64b), + "midlight": (#5a7700), ), "global.color.fuchsia.400": ( default: (#cd3ace), @@ -248,275 +377,23 @@ $__token-values: ( "middark": (#f693f3), "midlight": (#680468), ), - "global.color.purple.400": ( - default: (#9d57f4), - "dark": (#9d57f3), - "darkest": (#9146ec), - "light": (#9d57f4), - "lightest": (#a15df6), - "middark": (#a664f7), - "midlight": (#8d42e9), - ), - "global.color.purple.500": ( - default: (#893de7), - "dark": (#ac6ff9), - "darkest": (#a25ef6), - "light": (#893de7), - "lightest": (#8e43ea), - "middark": (#b379fa), - "midlight": (#782ad8), + "global.color.gray.50": ( + default: (#ffffff), + "dark": (#1d1d1d), + "darkest": (#000000), + "light": (#ffffff), + "lightest": (#ffffff), + "middark": (#393939), + "midlight": (#fafafa), ), - "global.color.purple.600": ( - default: (#7326d3), - "dark": (#bb87fb), - "darkest": (#b277fa), - "light": (#7326d3), - "lightest": (#782bd8), - "middark": (#c08ffc), - "midlight": (#6116be), - ), - "global.color.purple.700": ( - default: (#5d13b7), - "dark": (#ca9ffc), - "darkest": (#c08ffc), - "light": (#5d13b7), - "lightest": (#6217be), - "middark": (#cda5fd), - "midlight": (#4a0c99), - ), - "global.color.indigo.400": ( - default: (#686df4), - "dark": (#686df4), - "darkest": (#5a60eb), - "light": (#686df4), - "lightest": (#6d73f6), - "middark": (#7378f8), - "midlight": (#565ce7), - ), - "global.color.indigo.500": ( - default: (#5258e4), - "dark": (#7c81fb), - "darkest": (#6e73f6), - "light": (#5258e4), - "lightest": (#575de8), - "middark": (#858afd), - "midlight": (#4449d0), - ), - "global.color.indigo.600": ( - default: (#4046ca), - "dark": (#9195ff), - "darkest": (#8488fd), - "light": (#4046ca), - "lightest": (#444ad0), - "middark": (#989dff), - "midlight": (#3439b0), - ), - "global.color.indigo.700": ( - default: (#3236a8), - "dark": (#a7aaff), - "darkest": (#999dff), - "light": (#3236a8), - "lightest": (#353ab0), - "middark": (#acb0ff), - "midlight": (#272b8b), - ), - "global.color.seafoam.400": ( - default: (#00a19a), - "dark": (#009e98), - "darkest": (#00928c), - "light": (#00a19a), - "lightest": (#00a6a0), - "middark": (#00a7a0), - "midlight": (#008e88), - ), - "global.color.seafoam.500": ( - default: (#008c87), - "dark": (#03b2ab), - "darkest": (#00a59f), - "light": (#008c87), - "lightest": (#00918b), - "middark": (#19b8b1), - "midlight": (#007a75), - ), - "global.color.seafoam.600": ( - default: (#007772), - "dark": (#36c5bd), - "darkest": (#1ab9b2), - "light": (#007772), - "lightest": (#007c76), - "middark": (#40c9c2), - "midlight": (#006763), - ), - "global.color.seafoam.700": ( - default: (#00635f), - "dark": (#5dd6cf), - "darkest": (#42cac3), - "light": (#00635f), - "lightest": (#006763), - "middark": (#64d9d2), - "midlight": (#0a5350), - ), - "global.color.red.400": ( - default: (#ea3829), - "dark": (#ea3829), - "darkest": (#dd2118), - "light": (#ea3829), - "lightest": (#ed4030), - "middark": (#f14a37), - "midlight": (#d81a13), - ), - "global.color.red.500": ( - default: (#d31510), - "dark": (#f65843), - "darkest": (#ee4331), - "light": (#d31510), - "lightest": (#d91c15), - "middark": (#fa654f), - "midlight": (#bb0202), - ), - "global.color.red.600": ( - default: (#b40000), - "dark": (#ff755e), - "darkest": (#f9634c), - "light": (#b40000), - "lightest": (#bb0202), - "middark": (#ff816b), - "midlight": (#990000), - ), - "global.color.red.700": ( - default: (#930000), - "dark": (#ff9581), - "darkest": (#ff816b), - "light": (#930000), - "lightest": (#9a0000), - "middark": (#ff9c89), - "midlight": (#780000), - ), - "global.color.orange.400": ( - default: (#f68511), - "dark": (#f4810c), - "darkest": (#e87400), - "light": (#f68511), - "lightest": (#fa8b1a), - "middark": (#f88916), - "midlight": (#e46f00), - ), - "global.color.orange.500": ( - default: (#e46f00), - "dark": (#fe9a2e), - "darkest": (#f98917), - "light": (#e46f00), - "lightest": (#e97500), - "middark": (#ffa139), - "midlight": (#cd5f00), - ), - "global.color.orange.600": ( - default: (#cb5d00), - "dark": (#ffb558), - "darkest": (#ffa23b), - "light": (#cb5d00), - "lightest": (#d16100), - "middark": (#ffba61), - "midlight": (#b54f00), - ), - "global.color.orange.700": ( - default: (#b14c00), - "dark": (#fdce88), - "darkest": (#ffbc66), - "light": (#b14c00), - "lightest": (#b65000), - "middark": (#fdd08e), - "midlight": (#9b4000), - ), - "global.color.green.400": ( - default: (#008f5d), - "dark": (#12a26c), - "darkest": (#009562), - "light": (#008f5d), - "lightest": (#009461), - "middark": (#1eaa74), - "midlight": (#007d4f), - ), - "global.color.green.500": ( - default: (#007a4d), - "dark": (#2bb47d), - "darkest": (#1ca872), - "light": (#007a4d), - "lightest": (#007e50), - "middark": (#33bb83), - "midlight": (#006941), - ), - "global.color.green.600": ( - default: (#00653e), - "dark": (#43c78f), - "darkest": (#34bb84), - "light": (#00653e), - "lightest": (#006941), - "middark": (#4acc94), - "midlight": (#005534), - ), - "global.color.green.700": ( - default: (#005132), - "dark": (#5ed9a2), - "darkest": (#4bcd95), - "light": (#005132), - "lightest": (#005635), - "middark": (#65dda7), - "midlight": (#054128), - ), - "global.color.blue.400": ( - default: (#147af3), - "dark": (#348ff4), - "darkest": (#1d80f5), - "light": (#147af3), - "lightest": (#1b7ff5), - "middark": (#4298f4), - "midlight": (#0468e1), - ), - "global.color.blue.500": ( - default: (#0265dc), - "dark": (#54a3f6), - "darkest": (#4096f3), - "light": (#0265dc), - "lightest": (#0469e3), - "middark": (#5eaaf7), - "midlight": (#0057be), - ), - "global.color.blue.600": ( - default: (#0054b6), - "dark": (#72b7f9), - "darkest": (#5eaaf7), - "light": (#0054b6), - "lightest": (#0057be), - "middark": (#7abcfa), - "midlight": (#004798), - ), - "global.color.blue.700": ( - default: (#004491), - "dark": (#8fcafc), - "darkest": (#7cbdfa), - "light": (#004491), - "lightest": (#004899), - "middark": (#95cdfc), - "midlight": (#003776), - ), - "global.color.gray.50": ( - default: (#ffffff), - "dark": (#1d1d1d), - "darkest": (#000000), - "light": (#ffffff), - "lightest": (#ffffff), - "middark": (#393939), - "midlight": (#fafafa), - ), - "global.color.gray.75": ( - default: (#fdfdfd), - "dark": (#262626), - "darkest": (#0e0e0e), - "light": (#fdfdfd), - "lightest": (#ffffff), - "middark": (#414141), - "midlight": (#efefef), + "global.color.gray.75": ( + default: (#fdfdfd), + "dark": (#262626), + "darkest": (#0e0e0e), + "light": (#fdfdfd), + "lightest": (#ffffff), + "middark": (#414141), + "midlight": (#efefef), ), "global.color.gray.100": ( default: (#f8f8f8), @@ -599,145 +476,355 @@ $__token-values: ( "middark": (#ffffff), "midlight": (#000000), ), - "alias.background-color-primary": ( - default: (#ffffff), - "dark": (#f8f8f8), - "darkest": (#f8f8f8), - "light": (#ffffff), - "lightest": (#ffffff), - "middark": (#f8f8f8), - "midlight": (#ffffff), + "global.color.green.400": ( + default: (#008f5d), + "dark": (#12a26c), + "darkest": (#009562), + "light": (#008f5d), + "lightest": (#009461), + "middark": (#1eaa74), + "midlight": (#007d4f), ), - "alias.background-color-secondary": ( - default: (#f8f8f8), - "dark": (#fdfdfd), - "darkest": (#fdfdfd), - "light": (#f8f8f8), - "lightest": (#f8f8f8), - "middark": (#fdfdfd), - "midlight": (#f8f8f8), + "global.color.green.500": ( + default: (#007a4d), + "dark": (#2bb47d), + "darkest": (#1ca872), + "light": (#007a4d), + "lightest": (#007e50), + "middark": (#33bb83), + "midlight": (#006941), ), - "alias.background-color-modal-overlay": ( - default: (#00000066), - "dark": (#00000080), - "darkest": (#00000099), - "light": (#00000066), - "lightest": (#00000066), - "middark": (#00000066), - "midlight": (#00000066), + "global.color.green.600": ( + default: (#00653e), + "dark": (#43c78f), + "darkest": (#34bb84), + "light": (#00653e), + "lightest": (#006941), + "middark": (#4acc94), + "midlight": (#005534), ), - "alias.background-color-hover-overly": ( - default: (#0000000a), - "dark": (#ffffff0f), - "darkest": (#ffffff14), - "light": (#0000000a), - "lightest": (#0000000a), - "middark": (#ffffff0d), - "midlight": (#0000000a), + "global.color.green.700": ( + default: (#005132), + "dark": (#5ed9a2), + "darkest": (#4bcd95), + "light": (#005132), + "lightest": (#005635), + "middark": (#65dda7), + "midlight": (#054128), ), - "alias.background-color-quickactions": ( - default: (#f8f8f8e6), - "dark": (#323232e6), - "darkest": (#1d1d1de6), - "light": (#f8f8f8e6), - "lightest": (#ffffffe6), - "middark": (#4b4b4be6), - "midlight": (#dbdbdbe6), + "global.color.indigo.400": ( + default: (#686df4), + "dark": (#686df4), + "darkest": (#5a60eb), + "light": (#686df4), + "lightest": (#6d73f6), + "middark": (#7378f8), + "midlight": (#565ce7), ), - "alias.dropshadow-color": ( - default: (#00000026), - "dark": (#00000080), - "darkest": (#000000cc), - "light": (#00000026), - "lightest": (#00000026), - "middark": (#0000004d), - "midlight": (#00000026), + "global.color.indigo.500": ( + default: (#5258e4), + "dark": (#7c81fb), + "darkest": (#6e73f6), + "light": (#5258e4), + "lightest": (#575de8), + "middark": (#858afd), + "midlight": (#4449d0), + ), + "global.color.indigo.600": ( + default: (#4046ca), + "dark": (#9195ff), + "darkest": (#8488fd), + "light": (#4046ca), + "lightest": (#444ad0), + "middark": (#989dff), + "midlight": (#3439b0), + ), + "global.color.indigo.700": ( + default: (#3236a8), + "dark": (#a7aaff), + "darkest": (#999dff), + "light": (#3236a8), + "lightest": (#353ab0), + "middark": (#acb0ff), + "midlight": (#272b8b), + ), + "global.color.magenta.400": ( + default: (#de3d82), + "dark": (#de3d82), + "darkest": (#d12b72), + "light": (#de3d82), + "lightest": (#e24487), + "middark": (#e74b8d), + "midlight": (#cc276e), + ), + "global.color.magenta.500": ( + default: (#c82269), + "dark": (#ed5795), + "darkest": (#e34589), + "light": (#c82269), + "lightest": (#cd286f), + "middark": (#f2639d), + "midlight": (#b30f58), + ), + "global.color.magenta.600": ( + default: (#ad0955), + "dark": (#f972a7), + "darkest": (#f1619c), + "light": (#ad0955), + "lightest": (#b30f59), + "middark": (#fc7bad), + "midlight": (#950048), + ), + "global.color.magenta.700": ( + default: (#8e0045), + "dark": (#ff8fb9), + "darkest": (#fc7cad), + "light": (#8e0045), + "lightest": (#950048), + "middark": (#ff96bd), + "midlight": (#740039), + ), + "global.color.opacity.0": ( + default: (0), + ), + "global.color.opacity.4": ( + default: (0.04), + ), + "global.color.opacity.5": ( + default: (0.05), + ), + "global.color.opacity.6": ( + default: (0.06), + ), + "global.color.opacity.7": ( + default: (0.07), + ), + "global.color.opacity.8": ( + default: (0.08), + ), + "global.color.opacity.10": ( + default: (0.1), + ), + "global.color.opacity.15": ( + default: (0.15), + ), + "global.color.opacity.20": ( + default: (0.2), + ), + "global.color.opacity.25": ( + default: (0.25), + ), + "global.color.opacity.30": ( + default: (0.3), + ), + "global.color.opacity.40": ( + default: (0.4), + ), + "global.color.opacity.42": ( + default: (0.42), + ), + "global.color.opacity.50": ( + default: (0.5), + ), + "global.color.opacity.55": ( + default: (0.55), + ), + "global.color.opacity.60": ( + default: (0.6), + ), + "global.color.opacity.70": ( + default: (0.7), + ), + "global.color.opacity.80": ( + default: (0.8), + ), + "global.color.opacity.90": ( + default: (0.9), + ), + "global.color.opacity.100": ( + default: (1), + ), + "global.color.orange.400": ( + default: (#f68511), + "dark": (#f4810c), + "darkest": (#e87400), + "light": (#f68511), + "lightest": (#fa8b1a), + "middark": (#f88916), + "midlight": (#e46f00), + ), + "global.color.orange.500": ( + default: (#e46f00), + "dark": (#fe9a2e), + "darkest": (#f98917), + "light": (#e46f00), + "lightest": (#e97500), + "middark": (#ffa139), + "midlight": (#cd5f00), + ), + "global.color.orange.600": ( + default: (#cb5d00), + "dark": (#ffb558), + "darkest": (#ffa23b), + "light": (#cb5d00), + "lightest": (#d16100), + "middark": (#ffba61), + "midlight": (#b54f00), + ), + "global.color.orange.700": ( + default: (#b14c00), + "dark": (#fdce88), + "darkest": (#ffbc66), + "light": (#b14c00), + "lightest": (#b65000), + "middark": (#fdd08e), + "midlight": (#9b4000), + ), + "global.color.purple.400": ( + default: (#9d57f4), + "dark": (#9d57f3), + "darkest": (#9146ec), + "light": (#9d57f4), + "lightest": (#a15df6), + "middark": (#a664f7), + "midlight": (#8d42e9), + ), + "global.color.purple.500": ( + default: (#893de7), + "dark": (#ac6ff9), + "darkest": (#a25ef6), + "light": (#893de7), + "lightest": (#8e43ea), + "middark": (#b379fa), + "midlight": (#782ad8), + ), + "global.color.purple.600": ( + default: (#7326d3), + "dark": (#bb87fb), + "darkest": (#b277fa), + "light": (#7326d3), + "lightest": (#782bd8), + "middark": (#c08ffc), + "midlight": (#6116be), + ), + "global.color.purple.700": ( + default: (#5d13b7), + "dark": (#ca9ffc), + "darkest": (#c08ffc), + "light": (#5d13b7), + "lightest": (#6217be), + "middark": (#cda5fd), + "midlight": (#4a0c99), + ), + "global.color.red.400": ( + default: (#ea3829), + "dark": (#ea3829), + "darkest": (#dd2118), + "light": (#ea3829), + "lightest": (#ed4030), + "middark": (#f14a37), + "midlight": (#d81a13), ), - "alias.highlight-hover": ( - default: (#0000000f), - "dark": (#ffffff12), - "darkest": (#ffffff14), - "light": (#0000000f), - "lightest": (#0000000f), - "middark": (#ffffff0f), - "midlight": (#0000000f), + "global.color.red.500": ( + default: (#d31510), + "dark": (#f65843), + "darkest": (#ee4331), + "light": (#d31510), + "lightest": (#d91c15), + "middark": (#fa654f), + "midlight": (#bb0202), ), - "alias.highlight-down": ( - default: (#0000001a), - "dark": (#ffffff1a), - "darkest": (#ffffff26), - "light": (#0000001a), - "lightest": (#0000001a), - "middark": (#ffffff1a), - "midlight": (#0000001a), + "global.color.red.600": ( + default: (#b40000), + "dark": (#ff755e), + "darkest": (#f9634c), + "light": (#b40000), + "lightest": (#bb0202), + "middark": (#ff816b), + "midlight": (#990000), ), - "alias.highlight-selected": ( - default: (#0265dc1a), - "dark": (#54a3f626), - "darkest": (#4096f333), - "light": (#0265dc1a), - "lightest": (#0469e31a), - "middark": (#5eaaf71a), - "midlight": (#0057be1a), + "global.color.red.700": ( + default: (#930000), + "dark": (#ff9581), + "darkest": (#ff816b), + "light": (#930000), + "lightest": (#9a0000), + "middark": (#ff9c89), + "midlight": (#780000), ), - "alias.highlight-selected-hover": ( - default: (#0265dc33), - "dark": (#54a3f640), - "darkest": (#4096f34d), - "light": (#0265dc33), - "lightest": (#0469e333), - "middark": (#5eaaf733), - "midlight": (#0057be33), + "global.color.seafoam.400": ( + default: (#00a19a), + "dark": (#009e98), + "darkest": (#00928c), + "light": (#00a19a), + "lightest": (#00a6a0), + "middark": (#00a7a0), + "midlight": (#008e88), ), - "alias.text-highlight-color": ( - default: (#0265dc33), - "dark": (#54a3f640), - "darkest": (#4096f34d), - "light": (#0265dc33), - "lightest": (#0469e333), - "middark": (#5eaaf733), - "midlight": (#0057be33), + "global.color.seafoam.500": ( + default: (#008c87), + "dark": (#03b2ab), + "darkest": (#00a59f), + "light": (#008c87), + "lightest": (#00918b), + "middark": (#19b8b1), + "midlight": (#007a75), ), - "alias.border-color-translucent": ( - default: (#0000001a), - "dark": (#ffffff1a), - "darkest": (#ffffff1a), - "light": (#0000001a), - "lightest": (#0000001a), - "middark": (#ffffff1a), - "midlight": (#0000001a), + "global.color.seafoam.600": ( + default: (#007772), + "dark": (#36c5bd), + "darkest": (#1ab9b2), + "light": (#007772), + "lightest": (#007c76), + "middark": (#40c9c2), + "midlight": (#006763), ), - "alias.radial-reaction-color": ( - default: (#22222299), + "global.color.seafoam.700": ( + default: (#00635f), + "dark": (#5dd6cf), + "darkest": (#42cac3), + "light": (#00635f), + "lightest": (#006763), + "middark": (#64d9d2), + "midlight": (#0a5350), ), - "alias.pasteboard-background-color": ( - default: (#d5d5d5), - "dark": (#ffffff), - "darkest": (#ffffff), - "light": (#d5d5d5), - "lightest": (#d5d5d5), - "middark": (#ffffff), - "midlight": (#d5d5d5), + "global.color.yellow.400": ( + default: (#e8c600), + "dark": (#e4c200), + "darkest": (#d8b500), + "light": (#e8c600), + "lightest": (#eecd00), + "middark": (#e8c500), + "midlight": (#d3af00), ), - "alias.appframe.border-color": ( - default: (#d5d5d5), - "dark": (#ffffff), - "darkest": (#ffffff), - "light": (#d5d5d5), - "lightest": (#d5d5d5), - "middark": (#ffffff), - "midlight": (#d5d5d5), + "global.color.yellow.500": ( + default: (#d7b300), + "dark": (#f4d500), + "darkest": (#e9c700), + "light": (#d7b300), + "lightest": (#ddb900), + "middark": (#f6d702), + "midlight": (#c29d00), ), - "alias.appframe.separator-color": ( - default: (#d5d5d5), - "dark": (#ffffff), - "darkest": (#ffffff), - "light": (#d5d5d5), - "lightest": (#d5d5d5), - "middark": (#ffffff), - "midlight": (#d5d5d5), + "global.color.yellow.600": ( + default: (#c49f00), + "dark": (#f9e85c), + "darkest": (#f7d804), + "light": (#c49f00), + "lightest": (#c9a400), + "middark": (#f9ea63), + "midlight": (#b08c00), ), - "scrollbar.mac.s.track-background-color": ( + "global.color.yellow.700": ( + default: (#b08c00), + "dark": (#fcf6bb), + "darkest": (#f9e961), + "light": (#b08c00), + "lightest": (#b59000), + "middark": (#fdf6bf), + "midlight": (#9d7a00), + ), + "scrollbar.mac.l.track-background-color": ( default: (#fdfdfd), "dark": (#f8f8f8), "darkest": (#f8f8f8), @@ -753,7 +840,7 @@ $__token-values: ( "middark": (#00000000), "midlight": (#00000000), ), - "scrollbar.mac.l.track-background-color": ( + "scrollbar.mac.s.track-background-color": ( default: (#fdfdfd), "dark": (#f8f8f8), "darkest": (#f8f8f8), @@ -769,93 +856,6 @@ $__token-values: ( "middark": (#ececec05), "midlight": (#21212105), ), - "font.family.clean": ( - default: ("Adobe Clean"), - ), - "font.family.cleanSerif": ( - default: ("Adobe Clean Serif"), - ), - "font.family.cleanHan": ( - default: ("Adobe Clean Han"), - ), - "font.family.sourceCode": ( - default: ("Source Code Pro"), - ), - "font.size.50": ( - default: (11px), - "desktop": (11px), - "mobile": (13px), - ), - "font.size.75": ( - default: (12px), - "desktop": (12px), - "mobile": (13px), - ), - "font.size.100": ( - default: (14px), - "desktop": (14px), - "mobile": (17px), - ), - "font.size.200": ( - default: (16px), - "desktop": (16px), - "mobile": (19px), - ), - "font.size.300": ( - default: (18px), - "desktop": (18px), - "mobile": (22px), - ), - "font.size.400": ( - default: (20px), - "desktop": (20px), - "mobile": (24px), - ), - "font.size.500": ( - default: (22px), - "desktop": (22px), - "mobile": (27px), - ), - "font.size.600": ( - default: (25px), - "desktop": (25px), - "mobile": (31px), - ), - "font.size.700": ( - default: (28px), - "desktop": (28px), - "mobile": (34px), - ), - "font.size.800": ( - default: (32px), - "desktop": (32px), - "mobile": (39px), - ), - "font.size.900": ( - default: (36px), - "desktop": (36px), - "mobile": (44px), - ), - "font.size.1000": ( - default: (40px), - "desktop": (40px), - "mobile": (49px), - ), - "font.size.1100": ( - default: (45px), - "desktop": (45px), - "mobile": (55px), - ), - "font.size.1200": ( - default: (50px), - "desktop": (50px), - "mobile": (62px), - ), - "font.size.1300": ( - default: (60px), - "desktop": (60px), - "mobile": (70px), - ), ); $__token-typography-mixins: ( diff --git a/examples/adobe/tokens/tokens.css b/examples/adobe/tokens/tokens.css index fd050f5c..a0cc87a2 100644 --- a/examples/adobe/tokens/tokens.css +++ b/examples/adobe/tokens/tokens.css @@ -5,6 +5,80 @@ */ :root { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-background-color-hover-overly: #0000000a; + --spectrum-alias-background-color-modal-overlay: #00000066; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-quickactions: #f8f8f8e6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); + --spectrum-alias-border-color-translucent: #0000001a; + --spectrum-alias-dropshadow-color: #00000026; + --spectrum-alias-highlight-down: #0000001a; + --spectrum-alias-highlight-hover: #0000000f; + --spectrum-alias-highlight-selected: #0265dc1a; + --spectrum-alias-highlight-selected-hover: #0265dc33; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-radial-reaction-color: #22222299; + --spectrum-alias-text-highlight-color: #0265dc33; + --spectrum-font-family-clean: "Adobe Clean"; + --spectrum-font-family-cleanHan: "Adobe Clean Han"; + --spectrum-font-family-cleanSerif: "Adobe Clean Serif"; + --spectrum-font-family-sourceCode: "Source Code Pro"; + --spectrum-font-size-50: 11px; + --spectrum-font-size-75: 12px; + --spectrum-font-size-100: 14px; + --spectrum-font-size-200: 16px; + --spectrum-font-size-300: 18px; + --spectrum-font-size-400: 20px; + --spectrum-font-size-500: 22px; + --spectrum-font-size-600: 25px; + --spectrum-font-size-700: 28px; + --spectrum-font-size-800: 32px; + --spectrum-font-size-900: 36px; + --spectrum-font-size-1000: 40px; + --spectrum-font-size-1100: 45px; + --spectrum-font-size-1200: 50px; + --spectrum-font-size-1300: 60px; + --spectrum-global-color-blue-400: #147af3; + --spectrum-global-color-blue-500: #0265dc; + --spectrum-global-color-blue-600: #0054b6; + --spectrum-global-color-blue-700: #004491; + --spectrum-global-color-celery-400: #27bb36; + --spectrum-global-color-celery-500: #07a721; + --spectrum-global-color-celery-600: #009112; + --spectrum-global-color-celery-700: #007c0f; + --spectrum-global-color-chartreuse-400: #98c50a; + --spectrum-global-color-chartreuse-500: #87b103; + --spectrum-global-color-chartreuse-600: #769c00; + --spectrum-global-color-chartreuse-700: #678800; + --spectrum-global-color-fuchsia-400: #cd3ace; + --spectrum-global-color-fuchsia-500: #b622b7; + --spectrum-global-color-fuchsia-600: #9d039e; + --spectrum-global-color-fuchsia-700: #800081; + --spectrum-global-color-gray-50: #ffffff; + --spectrum-global-color-gray-75: #fdfdfd; + --spectrum-global-color-gray-100: #f8f8f8; + --spectrum-global-color-gray-200: #e6e6e6; + --spectrum-global-color-gray-300: #d5d5d5; + --spectrum-global-color-gray-400: #b1b1b1; + --spectrum-global-color-gray-500: #909090; + --spectrum-global-color-gray-600: #6d6d6d; + --spectrum-global-color-gray-700: #464646; + --spectrum-global-color-gray-800: #222222; + --spectrum-global-color-gray-900: #000000; + --spectrum-global-color-green-400: #008f5d; + --spectrum-global-color-green-500: #007a4d; + --spectrum-global-color-green-600: #00653e; + --spectrum-global-color-green-700: #005132; + --spectrum-global-color-indigo-400: #686df4; + --spectrum-global-color-indigo-500: #5258e4; + --spectrum-global-color-indigo-600: #4046ca; + --spectrum-global-color-indigo-700: #3236a8; + --spectrum-global-color-magenta-400: #de3d82; + --spectrum-global-color-magenta-500: #c82269; + --spectrum-global-color-magenta-600: #ad0955; + --spectrum-global-color-magenta-700: #8e0045; --spectrum-global-color-opacity-0: 0; --spectrum-global-color-opacity-4: 0.04; --spectrum-global-color-opacity-5: 0.05; @@ -25,107 +99,52 @@ --spectrum-global-color-opacity-80: 0.8; --spectrum-global-color-opacity-90: 0.9; --spectrum-global-color-opacity-100: 1; - --spectrum-global-color-celery-400: #27bb36; - --spectrum-global-color-celery-500: #07a721; - --spectrum-global-color-celery-600: #009112; - --spectrum-global-color-celery-700: #007c0f; - --spectrum-global-color-chartreuse-400: #98c50a; - --spectrum-global-color-chartreuse-500: #87b103; - --spectrum-global-color-chartreuse-600: #769c00; - --spectrum-global-color-chartreuse-700: #678800; - --spectrum-global-color-yellow-400: #e8c600; - --spectrum-global-color-yellow-500: #d7b300; - --spectrum-global-color-yellow-600: #c49f00; - --spectrum-global-color-yellow-700: #b08c00; - --spectrum-global-color-magenta-400: #de3d82; - --spectrum-global-color-magenta-500: #c82269; - --spectrum-global-color-magenta-600: #ad0955; - --spectrum-global-color-magenta-700: #8e0045; - --spectrum-global-color-fuchsia-400: #cd3ace; - --spectrum-global-color-fuchsia-500: #b622b7; - --spectrum-global-color-fuchsia-600: #9d039e; - --spectrum-global-color-fuchsia-700: #800081; + --spectrum-global-color-orange-400: #f68511; + --spectrum-global-color-orange-500: #e46f00; + --spectrum-global-color-orange-600: #cb5d00; + --spectrum-global-color-orange-700: #b14c00; --spectrum-global-color-purple-400: #9d57f4; --spectrum-global-color-purple-500: #893de7; --spectrum-global-color-purple-600: #7326d3; --spectrum-global-color-purple-700: #5d13b7; - --spectrum-global-color-indigo-400: #686df4; - --spectrum-global-color-indigo-500: #5258e4; - --spectrum-global-color-indigo-600: #4046ca; - --spectrum-global-color-indigo-700: #3236a8; - --spectrum-global-color-seafoam-400: #00a19a; - --spectrum-global-color-seafoam-500: #008c87; - --spectrum-global-color-seafoam-600: #007772; - --spectrum-global-color-seafoam-700: #00635f; --spectrum-global-color-red-400: #ea3829; --spectrum-global-color-red-500: #d31510; --spectrum-global-color-red-600: #b40000; --spectrum-global-color-red-700: #930000; - --spectrum-global-color-orange-400: #f68511; - --spectrum-global-color-orange-500: #e46f00; - --spectrum-global-color-orange-600: #cb5d00; - --spectrum-global-color-orange-700: #b14c00; - --spectrum-global-color-green-400: #008f5d; - --spectrum-global-color-green-500: #007a4d; - --spectrum-global-color-green-600: #00653e; - --spectrum-global-color-green-700: #005132; - --spectrum-global-color-blue-400: #147af3; - --spectrum-global-color-blue-500: #0265dc; - --spectrum-global-color-blue-600: #0054b6; - --spectrum-global-color-blue-700: #004491; - --spectrum-global-color-gray-50: #ffffff; - --spectrum-global-color-gray-75: #fdfdfd; - --spectrum-global-color-gray-100: #f8f8f8; - --spectrum-global-color-gray-200: #e6e6e6; - --spectrum-global-color-gray-300: #d5d5d5; - --spectrum-global-color-gray-400: #b1b1b1; - --spectrum-global-color-gray-500: #909090; - --spectrum-global-color-gray-600: #6d6d6d; - --spectrum-global-color-gray-700: #464646; - --spectrum-global-color-gray-800: #222222; - --spectrum-global-color-gray-900: #000000; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-modal-overlay: #00000066; - --spectrum-alias-background-color-hover-overly: #0000000a; - --spectrum-alias-background-color-quickactions: #f8f8f8e6; - --spectrum-alias-dropshadow-color: #00000026; - --spectrum-alias-highlight-hover: #0000000f; - --spectrum-alias-highlight-down: #0000001a; - --spectrum-alias-highlight-selected: #0265dc1a; - --spectrum-alias-highlight-selected-hover: #0265dc33; - --spectrum-alias-text-highlight-color: #0265dc33; - --spectrum-alias-border-color-translucent: #0000001a; - --spectrum-alias-radial-reaction-color: #22222299; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); - --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-75); - --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-global-color-seafoam-400: #00a19a; + --spectrum-global-color-seafoam-500: #008c87; + --spectrum-global-color-seafoam-600: #007772; + --spectrum-global-color-seafoam-700: #00635f; + --spectrum-global-color-yellow-400: #e8c600; + --spectrum-global-color-yellow-500: #d7b300; + --spectrum-global-color-yellow-600: #c49f00; + --spectrum-global-color-yellow-700: #b08c00; --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-75); --spectrum-well-background-color: #22222205; - --spectrum-font-family-clean: "Adobe Clean"; - --spectrum-font-family-cleanSerif: "Adobe Clean Serif"; - --spectrum-font-family-cleanHan: "Adobe Clean Han"; - --spectrum-font-family-sourceCode: "Source Code Pro"; - --spectrum-font-size-50: 11px; - --spectrum-font-size-75: 12px; - --spectrum-font-size-100: 14px; - --spectrum-font-size-200: 16px; - --spectrum-font-size-300: 18px; - --spectrum-font-size-400: 20px; - --spectrum-font-size-500: 22px; - --spectrum-font-size-600: 25px; - --spectrum-font-size-700: 28px; - --spectrum-font-size-800: 32px; - --spectrum-font-size-900: 36px; - --spectrum-font-size-1000: 40px; - --spectrum-font-size-1100: 45px; - --spectrum-font-size-1200: 50px; - --spectrum-font-size-1300: 60px; } body[data-color-mode="dark"] { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-hover-overly: #ffffff0f; + --spectrum-alias-background-color-modal-overlay: #00000080; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); + --spectrum-alias-background-color-quickactions: #323232e6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); + --spectrum-alias-border-color-translucent: #ffffff1a; + --spectrum-alias-dropshadow-color: #00000080; + --spectrum-alias-highlight-down: #ffffff1a; + --spectrum-alias-highlight-hover: #ffffff12; + --spectrum-alias-highlight-selected: #54a3f626; + --spectrum-alias-highlight-selected-hover: #54a3f640; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-text-highlight-color: #54a3f640; + --spectrum-global-color-blue-400: #348ff4; + --spectrum-global-color-blue-500: #54a3f6; + --spectrum-global-color-blue-600: #72b7f9; + --spectrum-global-color-blue-700: #8fcafc; --spectrum-global-color-celery-400: #22b833; --spectrum-global-color-celery-500: #44ca49; --spectrum-global-color-celery-600: #69dc63; @@ -134,46 +153,10 @@ body[data-color-mode="dark"] { --spectrum-global-color-chartreuse-500: #a6d312; --spectrum-global-color-chartreuse-600: #b8e525; --spectrum-global-color-chartreuse-700: #cdf547; - --spectrum-global-color-yellow-400: #e4c200; - --spectrum-global-color-yellow-500: #f4d500; - --spectrum-global-color-yellow-600: #f9e85c; - --spectrum-global-color-yellow-700: #fcf6bb; - --spectrum-global-color-magenta-400: #de3d82; - --spectrum-global-color-magenta-500: #ed5795; - --spectrum-global-color-magenta-600: #f972a7; - --spectrum-global-color-magenta-700: #ff8fb9; --spectrum-global-color-fuchsia-400: #cd39ce; --spectrum-global-color-fuchsia-500: #df51e0; --spectrum-global-color-fuchsia-600: #eb6eec; --spectrum-global-color-fuchsia-700: #f48cf2; - --spectrum-global-color-purple-400: #9d57f3; - --spectrum-global-color-purple-500: #ac6ff9; - --spectrum-global-color-purple-600: #bb87fb; - --spectrum-global-color-purple-700: #ca9ffc; - --spectrum-global-color-indigo-400: #686df4; - --spectrum-global-color-indigo-500: #7c81fb; - --spectrum-global-color-indigo-600: #9195ff; - --spectrum-global-color-indigo-700: #a7aaff; - --spectrum-global-color-seafoam-400: #009e98; - --spectrum-global-color-seafoam-500: #03b2ab; - --spectrum-global-color-seafoam-600: #36c5bd; - --spectrum-global-color-seafoam-700: #5dd6cf; - --spectrum-global-color-red-400: #ea3829; - --spectrum-global-color-red-500: #f65843; - --spectrum-global-color-red-600: #ff755e; - --spectrum-global-color-red-700: #ff9581; - --spectrum-global-color-orange-400: #f4810c; - --spectrum-global-color-orange-500: #fe9a2e; - --spectrum-global-color-orange-600: #ffb558; - --spectrum-global-color-orange-700: #fdce88; - --spectrum-global-color-green-400: #12a26c; - --spectrum-global-color-green-500: #2bb47d; - --spectrum-global-color-green-600: #43c78f; - --spectrum-global-color-green-700: #5ed9a2; - --spectrum-global-color-blue-400: #348ff4; - --spectrum-global-color-blue-500: #54a3f6; - --spectrum-global-color-blue-600: #72b7f9; - --spectrum-global-color-blue-700: #8fcafc; --spectrum-global-color-gray-50: #1d1d1d; --spectrum-global-color-gray-75: #262626; --spectrum-global-color-gray-100: #323232; @@ -185,77 +168,77 @@ body[data-color-mode="dark"] { --spectrum-global-color-gray-700: #d1d1d1; --spectrum-global-color-gray-800: #ebebeb; --spectrum-global-color-gray-900: #ffffff; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); - --spectrum-alias-background-color-modal-overlay: #00000080; - --spectrum-alias-background-color-hover-overly: #ffffff0f; - --spectrum-alias-background-color-quickactions: #323232e6; - --spectrum-alias-dropshadow-color: #00000080; - --spectrum-alias-highlight-hover: #ffffff12; - --spectrum-alias-highlight-down: #ffffff1a; - --spectrum-alias-highlight-selected: #54a3f626; - --spectrum-alias-highlight-selected-hover: #54a3f640; - --spectrum-alias-text-highlight-color: #54a3f640; - --spectrum-alias-border-color-translucent: #ffffff1a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); - --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-100); - --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-100); - --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-100); - --spectrum-well-background-color: #ebebeb05; -} - -@media (prefers-color-scheme: dark) { - :root { - --spectrum-global-color-celery-400: #22b833; - --spectrum-global-color-celery-500: #44ca49; + --spectrum-global-color-green-400: #12a26c; + --spectrum-global-color-green-500: #2bb47d; + --spectrum-global-color-green-600: #43c78f; + --spectrum-global-color-green-700: #5ed9a2; + --spectrum-global-color-indigo-400: #686df4; + --spectrum-global-color-indigo-500: #7c81fb; + --spectrum-global-color-indigo-600: #9195ff; + --spectrum-global-color-indigo-700: #a7aaff; + --spectrum-global-color-magenta-400: #de3d82; + --spectrum-global-color-magenta-500: #ed5795; + --spectrum-global-color-magenta-600: #f972a7; + --spectrum-global-color-magenta-700: #ff8fb9; + --spectrum-global-color-orange-400: #f4810c; + --spectrum-global-color-orange-500: #fe9a2e; + --spectrum-global-color-orange-600: #ffb558; + --spectrum-global-color-orange-700: #fdce88; + --spectrum-global-color-purple-400: #9d57f3; + --spectrum-global-color-purple-500: #ac6ff9; + --spectrum-global-color-purple-600: #bb87fb; + --spectrum-global-color-purple-700: #ca9ffc; + --spectrum-global-color-red-400: #ea3829; + --spectrum-global-color-red-500: #f65843; + --spectrum-global-color-red-600: #ff755e; + --spectrum-global-color-red-700: #ff9581; + --spectrum-global-color-seafoam-400: #009e98; + --spectrum-global-color-seafoam-500: #03b2ab; + --spectrum-global-color-seafoam-600: #36c5bd; + --spectrum-global-color-seafoam-700: #5dd6cf; + --spectrum-global-color-yellow-400: #e4c200; + --spectrum-global-color-yellow-500: #f4d500; + --spectrum-global-color-yellow-600: #f9e85c; + --spectrum-global-color-yellow-700: #fcf6bb; + --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-well-background-color: #ebebeb05; +} + +@media (prefers-color-scheme: dark) { + :root { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-hover-overly: #ffffff0f; + --spectrum-alias-background-color-modal-overlay: #00000080; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); + --spectrum-alias-background-color-quickactions: #323232e6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); + --spectrum-alias-border-color-translucent: #ffffff1a; + --spectrum-alias-dropshadow-color: #00000080; + --spectrum-alias-highlight-down: #ffffff1a; + --spectrum-alias-highlight-hover: #ffffff12; + --spectrum-alias-highlight-selected: #54a3f626; + --spectrum-alias-highlight-selected-hover: #54a3f640; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-text-highlight-color: #54a3f640; + --spectrum-global-color-blue-400: #348ff4; + --spectrum-global-color-blue-500: #54a3f6; + --spectrum-global-color-blue-600: #72b7f9; + --spectrum-global-color-blue-700: #8fcafc; + --spectrum-global-color-celery-400: #22b833; + --spectrum-global-color-celery-500: #44ca49; --spectrum-global-color-celery-600: #69dc63; --spectrum-global-color-celery-700: #8eeb7f; --spectrum-global-color-chartreuse-400: #94c008; --spectrum-global-color-chartreuse-500: #a6d312; --spectrum-global-color-chartreuse-600: #b8e525; --spectrum-global-color-chartreuse-700: #cdf547; - --spectrum-global-color-yellow-400: #e4c200; - --spectrum-global-color-yellow-500: #f4d500; - --spectrum-global-color-yellow-600: #f9e85c; - --spectrum-global-color-yellow-700: #fcf6bb; - --spectrum-global-color-magenta-400: #de3d82; - --spectrum-global-color-magenta-500: #ed5795; - --spectrum-global-color-magenta-600: #f972a7; - --spectrum-global-color-magenta-700: #ff8fb9; --spectrum-global-color-fuchsia-400: #cd39ce; --spectrum-global-color-fuchsia-500: #df51e0; --spectrum-global-color-fuchsia-600: #eb6eec; --spectrum-global-color-fuchsia-700: #f48cf2; - --spectrum-global-color-purple-400: #9d57f3; - --spectrum-global-color-purple-500: #ac6ff9; - --spectrum-global-color-purple-600: #bb87fb; - --spectrum-global-color-purple-700: #ca9ffc; - --spectrum-global-color-indigo-400: #686df4; - --spectrum-global-color-indigo-500: #7c81fb; - --spectrum-global-color-indigo-600: #9195ff; - --spectrum-global-color-indigo-700: #a7aaff; - --spectrum-global-color-seafoam-400: #009e98; - --spectrum-global-color-seafoam-500: #03b2ab; - --spectrum-global-color-seafoam-600: #36c5bd; - --spectrum-global-color-seafoam-700: #5dd6cf; - --spectrum-global-color-red-400: #ea3829; - --spectrum-global-color-red-500: #f65843; - --spectrum-global-color-red-600: #ff755e; - --spectrum-global-color-red-700: #ff9581; - --spectrum-global-color-orange-400: #f4810c; - --spectrum-global-color-orange-500: #fe9a2e; - --spectrum-global-color-orange-600: #ffb558; - --spectrum-global-color-orange-700: #fdce88; - --spectrum-global-color-green-400: #12a26c; - --spectrum-global-color-green-500: #2bb47d; - --spectrum-global-color-green-600: #43c78f; - --spectrum-global-color-green-700: #5ed9a2; - --spectrum-global-color-blue-400: #348ff4; - --spectrum-global-color-blue-500: #54a3f6; - --spectrum-global-color-blue-600: #72b7f9; - --spectrum-global-color-blue-700: #8fcafc; --spectrum-global-color-gray-50: #1d1d1d; --spectrum-global-color-gray-75: #262626; --spectrum-global-color-gray-100: #323232; @@ -267,29 +250,65 @@ body[data-color-mode="dark"] { --spectrum-global-color-gray-700: #d1d1d1; --spectrum-global-color-gray-800: #ebebeb; --spectrum-global-color-gray-900: #ffffff; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); - --spectrum-alias-background-color-modal-overlay: #00000080; - --spectrum-alias-background-color-hover-overly: #ffffff0f; - --spectrum-alias-background-color-quickactions: #323232e6; - --spectrum-alias-dropshadow-color: #00000080; - --spectrum-alias-highlight-hover: #ffffff12; - --spectrum-alias-highlight-down: #ffffff1a; - --spectrum-alias-highlight-selected: #54a3f626; - --spectrum-alias-highlight-selected-hover: #54a3f640; - --spectrum-alias-text-highlight-color: #54a3f640; - --spectrum-alias-border-color-translucent: #ffffff1a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); - --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-100); - --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-global-color-green-400: #12a26c; + --spectrum-global-color-green-500: #2bb47d; + --spectrum-global-color-green-600: #43c78f; + --spectrum-global-color-green-700: #5ed9a2; + --spectrum-global-color-indigo-400: #686df4; + --spectrum-global-color-indigo-500: #7c81fb; + --spectrum-global-color-indigo-600: #9195ff; + --spectrum-global-color-indigo-700: #a7aaff; + --spectrum-global-color-magenta-400: #de3d82; + --spectrum-global-color-magenta-500: #ed5795; + --spectrum-global-color-magenta-600: #f972a7; + --spectrum-global-color-magenta-700: #ff8fb9; + --spectrum-global-color-orange-400: #f4810c; + --spectrum-global-color-orange-500: #fe9a2e; + --spectrum-global-color-orange-600: #ffb558; + --spectrum-global-color-orange-700: #fdce88; + --spectrum-global-color-purple-400: #9d57f3; + --spectrum-global-color-purple-500: #ac6ff9; + --spectrum-global-color-purple-600: #bb87fb; + --spectrum-global-color-purple-700: #ca9ffc; + --spectrum-global-color-red-400: #ea3829; + --spectrum-global-color-red-500: #f65843; + --spectrum-global-color-red-600: #ff755e; + --spectrum-global-color-red-700: #ff9581; + --spectrum-global-color-seafoam-400: #009e98; + --spectrum-global-color-seafoam-500: #03b2ab; + --spectrum-global-color-seafoam-600: #36c5bd; + --spectrum-global-color-seafoam-700: #5dd6cf; + --spectrum-global-color-yellow-400: #e4c200; + --spectrum-global-color-yellow-500: #f4d500; + --spectrum-global-color-yellow-600: #f9e85c; + --spectrum-global-color-yellow-700: #fcf6bb; --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-100); --spectrum-well-background-color: #ebebeb05; } } body[data-color-mode="darkest"] { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-hover-overly: #ffffff14; + --spectrum-alias-background-color-modal-overlay: #00000099; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); + --spectrum-alias-background-color-quickactions: #1d1d1de6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); + --spectrum-alias-border-color-translucent: #ffffff1a; + --spectrum-alias-dropshadow-color: #000000cc; + --spectrum-alias-highlight-down: #ffffff26; + --spectrum-alias-highlight-hover: #ffffff14; + --spectrum-alias-highlight-selected: #4096f333; + --spectrum-alias-highlight-selected-hover: #4096f34d; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-text-highlight-color: #4096f34d; + --spectrum-global-color-blue-400: #1d80f5; + --spectrum-global-color-blue-500: #4096f3; + --spectrum-global-color-blue-600: #5eaaf7; + --spectrum-global-color-blue-700: #7cbdfa; --spectrum-global-color-celery-400: #0dab25; --spectrum-global-color-celery-500: #2dbf3a; --spectrum-global-color-celery-600: #50d052; @@ -298,46 +317,10 @@ body[data-color-mode="darkest"] { --spectrum-global-color-chartreuse-500: #9ac60b; --spectrum-global-color-chartreuse-600: #aad816; --spectrum-global-color-chartreuse-700: #bbe829; - --spectrum-global-color-yellow-400: #d8b500; - --spectrum-global-color-yellow-500: #e9c700; - --spectrum-global-color-yellow-600: #f7d804; - --spectrum-global-color-yellow-700: #f9e961; - --spectrum-global-color-magenta-400: #d12b72; - --spectrum-global-color-magenta-500: #e34589; - --spectrum-global-color-magenta-600: #f1619c; - --spectrum-global-color-magenta-700: #fc7cad; --spectrum-global-color-fuchsia-400: #bf2bbf; --spectrum-global-color-fuchsia-500: #d341d5; --spectrum-global-color-fuchsia-600: #e45be5; --spectrum-global-color-fuchsia-700: #ef78ee; - --spectrum-global-color-purple-400: #9146ec; - --spectrum-global-color-purple-500: #a25ef6; - --spectrum-global-color-purple-600: #b277fa; - --spectrum-global-color-purple-700: #c08ffc; - --spectrum-global-color-indigo-400: #5a60eb; - --spectrum-global-color-indigo-500: #6e73f6; - --spectrum-global-color-indigo-600: #8488fd; - --spectrum-global-color-indigo-700: #999dff; - --spectrum-global-color-seafoam-400: #00928c; - --spectrum-global-color-seafoam-500: #00a59f; - --spectrum-global-color-seafoam-600: #1ab9b2; - --spectrum-global-color-seafoam-700: #42cac3; - --spectrum-global-color-red-400: #dd2118; - --spectrum-global-color-red-500: #ee4331; - --spectrum-global-color-red-600: #f9634c; - --spectrum-global-color-red-700: #ff816b; - --spectrum-global-color-orange-400: #e87400; - --spectrum-global-color-orange-500: #f98917; - --spectrum-global-color-orange-600: #ffa23b; - --spectrum-global-color-orange-700: #ffbc66; - --spectrum-global-color-green-400: #009562; - --spectrum-global-color-green-500: #1ca872; - --spectrum-global-color-green-600: #34bb84; - --spectrum-global-color-green-700: #4bcd95; - --spectrum-global-color-blue-400: #1d80f5; - --spectrum-global-color-blue-500: #4096f3; - --spectrum-global-color-blue-600: #5eaaf7; - --spectrum-global-color-blue-700: #7cbdfa; --spectrum-global-color-gray-50: #000000; --spectrum-global-color-gray-75: #0e0e0e; --spectrum-global-color-gray-100: #1d1d1d; @@ -349,28 +332,64 @@ body[data-color-mode="darkest"] { --spectrum-global-color-gray-700: #d0d0d0; --spectrum-global-color-gray-800: #ebebeb; --spectrum-global-color-gray-900: #ffffff; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); - --spectrum-alias-background-color-modal-overlay: #00000099; - --spectrum-alias-background-color-hover-overly: #ffffff14; - --spectrum-alias-background-color-quickactions: #1d1d1de6; - --spectrum-alias-dropshadow-color: #000000cc; - --spectrum-alias-highlight-hover: #ffffff14; - --spectrum-alias-highlight-down: #ffffff26; - --spectrum-alias-highlight-selected: #4096f333; - --spectrum-alias-highlight-selected-hover: #4096f34d; - --spectrum-alias-text-highlight-color: #4096f34d; - --spectrum-alias-border-color-translucent: #ffffff1a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); - --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-100); - --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-global-color-green-400: #009562; + --spectrum-global-color-green-500: #1ca872; + --spectrum-global-color-green-600: #34bb84; + --spectrum-global-color-green-700: #4bcd95; + --spectrum-global-color-indigo-400: #5a60eb; + --spectrum-global-color-indigo-500: #6e73f6; + --spectrum-global-color-indigo-600: #8488fd; + --spectrum-global-color-indigo-700: #999dff; + --spectrum-global-color-magenta-400: #d12b72; + --spectrum-global-color-magenta-500: #e34589; + --spectrum-global-color-magenta-600: #f1619c; + --spectrum-global-color-magenta-700: #fc7cad; + --spectrum-global-color-orange-400: #e87400; + --spectrum-global-color-orange-500: #f98917; + --spectrum-global-color-orange-600: #ffa23b; + --spectrum-global-color-orange-700: #ffbc66; + --spectrum-global-color-purple-400: #9146ec; + --spectrum-global-color-purple-500: #a25ef6; + --spectrum-global-color-purple-600: #b277fa; + --spectrum-global-color-purple-700: #c08ffc; + --spectrum-global-color-red-400: #dd2118; + --spectrum-global-color-red-500: #ee4331; + --spectrum-global-color-red-600: #f9634c; + --spectrum-global-color-red-700: #ff816b; + --spectrum-global-color-seafoam-400: #00928c; + --spectrum-global-color-seafoam-500: #00a59f; + --spectrum-global-color-seafoam-600: #1ab9b2; + --spectrum-global-color-seafoam-700: #42cac3; + --spectrum-global-color-yellow-400: #d8b500; + --spectrum-global-color-yellow-500: #e9c700; + --spectrum-global-color-yellow-600: #f7d804; + --spectrum-global-color-yellow-700: #f9e961; --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-100); + --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-100); --spectrum-well-background-color: #ebebeb05; } body[data-color-mode="light"] { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-background-color-hover-overly: #0000000a; + --spectrum-alias-background-color-modal-overlay: #00000066; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-quickactions: #f8f8f8e6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); + --spectrum-alias-border-color-translucent: #0000001a; + --spectrum-alias-dropshadow-color: #00000026; + --spectrum-alias-highlight-down: #0000001a; + --spectrum-alias-highlight-hover: #0000000f; + --spectrum-alias-highlight-selected: #0265dc1a; + --spectrum-alias-highlight-selected-hover: #0265dc33; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-text-highlight-color: #0265dc33; + --spectrum-global-color-blue-400: #147af3; + --spectrum-global-color-blue-500: #0265dc; + --spectrum-global-color-blue-600: #0054b6; + --spectrum-global-color-blue-700: #004491; --spectrum-global-color-celery-400: #27bb36; --spectrum-global-color-celery-500: #07a721; --spectrum-global-color-celery-600: #009112; @@ -379,46 +398,10 @@ body[data-color-mode="light"] { --spectrum-global-color-chartreuse-500: #87b103; --spectrum-global-color-chartreuse-600: #769c00; --spectrum-global-color-chartreuse-700: #678800; - --spectrum-global-color-yellow-400: #e8c600; - --spectrum-global-color-yellow-500: #d7b300; - --spectrum-global-color-yellow-600: #c49f00; - --spectrum-global-color-yellow-700: #b08c00; - --spectrum-global-color-magenta-400: #de3d82; - --spectrum-global-color-magenta-500: #c82269; - --spectrum-global-color-magenta-600: #ad0955; - --spectrum-global-color-magenta-700: #8e0045; --spectrum-global-color-fuchsia-400: #cd3ace; --spectrum-global-color-fuchsia-500: #b622b7; --spectrum-global-color-fuchsia-600: #9d039e; --spectrum-global-color-fuchsia-700: #800081; - --spectrum-global-color-purple-400: #9d57f4; - --spectrum-global-color-purple-500: #893de7; - --spectrum-global-color-purple-600: #7326d3; - --spectrum-global-color-purple-700: #5d13b7; - --spectrum-global-color-indigo-400: #686df4; - --spectrum-global-color-indigo-500: #5258e4; - --spectrum-global-color-indigo-600: #4046ca; - --spectrum-global-color-indigo-700: #3236a8; - --spectrum-global-color-seafoam-400: #00a19a; - --spectrum-global-color-seafoam-500: #008c87; - --spectrum-global-color-seafoam-600: #007772; - --spectrum-global-color-seafoam-700: #00635f; - --spectrum-global-color-red-400: #ea3829; - --spectrum-global-color-red-500: #d31510; - --spectrum-global-color-red-600: #b40000; - --spectrum-global-color-red-700: #930000; - --spectrum-global-color-orange-400: #f68511; - --spectrum-global-color-orange-500: #e46f00; - --spectrum-global-color-orange-600: #cb5d00; - --spectrum-global-color-orange-700: #b14c00; - --spectrum-global-color-green-400: #008f5d; - --spectrum-global-color-green-500: #007a4d; - --spectrum-global-color-green-600: #00653e; - --spectrum-global-color-green-700: #005132; - --spectrum-global-color-blue-400: #147af3; - --spectrum-global-color-blue-500: #0265dc; - --spectrum-global-color-blue-600: #0054b6; - --spectrum-global-color-blue-700: #004491; --spectrum-global-color-gray-50: #ffffff; --spectrum-global-color-gray-75: #fdfdfd; --spectrum-global-color-gray-100: #f8f8f8; @@ -430,29 +413,65 @@ body[data-color-mode="light"] { --spectrum-global-color-gray-700: #464646; --spectrum-global-color-gray-800: #222222; --spectrum-global-color-gray-900: #000000; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-modal-overlay: #00000066; - --spectrum-alias-background-color-hover-overly: #0000000a; - --spectrum-alias-background-color-quickactions: #f8f8f8e6; - --spectrum-alias-dropshadow-color: #00000026; - --spectrum-alias-highlight-hover: #0000000f; - --spectrum-alias-highlight-down: #0000001a; - --spectrum-alias-highlight-selected: #0265dc1a; - --spectrum-alias-highlight-selected-hover: #0265dc33; - --spectrum-alias-text-highlight-color: #0265dc33; - --spectrum-alias-border-color-translucent: #0000001a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); - --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-75); - --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-global-color-green-400: #008f5d; + --spectrum-global-color-green-500: #007a4d; + --spectrum-global-color-green-600: #00653e; + --spectrum-global-color-green-700: #005132; + --spectrum-global-color-indigo-400: #686df4; + --spectrum-global-color-indigo-500: #5258e4; + --spectrum-global-color-indigo-600: #4046ca; + --spectrum-global-color-indigo-700: #3236a8; + --spectrum-global-color-magenta-400: #de3d82; + --spectrum-global-color-magenta-500: #c82269; + --spectrum-global-color-magenta-600: #ad0955; + --spectrum-global-color-magenta-700: #8e0045; + --spectrum-global-color-orange-400: #f68511; + --spectrum-global-color-orange-500: #e46f00; + --spectrum-global-color-orange-600: #cb5d00; + --spectrum-global-color-orange-700: #b14c00; + --spectrum-global-color-purple-400: #9d57f4; + --spectrum-global-color-purple-500: #893de7; + --spectrum-global-color-purple-600: #7326d3; + --spectrum-global-color-purple-700: #5d13b7; + --spectrum-global-color-red-400: #ea3829; + --spectrum-global-color-red-500: #d31510; + --spectrum-global-color-red-600: #b40000; + --spectrum-global-color-red-700: #930000; + --spectrum-global-color-seafoam-400: #00a19a; + --spectrum-global-color-seafoam-500: #008c87; + --spectrum-global-color-seafoam-600: #007772; + --spectrum-global-color-seafoam-700: #00635f; + --spectrum-global-color-yellow-400: #e8c600; + --spectrum-global-color-yellow-500: #d7b300; + --spectrum-global-color-yellow-600: #c49f00; + --spectrum-global-color-yellow-700: #b08c00; --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-75); --spectrum-well-background-color: #22222205; } @media (prefers-color-scheme: light) { :root { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-background-color-hover-overly: #0000000a; + --spectrum-alias-background-color-modal-overlay: #00000066; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-quickactions: #f8f8f8e6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); + --spectrum-alias-border-color-translucent: #0000001a; + --spectrum-alias-dropshadow-color: #00000026; + --spectrum-alias-highlight-down: #0000001a; + --spectrum-alias-highlight-hover: #0000000f; + --spectrum-alias-highlight-selected: #0265dc1a; + --spectrum-alias-highlight-selected-hover: #0265dc33; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-text-highlight-color: #0265dc33; + --spectrum-global-color-blue-400: #147af3; + --spectrum-global-color-blue-500: #0265dc; + --spectrum-global-color-blue-600: #0054b6; + --spectrum-global-color-blue-700: #004491; --spectrum-global-color-celery-400: #27bb36; --spectrum-global-color-celery-500: #07a721; --spectrum-global-color-celery-600: #009112; @@ -461,46 +480,10 @@ body[data-color-mode="light"] { --spectrum-global-color-chartreuse-500: #87b103; --spectrum-global-color-chartreuse-600: #769c00; --spectrum-global-color-chartreuse-700: #678800; - --spectrum-global-color-yellow-400: #e8c600; - --spectrum-global-color-yellow-500: #d7b300; - --spectrum-global-color-yellow-600: #c49f00; - --spectrum-global-color-yellow-700: #b08c00; - --spectrum-global-color-magenta-400: #de3d82; - --spectrum-global-color-magenta-500: #c82269; - --spectrum-global-color-magenta-600: #ad0955; - --spectrum-global-color-magenta-700: #8e0045; --spectrum-global-color-fuchsia-400: #cd3ace; --spectrum-global-color-fuchsia-500: #b622b7; --spectrum-global-color-fuchsia-600: #9d039e; --spectrum-global-color-fuchsia-700: #800081; - --spectrum-global-color-purple-400: #9d57f4; - --spectrum-global-color-purple-500: #893de7; - --spectrum-global-color-purple-600: #7326d3; - --spectrum-global-color-purple-700: #5d13b7; - --spectrum-global-color-indigo-400: #686df4; - --spectrum-global-color-indigo-500: #5258e4; - --spectrum-global-color-indigo-600: #4046ca; - --spectrum-global-color-indigo-700: #3236a8; - --spectrum-global-color-seafoam-400: #00a19a; - --spectrum-global-color-seafoam-500: #008c87; - --spectrum-global-color-seafoam-600: #007772; - --spectrum-global-color-seafoam-700: #00635f; - --spectrum-global-color-red-400: #ea3829; - --spectrum-global-color-red-500: #d31510; - --spectrum-global-color-red-600: #b40000; - --spectrum-global-color-red-700: #930000; - --spectrum-global-color-orange-400: #f68511; - --spectrum-global-color-orange-500: #e46f00; - --spectrum-global-color-orange-600: #cb5d00; - --spectrum-global-color-orange-700: #b14c00; - --spectrum-global-color-green-400: #008f5d; - --spectrum-global-color-green-500: #007a4d; - --spectrum-global-color-green-600: #00653e; - --spectrum-global-color-green-700: #005132; - --spectrum-global-color-blue-400: #147af3; - --spectrum-global-color-blue-500: #0265dc; - --spectrum-global-color-blue-600: #0054b6; - --spectrum-global-color-blue-700: #004491; --spectrum-global-color-gray-50: #ffffff; --spectrum-global-color-gray-75: #fdfdfd; --spectrum-global-color-gray-100: #f8f8f8; @@ -512,29 +495,65 @@ body[data-color-mode="light"] { --spectrum-global-color-gray-700: #464646; --spectrum-global-color-gray-800: #222222; --spectrum-global-color-gray-900: #000000; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-modal-overlay: #00000066; - --spectrum-alias-background-color-hover-overly: #0000000a; - --spectrum-alias-background-color-quickactions: #f8f8f8e6; - --spectrum-alias-dropshadow-color: #00000026; - --spectrum-alias-highlight-hover: #0000000f; - --spectrum-alias-highlight-down: #0000001a; - --spectrum-alias-highlight-selected: #0265dc1a; - --spectrum-alias-highlight-selected-hover: #0265dc33; - --spectrum-alias-text-highlight-color: #0265dc33; - --spectrum-alias-border-color-translucent: #0000001a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); - --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-75); - --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-global-color-green-400: #008f5d; + --spectrum-global-color-green-500: #007a4d; + --spectrum-global-color-green-600: #00653e; + --spectrum-global-color-green-700: #005132; + --spectrum-global-color-indigo-400: #686df4; + --spectrum-global-color-indigo-500: #5258e4; + --spectrum-global-color-indigo-600: #4046ca; + --spectrum-global-color-indigo-700: #3236a8; + --spectrum-global-color-magenta-400: #de3d82; + --spectrum-global-color-magenta-500: #c82269; + --spectrum-global-color-magenta-600: #ad0955; + --spectrum-global-color-magenta-700: #8e0045; + --spectrum-global-color-orange-400: #f68511; + --spectrum-global-color-orange-500: #e46f00; + --spectrum-global-color-orange-600: #cb5d00; + --spectrum-global-color-orange-700: #b14c00; + --spectrum-global-color-purple-400: #9d57f4; + --spectrum-global-color-purple-500: #893de7; + --spectrum-global-color-purple-600: #7326d3; + --spectrum-global-color-purple-700: #5d13b7; + --spectrum-global-color-red-400: #ea3829; + --spectrum-global-color-red-500: #d31510; + --spectrum-global-color-red-600: #b40000; + --spectrum-global-color-red-700: #930000; + --spectrum-global-color-seafoam-400: #00a19a; + --spectrum-global-color-seafoam-500: #008c87; + --spectrum-global-color-seafoam-600: #007772; + --spectrum-global-color-seafoam-700: #00635f; + --spectrum-global-color-yellow-400: #e8c600; + --spectrum-global-color-yellow-500: #d7b300; + --spectrum-global-color-yellow-600: #c49f00; + --spectrum-global-color-yellow-700: #b08c00; --spectrum-scrollbar-mac-l-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-scrollbar-mac-m-track-background-color: var(--spectrum-global-color-gray-75); + --spectrum-scrollbar-mac-s-track-background-color: var(--spectrum-global-color-gray-75); --spectrum-well-background-color: #22222205; } } body[data-color-mode="lightest"] { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-background-color-hover-overly: #0000000a; + --spectrum-alias-background-color-modal-overlay: #00000066; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-quickactions: #ffffffe6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); + --spectrum-alias-border-color-translucent: #0000001a; + --spectrum-alias-dropshadow-color: #00000026; + --spectrum-alias-highlight-down: #0000001a; + --spectrum-alias-highlight-hover: #0000000f; + --spectrum-alias-highlight-selected: #0469e31a; + --spectrum-alias-highlight-selected-hover: #0469e333; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-text-highlight-color: #0469e333; + --spectrum-global-color-blue-400: #1b7ff5; + --spectrum-global-color-blue-500: #0469e3; + --spectrum-global-color-blue-600: #0057be; + --spectrum-global-color-blue-700: #004899; --spectrum-global-color-celery-400: #30c13d; --spectrum-global-color-celery-500: #0fac26; --spectrum-global-color-celery-600: #009614; @@ -543,46 +562,10 @@ body[data-color-mode="lightest"] { --spectrum-global-color-chartreuse-500: #8bb604; --spectrum-global-color-chartreuse-600: #7aa200; --spectrum-global-color-chartreuse-700: #6a8d00; - --spectrum-global-color-yellow-400: #eecd00; - --spectrum-global-color-yellow-500: #ddb900; - --spectrum-global-color-yellow-600: #c9a400; - --spectrum-global-color-yellow-700: #b59000; - --spectrum-global-color-magenta-400: #e24487; - --spectrum-global-color-magenta-500: #cd286f; - --spectrum-global-color-magenta-600: #b30f59; - --spectrum-global-color-magenta-700: #950048; --spectrum-global-color-fuchsia-400: #d33fd4; --spectrum-global-color-fuchsia-500: #bc27bb; --spectrum-global-color-fuchsia-600: #a30aa3; --spectrum-global-color-fuchsia-700: #870088; - --spectrum-global-color-purple-400: #a15df6; - --spectrum-global-color-purple-500: #8e43ea; - --spectrum-global-color-purple-600: #782bd8; - --spectrum-global-color-purple-700: #6217be; - --spectrum-global-color-indigo-400: #6d73f6; - --spectrum-global-color-indigo-500: #575de8; - --spectrum-global-color-indigo-600: #444ad0; - --spectrum-global-color-indigo-700: #353ab0; - --spectrum-global-color-seafoam-400: #00a6a0; - --spectrum-global-color-seafoam-500: #00918b; - --spectrum-global-color-seafoam-600: #007c76; - --spectrum-global-color-seafoam-700: #006763; - --spectrum-global-color-red-400: #ed4030; - --spectrum-global-color-red-500: #d91c15; - --spectrum-global-color-red-600: #bb0202; - --spectrum-global-color-red-700: #9a0000; - --spectrum-global-color-orange-400: #fa8b1a; - --spectrum-global-color-orange-500: #e97500; - --spectrum-global-color-orange-600: #d16100; - --spectrum-global-color-orange-700: #b65000; - --spectrum-global-color-green-400: #009461; - --spectrum-global-color-green-500: #007e50; - --spectrum-global-color-green-600: #006941; - --spectrum-global-color-green-700: #005635; - --spectrum-global-color-blue-400: #1b7ff5; - --spectrum-global-color-blue-500: #0469e3; - --spectrum-global-color-blue-600: #0057be; - --spectrum-global-color-blue-700: #004899; --spectrum-global-color-gray-50: #ffffff; --spectrum-global-color-gray-75: #ffffff; --spectrum-global-color-gray-100: #ffffff; @@ -594,72 +577,72 @@ body[data-color-mode="lightest"] { --spectrum-global-color-gray-700: #474747; --spectrum-global-color-gray-800: #222222; --spectrum-global-color-gray-900: #000000; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-modal-overlay: #00000066; - --spectrum-alias-background-color-hover-overly: #0000000a; - --spectrum-alias-background-color-quickactions: #ffffffe6; - --spectrum-alias-dropshadow-color: #00000026; - --spectrum-alias-highlight-hover: #0000000f; - --spectrum-alias-highlight-down: #0000001a; - --spectrum-alias-highlight-selected: #0469e31a; - --spectrum-alias-highlight-selected-hover: #0469e333; - --spectrum-alias-text-highlight-color: #0469e333; - --spectrum-alias-border-color-translucent: #0000001a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); + --spectrum-global-color-green-400: #009461; + --spectrum-global-color-green-500: #007e50; + --spectrum-global-color-green-600: #006941; + --spectrum-global-color-green-700: #005635; + --spectrum-global-color-indigo-400: #6d73f6; + --spectrum-global-color-indigo-500: #575de8; + --spectrum-global-color-indigo-600: #444ad0; + --spectrum-global-color-indigo-700: #353ab0; + --spectrum-global-color-magenta-400: #e24487; + --spectrum-global-color-magenta-500: #cd286f; + --spectrum-global-color-magenta-600: #b30f59; + --spectrum-global-color-magenta-700: #950048; + --spectrum-global-color-orange-400: #fa8b1a; + --spectrum-global-color-orange-500: #e97500; + --spectrum-global-color-orange-600: #d16100; + --spectrum-global-color-orange-700: #b65000; + --spectrum-global-color-purple-400: #a15df6; + --spectrum-global-color-purple-500: #8e43ea; + --spectrum-global-color-purple-600: #782bd8; + --spectrum-global-color-purple-700: #6217be; + --spectrum-global-color-red-400: #ed4030; + --spectrum-global-color-red-500: #d91c15; + --spectrum-global-color-red-600: #bb0202; + --spectrum-global-color-red-700: #9a0000; + --spectrum-global-color-seafoam-400: #00a6a0; + --spectrum-global-color-seafoam-500: #00918b; + --spectrum-global-color-seafoam-600: #007c76; + --spectrum-global-color-seafoam-700: #006763; + --spectrum-global-color-yellow-400: #eecd00; + --spectrum-global-color-yellow-500: #ddb900; + --spectrum-global-color-yellow-600: #c9a400; + --spectrum-global-color-yellow-700: #b59000; } body[data-color-mode="middark"] { - --spectrum-global-color-celery-400: #2dbe3a; - --spectrum-global-color-celery-500: #4ecf50; - --spectrum-global-color-celery-600: #70df68; - --spectrum-global-color-celery-700: #92ed82; - --spectrum-global-color-chartreuse-400: #99c50a; - --spectrum-global-color-chartreuse-500: #a9d715; - --spectrum-global-color-chartreuse-600: #bae828; - --spectrum-global-color-chartreuse-700: #cef64b; - --spectrum-global-color-yellow-400: #e8c500; - --spectrum-global-color-yellow-500: #f6d702; - --spectrum-global-color-yellow-600: #f9ea63; - --spectrum-global-color-yellow-700: #fdf6bf; - --spectrum-global-color-magenta-400: #e74b8d; - --spectrum-global-color-magenta-500: #f2639d; - --spectrum-global-color-magenta-600: #fc7bad; - --spectrum-global-color-magenta-700: #ff96bd; - --spectrum-global-color-fuchsia-400: #d846d9; - --spectrum-global-color-fuchsia-500: #e55de6; - --spectrum-global-color-fuchsia-600: #ef78ee; - --spectrum-global-color-fuchsia-700: #f693f3; - --spectrum-global-color-purple-400: #a664f7; - --spectrum-global-color-purple-500: #b379fa; - --spectrum-global-color-purple-600: #c08ffc; - --spectrum-global-color-purple-700: #cda5fd; - --spectrum-global-color-indigo-400: #7378f8; - --spectrum-global-color-indigo-500: #858afd; - --spectrum-global-color-indigo-600: #989dff; - --spectrum-global-color-indigo-700: #acb0ff; - --spectrum-global-color-seafoam-400: #00a7a0; - --spectrum-global-color-seafoam-500: #19b8b1; - --spectrum-global-color-seafoam-600: #40c9c2; - --spectrum-global-color-seafoam-700: #64d9d2; - --spectrum-global-color-red-400: #f14a37; - --spectrum-global-color-red-500: #fa654f; - --spectrum-global-color-red-600: #ff816b; - --spectrum-global-color-red-700: #ff9c89; - --spectrum-global-color-orange-400: #f88916; - --spectrum-global-color-orange-500: #ffa139; - --spectrum-global-color-orange-600: #ffba61; - --spectrum-global-color-orange-700: #fdd08e; - --spectrum-global-color-green-400: #1eaa74; - --spectrum-global-color-green-500: #33bb83; - --spectrum-global-color-green-600: #4acc94; - --spectrum-global-color-green-700: #65dda7; + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-hover-overly: #ffffff0d; + --spectrum-alias-background-color-modal-overlay: #00000066; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); + --spectrum-alias-background-color-quickactions: #4b4b4be6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); + --spectrum-alias-border-color-translucent: #ffffff1a; + --spectrum-alias-dropshadow-color: #0000004d; + --spectrum-alias-highlight-down: #ffffff1a; + --spectrum-alias-highlight-hover: #ffffff0f; + --spectrum-alias-highlight-selected: #5eaaf71a; + --spectrum-alias-highlight-selected-hover: #5eaaf733; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); + --spectrum-alias-text-highlight-color: #5eaaf733; --spectrum-global-color-blue-400: #4298f4; --spectrum-global-color-blue-500: #5eaaf7; --spectrum-global-color-blue-600: #7abcfa; --spectrum-global-color-blue-700: #95cdfc; + --spectrum-global-color-celery-400: #2dbe3a; + --spectrum-global-color-celery-500: #4ecf50; + --spectrum-global-color-celery-600: #70df68; + --spectrum-global-color-celery-700: #92ed82; + --spectrum-global-color-chartreuse-400: #99c50a; + --spectrum-global-color-chartreuse-500: #a9d715; + --spectrum-global-color-chartreuse-600: #bae828; + --spectrum-global-color-chartreuse-700: #cef64b; + --spectrum-global-color-fuchsia-400: #d846d9; + --spectrum-global-color-fuchsia-500: #e55de6; + --spectrum-global-color-fuchsia-600: #ef78ee; + --spectrum-global-color-fuchsia-700: #f693f3; --spectrum-global-color-gray-50: #393939; --spectrum-global-color-gray-75: #414141; --spectrum-global-color-gray-100: #4b4b4b; @@ -671,28 +654,64 @@ body[data-color-mode="middark"] { --spectrum-global-color-gray-700: #d4d4d4; --spectrum-global-color-gray-800: #ececec; --spectrum-global-color-gray-900: #ffffff; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-75); - --spectrum-alias-background-color-modal-overlay: #00000066; - --spectrum-alias-background-color-hover-overly: #ffffff0d; - --spectrum-alias-background-color-quickactions: #4b4b4be6; - --spectrum-alias-dropshadow-color: #0000004d; - --spectrum-alias-highlight-hover: #ffffff0f; - --spectrum-alias-highlight-down: #ffffff1a; - --spectrum-alias-highlight-selected: #5eaaf71a; - --spectrum-alias-highlight-selected-hover: #5eaaf733; - --spectrum-alias-text-highlight-color: #5eaaf733; - --spectrum-alias-border-color-translucent: #ffffff1a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-50); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-50); - --spectrum-scrollbar-mac-s-track-background-color: #00000000; - --spectrum-scrollbar-mac-m-track-background-color: #00000000; + --spectrum-global-color-green-400: #1eaa74; + --spectrum-global-color-green-500: #33bb83; + --spectrum-global-color-green-600: #4acc94; + --spectrum-global-color-green-700: #65dda7; + --spectrum-global-color-indigo-400: #7378f8; + --spectrum-global-color-indigo-500: #858afd; + --spectrum-global-color-indigo-600: #989dff; + --spectrum-global-color-indigo-700: #acb0ff; + --spectrum-global-color-magenta-400: #e74b8d; + --spectrum-global-color-magenta-500: #f2639d; + --spectrum-global-color-magenta-600: #fc7bad; + --spectrum-global-color-magenta-700: #ff96bd; + --spectrum-global-color-orange-400: #f88916; + --spectrum-global-color-orange-500: #ffa139; + --spectrum-global-color-orange-600: #ffba61; + --spectrum-global-color-orange-700: #fdd08e; + --spectrum-global-color-purple-400: #a664f7; + --spectrum-global-color-purple-500: #b379fa; + --spectrum-global-color-purple-600: #c08ffc; + --spectrum-global-color-purple-700: #cda5fd; + --spectrum-global-color-red-400: #f14a37; + --spectrum-global-color-red-500: #fa654f; + --spectrum-global-color-red-600: #ff816b; + --spectrum-global-color-red-700: #ff9c89; + --spectrum-global-color-seafoam-400: #00a7a0; + --spectrum-global-color-seafoam-500: #19b8b1; + --spectrum-global-color-seafoam-600: #40c9c2; + --spectrum-global-color-seafoam-700: #64d9d2; + --spectrum-global-color-yellow-400: #e8c500; + --spectrum-global-color-yellow-500: #f6d702; + --spectrum-global-color-yellow-600: #f9ea63; + --spectrum-global-color-yellow-700: #fdf6bf; --spectrum-scrollbar-mac-l-track-background-color: #00000000; + --spectrum-scrollbar-mac-m-track-background-color: #00000000; + --spectrum-scrollbar-mac-s-track-background-color: #00000000; --spectrum-well-background-color: #ececec05; } body[data-color-mode="midlight"] { + --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-background-color-hover-overly: #0000000a; + --spectrum-alias-background-color-modal-overlay: #00000066; + --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); + --spectrum-alias-background-color-quickactions: #dbdbdbe6; + --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); + --spectrum-alias-border-color-translucent: #0000001a; + --spectrum-alias-dropshadow-color: #00000026; + --spectrum-alias-highlight-down: #0000001a; + --spectrum-alias-highlight-hover: #0000000f; + --spectrum-alias-highlight-selected: #0057be1a; + --spectrum-alias-highlight-selected-hover: #0057be33; + --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); + --spectrum-alias-text-highlight-color: #0057be33; + --spectrum-global-color-blue-400: #0468e1; + --spectrum-global-color-blue-500: #0057be; + --spectrum-global-color-blue-600: #004798; + --spectrum-global-color-blue-700: #003776; --spectrum-global-color-celery-400: #07a721; --spectrum-global-color-celery-500: #009413; --spectrum-global-color-celery-600: #007f0f; @@ -701,46 +720,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: #779d00; --spectrum-global-color-chartreuse-600: #688a00; --spectrum-global-color-chartreuse-700: #5a7700; - --spectrum-global-color-yellow-400: #d3af00; - --spectrum-global-color-yellow-500: #c29d00; - --spectrum-global-color-yellow-600: #b08c00; - --spectrum-global-color-yellow-700: #9d7a00; - --spectrum-global-color-magenta-400: #cc276e; - --spectrum-global-color-magenta-500: #b30f58; - --spectrum-global-color-magenta-600: #950048; - --spectrum-global-color-magenta-700: #740039; --spectrum-global-color-fuchsia-400: #ba26ba; --spectrum-global-color-fuchsia-500: #a309a3; --spectrum-global-color-fuchsia-600: #860087; --spectrum-global-color-fuchsia-700: #680468; - --spectrum-global-color-purple-400: #8d42e9; - --spectrum-global-color-purple-500: #782ad8; - --spectrum-global-color-purple-600: #6116be; - --spectrum-global-color-purple-700: #4a0c99; - --spectrum-global-color-indigo-400: #565ce7; - --spectrum-global-color-indigo-500: #4449d0; - --spectrum-global-color-indigo-600: #3439b0; - --spectrum-global-color-indigo-700: #272b8b; - --spectrum-global-color-seafoam-400: #008e88; - --spectrum-global-color-seafoam-500: #007a75; - --spectrum-global-color-seafoam-600: #006763; - --spectrum-global-color-seafoam-700: #0a5350; - --spectrum-global-color-red-400: #d81a13; - --spectrum-global-color-red-500: #bb0202; - --spectrum-global-color-red-600: #990000; - --spectrum-global-color-red-700: #780000; - --spectrum-global-color-orange-400: #e46f00; - --spectrum-global-color-orange-500: #cd5f00; - --spectrum-global-color-orange-600: #b54f00; - --spectrum-global-color-orange-700: #9b4000; - --spectrum-global-color-green-400: #007d4f; - --spectrum-global-color-green-500: #006941; - --spectrum-global-color-green-600: #005534; - --spectrum-global-color-green-700: #054128; - --spectrum-global-color-blue-400: #0468e1; - --spectrum-global-color-blue-500: #0057be; - --spectrum-global-color-blue-600: #004798; - --spectrum-global-color-blue-700: #003776; --spectrum-global-color-gray-50: #fafafa; --spectrum-global-color-gray-75: #efefef; --spectrum-global-color-gray-100: #dbdbdb; @@ -752,29 +735,61 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: #454545; --spectrum-global-color-gray-800: #212121; --spectrum-global-color-gray-900: #000000; - --spectrum-alias-background-color-primary: var(--spectrum-global-color-gray-50); - --spectrum-alias-background-color-secondary: var(--spectrum-global-color-gray-100); - --spectrum-alias-background-color-modal-overlay: #00000066; - --spectrum-alias-background-color-hover-overly: #0000000a; - --spectrum-alias-background-color-quickactions: #dbdbdbe6; - --spectrum-alias-dropshadow-color: #00000026; - --spectrum-alias-highlight-hover: #0000000f; - --spectrum-alias-highlight-down: #0000001a; - --spectrum-alias-highlight-selected: #0057be1a; - --spectrum-alias-highlight-selected-hover: #0057be33; - --spectrum-alias-text-highlight-color: #0057be33; - --spectrum-alias-border-color-translucent: #0000001a; - --spectrum-alias-pasteboard-background-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-border-color: var(--spectrum-global-color-gray-300); - --spectrum-alias-appframe-separator-color: var(--spectrum-global-color-gray-300); - --spectrum-scrollbar-mac-s-track-background-color: #00000000; - --spectrum-scrollbar-mac-m-track-background-color: #00000000; + --spectrum-global-color-green-400: #007d4f; + --spectrum-global-color-green-500: #006941; + --spectrum-global-color-green-600: #005534; + --spectrum-global-color-green-700: #054128; + --spectrum-global-color-indigo-400: #565ce7; + --spectrum-global-color-indigo-500: #4449d0; + --spectrum-global-color-indigo-600: #3439b0; + --spectrum-global-color-indigo-700: #272b8b; + --spectrum-global-color-magenta-400: #cc276e; + --spectrum-global-color-magenta-500: #b30f58; + --spectrum-global-color-magenta-600: #950048; + --spectrum-global-color-magenta-700: #740039; + --spectrum-global-color-orange-400: #e46f00; + --spectrum-global-color-orange-500: #cd5f00; + --spectrum-global-color-orange-600: #b54f00; + --spectrum-global-color-orange-700: #9b4000; + --spectrum-global-color-purple-400: #8d42e9; + --spectrum-global-color-purple-500: #782ad8; + --spectrum-global-color-purple-600: #6116be; + --spectrum-global-color-purple-700: #4a0c99; + --spectrum-global-color-red-400: #d81a13; + --spectrum-global-color-red-500: #bb0202; + --spectrum-global-color-red-600: #990000; + --spectrum-global-color-red-700: #780000; + --spectrum-global-color-seafoam-400: #008e88; + --spectrum-global-color-seafoam-500: #007a75; + --spectrum-global-color-seafoam-600: #006763; + --spectrum-global-color-seafoam-700: #0a5350; + --spectrum-global-color-yellow-400: #d3af00; + --spectrum-global-color-yellow-500: #c29d00; + --spectrum-global-color-yellow-600: #b08c00; + --spectrum-global-color-yellow-700: #9d7a00; --spectrum-scrollbar-mac-l-track-background-color: #00000000; + --spectrum-scrollbar-mac-m-track-background-color: #00000000; + --spectrum-scrollbar-mac-s-track-background-color: #00000000; --spectrum-well-background-color: #21212105; } @supports (color: color(display-p3 1 1 1)) { :root { + --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); + --spectrum-alias-background-color-quickactions: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); + --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); + --spectrum-alias-highlight-selected: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.10196078431372549); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); + --spectrum-alias-radial-reaction-color: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333 / 0.6); + --spectrum-alias-text-highlight-color: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); + --spectrum-global-color-blue-400: color(display-p3 0.0784313725490196 0.47843137254901963 0.9529411764705882); + --spectrum-global-color-blue-500: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157); + --spectrum-global-color-blue-600: color(display-p3 0 0.32941176470588235 0.7137254901960784); + --spectrum-global-color-blue-700: color(display-p3 0 0.26666666666666666 0.5686274509803921); --spectrum-global-color-celery-400: color(display-p3 0.15294117647058825 0.7333333333333333 0.21176470588235294); --spectrum-global-color-celery-500: color(display-p3 0.027450980392156862 0.6549019607843137 0.12941176470588237); --spectrum-global-color-celery-600: color(display-p3 0 0.5686274509803921 0.07058823529411765); @@ -783,46 +798,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.5294117647058824 0.6941176470588235 0.011764705882352941); --spectrum-global-color-chartreuse-600: color(display-p3 0.4627450980392157 0.611764705882353 0); --spectrum-global-color-chartreuse-700: color(display-p3 0.403921568627451 0.5333333333333333 0); - --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7764705882352941 0); - --spectrum-global-color-yellow-500: color(display-p3 0.8431372549019608 0.7019607843137254 0); - --spectrum-global-color-yellow-600: color(display-p3 0.7686274509803922 0.6235294117647059 0); - --spectrum-global-color-yellow-700: color(display-p3 0.6901960784313725 0.5490196078431373 0); - --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); - --spectrum-global-color-magenta-500: color(display-p3 0.7843137254901961 0.13333333333333333 0.4117647058823529); - --spectrum-global-color-magenta-600: color(display-p3 0.6784313725490196 0.03529411764705882 0.3333333333333333); - --spectrum-global-color-magenta-700: color(display-p3 0.5568627450980392 0 0.27058823529411763); --spectrum-global-color-fuchsia-400: color(display-p3 0.803921568627451 0.22745098039215686 0.807843137254902); --spectrum-global-color-fuchsia-500: color(display-p3 0.7137254901960784 0.13333333333333333 0.7176470588235294); --spectrum-global-color-fuchsia-600: color(display-p3 0.615686274509804 0.011764705882352941 0.6196078431372549); --spectrum-global-color-fuchsia-700: color(display-p3 0.5019607843137255 0 0.5058823529411764); - --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9568627450980393); - --spectrum-global-color-purple-500: color(display-p3 0.5372549019607843 0.23921568627450981 0.9058823529411765); - --spectrum-global-color-purple-600: color(display-p3 0.45098039215686275 0.14901960784313725 0.8274509803921568); - --spectrum-global-color-purple-700: color(display-p3 0.36470588235294116 0.07450980392156863 0.7176470588235294); - --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); - --spectrum-global-color-indigo-500: color(display-p3 0.3215686274509804 0.34509803921568627 0.8941176470588236); - --spectrum-global-color-indigo-600: color(display-p3 0.25098039215686274 0.27450980392156865 0.792156862745098); - --spectrum-global-color-indigo-700: color(display-p3 0.19607843137254902 0.21176470588235294 0.6588235294117647); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6313725490196078 0.6039215686274509); - --spectrum-global-color-seafoam-500: color(display-p3 0 0.5490196078431373 0.5294117647058824); - --spectrum-global-color-seafoam-600: color(display-p3 0 0.4666666666666667 0.4470588235294118); - --spectrum-global-color-seafoam-700: color(display-p3 0 0.38823529411764707 0.37254901960784315); - --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); - --spectrum-global-color-red-500: color(display-p3 0.8274509803921568 0.08235294117647059 0.06274509803921569); - --spectrum-global-color-red-600: color(display-p3 0.7058823529411765 0 0); - --spectrum-global-color-red-700: color(display-p3 0.5764705882352941 0 0); - --spectrum-global-color-orange-400: color(display-p3 0.9647058823529412 0.5215686274509804 0.06666666666666667); - --spectrum-global-color-orange-500: color(display-p3 0.8941176470588236 0.43529411764705883 0); - --spectrum-global-color-orange-600: color(display-p3 0.796078431372549 0.36470588235294116 0); - --spectrum-global-color-orange-700: color(display-p3 0.6941176470588235 0.2980392156862745 0); - --spectrum-global-color-green-400: color(display-p3 0 0.5607843137254902 0.36470588235294116); - --spectrum-global-color-green-500: color(display-p3 0 0.47843137254901963 0.30196078431372547); - --spectrum-global-color-green-600: color(display-p3 0 0.396078431372549 0.24313725490196078); - --spectrum-global-color-green-700: color(display-p3 0 0.3176470588235294 0.19607843137254902); - --spectrum-global-color-blue-400: color(display-p3 0.0784313725490196 0.47843137254901963 0.9529411764705882); - --spectrum-global-color-blue-500: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157); - --spectrum-global-color-blue-600: color(display-p3 0 0.32941176470588235 0.7137254901960784); - --spectrum-global-color-blue-700: color(display-p3 0 0.26666666666666666 0.5686274509803921); --spectrum-global-color-gray-50: color(display-p3 1 1 1); --spectrum-global-color-gray-75: color(display-p3 0.9921568627450981 0.9921568627450981 0.9921568627450981); --spectrum-global-color-gray-100: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431); @@ -834,21 +813,56 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.27450980392156865 0.27450980392156865 0.27450980392156865); --spectrum-global-color-gray-800: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333); --spectrum-global-color-gray-900: color(display-p3 0 0 0); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); - --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); - --spectrum-alias-background-color-quickactions: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); - --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); - --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.10196078431372549); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); - --spectrum-alias-text-highlight-color: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); - --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-alias-radial-reaction-color: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333 / 0.6); + --spectrum-global-color-green-400: color(display-p3 0 0.5607843137254902 0.36470588235294116); + --spectrum-global-color-green-500: color(display-p3 0 0.47843137254901963 0.30196078431372547); + --spectrum-global-color-green-600: color(display-p3 0 0.396078431372549 0.24313725490196078); + --spectrum-global-color-green-700: color(display-p3 0 0.3176470588235294 0.19607843137254902); + --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); + --spectrum-global-color-indigo-500: color(display-p3 0.3215686274509804 0.34509803921568627 0.8941176470588236); + --spectrum-global-color-indigo-600: color(display-p3 0.25098039215686274 0.27450980392156865 0.792156862745098); + --spectrum-global-color-indigo-700: color(display-p3 0.19607843137254902 0.21176470588235294 0.6588235294117647); + --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); + --spectrum-global-color-magenta-500: color(display-p3 0.7843137254901961 0.13333333333333333 0.4117647058823529); + --spectrum-global-color-magenta-600: color(display-p3 0.6784313725490196 0.03529411764705882 0.3333333333333333); + --spectrum-global-color-magenta-700: color(display-p3 0.5568627450980392 0 0.27058823529411763); + --spectrum-global-color-orange-400: color(display-p3 0.9647058823529412 0.5215686274509804 0.06666666666666667); + --spectrum-global-color-orange-500: color(display-p3 0.8941176470588236 0.43529411764705883 0); + --spectrum-global-color-orange-600: color(display-p3 0.796078431372549 0.36470588235294116 0); + --spectrum-global-color-orange-700: color(display-p3 0.6941176470588235 0.2980392156862745 0); + --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9568627450980393); + --spectrum-global-color-purple-500: color(display-p3 0.5372549019607843 0.23921568627450981 0.9058823529411765); + --spectrum-global-color-purple-600: color(display-p3 0.45098039215686275 0.14901960784313725 0.8274509803921568); + --spectrum-global-color-purple-700: color(display-p3 0.36470588235294116 0.07450980392156863 0.7176470588235294); + --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); + --spectrum-global-color-red-500: color(display-p3 0.8274509803921568 0.08235294117647059 0.06274509803921569); + --spectrum-global-color-red-600: color(display-p3 0.7058823529411765 0 0); + --spectrum-global-color-red-700: color(display-p3 0.5764705882352941 0 0); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6313725490196078 0.6039215686274509); + --spectrum-global-color-seafoam-500: color(display-p3 0 0.5490196078431373 0.5294117647058824); + --spectrum-global-color-seafoam-600: color(display-p3 0 0.4666666666666667 0.4470588235294118); + --spectrum-global-color-seafoam-700: color(display-p3 0 0.38823529411764707 0.37254901960784315); + --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7764705882352941 0); + --spectrum-global-color-yellow-500: color(display-p3 0.8431372549019608 0.7019607843137254 0); + --spectrum-global-color-yellow-600: color(display-p3 0.7686274509803922 0.6235294117647059 0); + --spectrum-global-color-yellow-700: color(display-p3 0.6901960784313725 0.5490196078431373 0); --spectrum-well-background-color: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333 / 0.0196078431372549); } body[data-color-mode="dark"] { + --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.058823529411764705); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.5019607843137255); + --spectrum-alias-background-color-quickactions: color(display-p3 0.19607843137254902 0.19607843137254902 0.19607843137254902 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.5019607843137255); + --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.07058823529411765); + --spectrum-alias-highlight-selected: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.14901960784313725); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); + --spectrum-alias-text-highlight-color: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); + --spectrum-global-color-blue-400: color(display-p3 0.20392156862745098 0.5607843137254902 0.9568627450980393); + --spectrum-global-color-blue-500: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412); + --spectrum-global-color-blue-600: color(display-p3 0.4470588235294118 0.7176470588235294 0.9764705882352941); + --spectrum-global-color-blue-700: color(display-p3 0.5607843137254902 0.792156862745098 0.9882352941176471); --spectrum-global-color-celery-400: color(display-p3 0.13333333333333333 0.7215686274509804 0.2); --spectrum-global-color-celery-500: color(display-p3 0.26666666666666666 0.792156862745098 0.28627450980392155); --spectrum-global-color-celery-600: color(display-p3 0.4117647058823529 0.8627450980392157 0.38823529411764707); @@ -857,46 +871,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.6509803921568628 0.8274509803921568 0.07058823529411765); --spectrum-global-color-chartreuse-600: color(display-p3 0.7215686274509804 0.8980392156862745 0.1450980392156863); --spectrum-global-color-chartreuse-700: color(display-p3 0.803921568627451 0.9607843137254902 0.2784313725490196); - --spectrum-global-color-yellow-400: color(display-p3 0.8941176470588236 0.7607843137254902 0); - --spectrum-global-color-yellow-500: color(display-p3 0.9568627450980393 0.8352941176470589 0); - --spectrum-global-color-yellow-600: color(display-p3 0.9764705882352941 0.9098039215686274 0.3607843137254902); - --spectrum-global-color-yellow-700: color(display-p3 0.9882352941176471 0.9647058823529412 0.7333333333333333); - --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); - --spectrum-global-color-magenta-500: color(display-p3 0.9294117647058824 0.3411764705882353 0.5843137254901961); - --spectrum-global-color-magenta-600: color(display-p3 0.9764705882352941 0.4470588235294118 0.6549019607843137); - --spectrum-global-color-magenta-700: color(display-p3 1 0.5607843137254902 0.7254901960784313); --spectrum-global-color-fuchsia-400: color(display-p3 0.803921568627451 0.2235294117647059 0.807843137254902); --spectrum-global-color-fuchsia-500: color(display-p3 0.8745098039215686 0.3176470588235294 0.8784313725490196); --spectrum-global-color-fuchsia-600: color(display-p3 0.9215686274509803 0.43137254901960786 0.9254901960784314); --spectrum-global-color-fuchsia-700: color(display-p3 0.9568627450980393 0.5490196078431373 0.9490196078431372); - --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9529411764705882); - --spectrum-global-color-purple-500: color(display-p3 0.6745098039215687 0.43529411764705883 0.9764705882352941); - --spectrum-global-color-purple-600: color(display-p3 0.7333333333333333 0.5294117647058824 0.984313725490196); - --spectrum-global-color-purple-700: color(display-p3 0.792156862745098 0.6235294117647059 0.9882352941176471); - --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); - --spectrum-global-color-indigo-500: color(display-p3 0.48627450980392156 0.5058823529411764 0.984313725490196); - --spectrum-global-color-indigo-600: color(display-p3 0.5686274509803921 0.5843137254901961 1); - --spectrum-global-color-indigo-700: color(display-p3 0.6549019607843137 0.6666666666666666 1); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6196078431372549 0.596078431372549); - --spectrum-global-color-seafoam-500: color(display-p3 0.011764705882352941 0.6980392156862745 0.6705882352941176); - --spectrum-global-color-seafoam-600: color(display-p3 0.21176470588235294 0.7725490196078432 0.7411764705882353); - --spectrum-global-color-seafoam-700: color(display-p3 0.36470588235294116 0.8392156862745098 0.8117647058823529); - --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); - --spectrum-global-color-red-500: color(display-p3 0.9647058823529412 0.34509803921568627 0.2627450980392157); - --spectrum-global-color-red-600: color(display-p3 1 0.4588235294117647 0.3686274509803922); - --spectrum-global-color-red-700: color(display-p3 1 0.5843137254901961 0.5058823529411764); - --spectrum-global-color-orange-400: color(display-p3 0.9568627450980393 0.5058823529411764 0.047058823529411764); - --spectrum-global-color-orange-500: color(display-p3 0.996078431372549 0.6039215686274509 0.1803921568627451); - --spectrum-global-color-orange-600: color(display-p3 1 0.7098039215686275 0.34509803921568627); - --spectrum-global-color-orange-700: color(display-p3 0.9921568627450981 0.807843137254902 0.5333333333333333); - --spectrum-global-color-green-400: color(display-p3 0.07058823529411765 0.6352941176470588 0.4235294117647059); - --spectrum-global-color-green-500: color(display-p3 0.16862745098039217 0.7058823529411765 0.49019607843137253); - --spectrum-global-color-green-600: color(display-p3 0.2627450980392157 0.7803921568627451 0.5607843137254902); - --spectrum-global-color-green-700: color(display-p3 0.3686274509803922 0.8509803921568627 0.6352941176470588); - --spectrum-global-color-blue-400: color(display-p3 0.20392156862745098 0.5607843137254902 0.9568627450980393); - --spectrum-global-color-blue-500: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412); - --spectrum-global-color-blue-600: color(display-p3 0.4470588235294118 0.7176470588235294 0.9764705882352941); - --spectrum-global-color-blue-700: color(display-p3 0.5607843137254902 0.792156862745098 0.9882352941176471); --spectrum-global-color-gray-50: color(display-p3 0.11372549019607843 0.11372549019607843 0.11372549019607843); --spectrum-global-color-gray-75: color(display-p3 0.14901960784313725 0.14901960784313725 0.14901960784313725); --spectrum-global-color-gray-100: color(display-p3 0.19607843137254902 0.19607843137254902 0.19607843137254902); @@ -908,21 +886,57 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.8196078431372549 0.8196078431372549 0.8196078431372549); --spectrum-global-color-gray-800: color(display-p3 0.9215686274509803 0.9215686274509803 0.9215686274509803); --spectrum-global-color-gray-900: color(display-p3 1 1 1); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.5019607843137255); - --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.058823529411764705); - --spectrum-alias-background-color-quickactions: color(display-p3 0.19607843137254902 0.19607843137254902 0.19607843137254902 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.5019607843137255); - --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.07058823529411765); - --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.14901960784313725); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); - --spectrum-alias-text-highlight-color: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); - --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-global-color-green-400: color(display-p3 0.07058823529411765 0.6352941176470588 0.4235294117647059); + --spectrum-global-color-green-500: color(display-p3 0.16862745098039217 0.7058823529411765 0.49019607843137253); + --spectrum-global-color-green-600: color(display-p3 0.2627450980392157 0.7803921568627451 0.5607843137254902); + --spectrum-global-color-green-700: color(display-p3 0.3686274509803922 0.8509803921568627 0.6352941176470588); + --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); + --spectrum-global-color-indigo-500: color(display-p3 0.48627450980392156 0.5058823529411764 0.984313725490196); + --spectrum-global-color-indigo-600: color(display-p3 0.5686274509803921 0.5843137254901961 1); + --spectrum-global-color-indigo-700: color(display-p3 0.6549019607843137 0.6666666666666666 1); + --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); + --spectrum-global-color-magenta-500: color(display-p3 0.9294117647058824 0.3411764705882353 0.5843137254901961); + --spectrum-global-color-magenta-600: color(display-p3 0.9764705882352941 0.4470588235294118 0.6549019607843137); + --spectrum-global-color-magenta-700: color(display-p3 1 0.5607843137254902 0.7254901960784313); + --spectrum-global-color-orange-400: color(display-p3 0.9568627450980393 0.5058823529411764 0.047058823529411764); + --spectrum-global-color-orange-500: color(display-p3 0.996078431372549 0.6039215686274509 0.1803921568627451); + --spectrum-global-color-orange-600: color(display-p3 1 0.7098039215686275 0.34509803921568627); + --spectrum-global-color-orange-700: color(display-p3 0.9921568627450981 0.807843137254902 0.5333333333333333); + --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9529411764705882); + --spectrum-global-color-purple-500: color(display-p3 0.6745098039215687 0.43529411764705883 0.9764705882352941); + --spectrum-global-color-purple-600: color(display-p3 0.7333333333333333 0.5294117647058824 0.984313725490196); + --spectrum-global-color-purple-700: color(display-p3 0.792156862745098 0.6235294117647059 0.9882352941176471); + --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); + --spectrum-global-color-red-500: color(display-p3 0.9647058823529412 0.34509803921568627 0.2627450980392157); + --spectrum-global-color-red-600: color(display-p3 1 0.4588235294117647 0.3686274509803922); + --spectrum-global-color-red-700: color(display-p3 1 0.5843137254901961 0.5058823529411764); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6196078431372549 0.596078431372549); + --spectrum-global-color-seafoam-500: color(display-p3 0.011764705882352941 0.6980392156862745 0.6705882352941176); + --spectrum-global-color-seafoam-600: color(display-p3 0.21176470588235294 0.7725490196078432 0.7411764705882353); + --spectrum-global-color-seafoam-700: color(display-p3 0.36470588235294116 0.8392156862745098 0.8117647058823529); + --spectrum-global-color-yellow-400: color(display-p3 0.8941176470588236 0.7607843137254902 0); + --spectrum-global-color-yellow-500: color(display-p3 0.9568627450980393 0.8352941176470589 0); + --spectrum-global-color-yellow-600: color(display-p3 0.9764705882352941 0.9098039215686274 0.3607843137254902); + --spectrum-global-color-yellow-700: color(display-p3 0.9882352941176471 0.9647058823529412 0.7333333333333333); --spectrum-well-background-color: color(display-p3 0.9215686274509803 0.9215686274509803 0.9215686274509803 / 0.0196078431372549); } @media (prefers-color-scheme: dark) { :root { + --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.058823529411764705); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.5019607843137255); + --spectrum-alias-background-color-quickactions: color(display-p3 0.19607843137254902 0.19607843137254902 0.19607843137254902 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.5019607843137255); + --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.07058823529411765); + --spectrum-alias-highlight-selected: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.14901960784313725); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); + --spectrum-alias-text-highlight-color: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); + --spectrum-global-color-blue-400: color(display-p3 0.20392156862745098 0.5607843137254902 0.9568627450980393); + --spectrum-global-color-blue-500: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412); + --spectrum-global-color-blue-600: color(display-p3 0.4470588235294118 0.7176470588235294 0.9764705882352941); + --spectrum-global-color-blue-700: color(display-p3 0.5607843137254902 0.792156862745098 0.9882352941176471); --spectrum-global-color-celery-400: color(display-p3 0.13333333333333333 0.7215686274509804 0.2); --spectrum-global-color-celery-500: color(display-p3 0.26666666666666666 0.792156862745098 0.28627450980392155); --spectrum-global-color-celery-600: color(display-p3 0.4117647058823529 0.8627450980392157 0.38823529411764707); @@ -931,46 +945,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.6509803921568628 0.8274509803921568 0.07058823529411765); --spectrum-global-color-chartreuse-600: color(display-p3 0.7215686274509804 0.8980392156862745 0.1450980392156863); --spectrum-global-color-chartreuse-700: color(display-p3 0.803921568627451 0.9607843137254902 0.2784313725490196); - --spectrum-global-color-yellow-400: color(display-p3 0.8941176470588236 0.7607843137254902 0); - --spectrum-global-color-yellow-500: color(display-p3 0.9568627450980393 0.8352941176470589 0); - --spectrum-global-color-yellow-600: color(display-p3 0.9764705882352941 0.9098039215686274 0.3607843137254902); - --spectrum-global-color-yellow-700: color(display-p3 0.9882352941176471 0.9647058823529412 0.7333333333333333); - --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); - --spectrum-global-color-magenta-500: color(display-p3 0.9294117647058824 0.3411764705882353 0.5843137254901961); - --spectrum-global-color-magenta-600: color(display-p3 0.9764705882352941 0.4470588235294118 0.6549019607843137); - --spectrum-global-color-magenta-700: color(display-p3 1 0.5607843137254902 0.7254901960784313); --spectrum-global-color-fuchsia-400: color(display-p3 0.803921568627451 0.2235294117647059 0.807843137254902); --spectrum-global-color-fuchsia-500: color(display-p3 0.8745098039215686 0.3176470588235294 0.8784313725490196); --spectrum-global-color-fuchsia-600: color(display-p3 0.9215686274509803 0.43137254901960786 0.9254901960784314); --spectrum-global-color-fuchsia-700: color(display-p3 0.9568627450980393 0.5490196078431373 0.9490196078431372); - --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9529411764705882); - --spectrum-global-color-purple-500: color(display-p3 0.6745098039215687 0.43529411764705883 0.9764705882352941); - --spectrum-global-color-purple-600: color(display-p3 0.7333333333333333 0.5294117647058824 0.984313725490196); - --spectrum-global-color-purple-700: color(display-p3 0.792156862745098 0.6235294117647059 0.9882352941176471); - --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); - --spectrum-global-color-indigo-500: color(display-p3 0.48627450980392156 0.5058823529411764 0.984313725490196); - --spectrum-global-color-indigo-600: color(display-p3 0.5686274509803921 0.5843137254901961 1); - --spectrum-global-color-indigo-700: color(display-p3 0.6549019607843137 0.6666666666666666 1); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6196078431372549 0.596078431372549); - --spectrum-global-color-seafoam-500: color(display-p3 0.011764705882352941 0.6980392156862745 0.6705882352941176); - --spectrum-global-color-seafoam-600: color(display-p3 0.21176470588235294 0.7725490196078432 0.7411764705882353); - --spectrum-global-color-seafoam-700: color(display-p3 0.36470588235294116 0.8392156862745098 0.8117647058823529); - --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); - --spectrum-global-color-red-500: color(display-p3 0.9647058823529412 0.34509803921568627 0.2627450980392157); - --spectrum-global-color-red-600: color(display-p3 1 0.4588235294117647 0.3686274509803922); - --spectrum-global-color-red-700: color(display-p3 1 0.5843137254901961 0.5058823529411764); - --spectrum-global-color-orange-400: color(display-p3 0.9568627450980393 0.5058823529411764 0.047058823529411764); - --spectrum-global-color-orange-500: color(display-p3 0.996078431372549 0.6039215686274509 0.1803921568627451); - --spectrum-global-color-orange-600: color(display-p3 1 0.7098039215686275 0.34509803921568627); - --spectrum-global-color-orange-700: color(display-p3 0.9921568627450981 0.807843137254902 0.5333333333333333); - --spectrum-global-color-green-400: color(display-p3 0.07058823529411765 0.6352941176470588 0.4235294117647059); - --spectrum-global-color-green-500: color(display-p3 0.16862745098039217 0.7058823529411765 0.49019607843137253); - --spectrum-global-color-green-600: color(display-p3 0.2627450980392157 0.7803921568627451 0.5607843137254902); - --spectrum-global-color-green-700: color(display-p3 0.3686274509803922 0.8509803921568627 0.6352941176470588); - --spectrum-global-color-blue-400: color(display-p3 0.20392156862745098 0.5607843137254902 0.9568627450980393); - --spectrum-global-color-blue-500: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412); - --spectrum-global-color-blue-600: color(display-p3 0.4470588235294118 0.7176470588235294 0.9764705882352941); - --spectrum-global-color-blue-700: color(display-p3 0.5607843137254902 0.792156862745098 0.9882352941176471); --spectrum-global-color-gray-50: color(display-p3 0.11372549019607843 0.11372549019607843 0.11372549019607843); --spectrum-global-color-gray-75: color(display-p3 0.14901960784313725 0.14901960784313725 0.14901960784313725); --spectrum-global-color-gray-100: color(display-p3 0.19607843137254902 0.19607843137254902 0.19607843137254902); @@ -982,21 +960,57 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.8196078431372549 0.8196078431372549 0.8196078431372549); --spectrum-global-color-gray-800: color(display-p3 0.9215686274509803 0.9215686274509803 0.9215686274509803); --spectrum-global-color-gray-900: color(display-p3 1 1 1); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.5019607843137255); - --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.058823529411764705); - --spectrum-alias-background-color-quickactions: color(display-p3 0.19607843137254902 0.19607843137254902 0.19607843137254902 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.5019607843137255); - --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.07058823529411765); - --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.14901960784313725); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); - --spectrum-alias-text-highlight-color: color(display-p3 0.32941176470588235 0.6392156862745098 0.9647058823529412 / 0.25098039215686274); - --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-global-color-green-400: color(display-p3 0.07058823529411765 0.6352941176470588 0.4235294117647059); + --spectrum-global-color-green-500: color(display-p3 0.16862745098039217 0.7058823529411765 0.49019607843137253); + --spectrum-global-color-green-600: color(display-p3 0.2627450980392157 0.7803921568627451 0.5607843137254902); + --spectrum-global-color-green-700: color(display-p3 0.3686274509803922 0.8509803921568627 0.6352941176470588); + --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); + --spectrum-global-color-indigo-500: color(display-p3 0.48627450980392156 0.5058823529411764 0.984313725490196); + --spectrum-global-color-indigo-600: color(display-p3 0.5686274509803921 0.5843137254901961 1); + --spectrum-global-color-indigo-700: color(display-p3 0.6549019607843137 0.6666666666666666 1); + --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); + --spectrum-global-color-magenta-500: color(display-p3 0.9294117647058824 0.3411764705882353 0.5843137254901961); + --spectrum-global-color-magenta-600: color(display-p3 0.9764705882352941 0.4470588235294118 0.6549019607843137); + --spectrum-global-color-magenta-700: color(display-p3 1 0.5607843137254902 0.7254901960784313); + --spectrum-global-color-orange-400: color(display-p3 0.9568627450980393 0.5058823529411764 0.047058823529411764); + --spectrum-global-color-orange-500: color(display-p3 0.996078431372549 0.6039215686274509 0.1803921568627451); + --spectrum-global-color-orange-600: color(display-p3 1 0.7098039215686275 0.34509803921568627); + --spectrum-global-color-orange-700: color(display-p3 0.9921568627450981 0.807843137254902 0.5333333333333333); + --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9529411764705882); + --spectrum-global-color-purple-500: color(display-p3 0.6745098039215687 0.43529411764705883 0.9764705882352941); + --spectrum-global-color-purple-600: color(display-p3 0.7333333333333333 0.5294117647058824 0.984313725490196); + --spectrum-global-color-purple-700: color(display-p3 0.792156862745098 0.6235294117647059 0.9882352941176471); + --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); + --spectrum-global-color-red-500: color(display-p3 0.9647058823529412 0.34509803921568627 0.2627450980392157); + --spectrum-global-color-red-600: color(display-p3 1 0.4588235294117647 0.3686274509803922); + --spectrum-global-color-red-700: color(display-p3 1 0.5843137254901961 0.5058823529411764); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6196078431372549 0.596078431372549); + --spectrum-global-color-seafoam-500: color(display-p3 0.011764705882352941 0.6980392156862745 0.6705882352941176); + --spectrum-global-color-seafoam-600: color(display-p3 0.21176470588235294 0.7725490196078432 0.7411764705882353); + --spectrum-global-color-seafoam-700: color(display-p3 0.36470588235294116 0.8392156862745098 0.8117647058823529); + --spectrum-global-color-yellow-400: color(display-p3 0.8941176470588236 0.7607843137254902 0); + --spectrum-global-color-yellow-500: color(display-p3 0.9568627450980393 0.8352941176470589 0); + --spectrum-global-color-yellow-600: color(display-p3 0.9764705882352941 0.9098039215686274 0.3607843137254902); + --spectrum-global-color-yellow-700: color(display-p3 0.9882352941176471 0.9647058823529412 0.7333333333333333); --spectrum-well-background-color: color(display-p3 0.9215686274509803 0.9215686274509803 0.9215686274509803 / 0.0196078431372549); } } body[data-color-mode="darkest"] { + --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.0784313725490196); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.6); + --spectrum-alias-background-color-quickactions: color(display-p3 0.11372549019607843 0.11372549019607843 0.11372549019607843 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.8); + --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.14901960784313725); + --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.0784313725490196); + --spectrum-alias-highlight-selected: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882 / 0.2); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882 / 0.30196078431372547); + --spectrum-alias-text-highlight-color: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882 / 0.30196078431372547); + --spectrum-global-color-blue-400: color(display-p3 0.11372549019607843 0.5019607843137255 0.9607843137254902); + --spectrum-global-color-blue-500: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882); + --spectrum-global-color-blue-600: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922); + --spectrum-global-color-blue-700: color(display-p3 0.48627450980392156 0.7411764705882353 0.9803921568627451); --spectrum-global-color-celery-400: color(display-p3 0.050980392156862744 0.6705882352941176 0.1450980392156863); --spectrum-global-color-celery-500: color(display-p3 0.17647058823529413 0.7490196078431373 0.22745098039215686); --spectrum-global-color-celery-600: color(display-p3 0.3137254901960784 0.8156862745098039 0.3215686274509804); @@ -1005,46 +1019,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.6039215686274509 0.7764705882352941 0.043137254901960784); --spectrum-global-color-chartreuse-600: color(display-p3 0.6666666666666666 0.8470588235294118 0.08627450980392157); --spectrum-global-color-chartreuse-700: color(display-p3 0.7333333333333333 0.9098039215686274 0.1607843137254902); - --spectrum-global-color-yellow-400: color(display-p3 0.8470588235294118 0.7098039215686275 0); - --spectrum-global-color-yellow-500: color(display-p3 0.9137254901960784 0.7803921568627451 0); - --spectrum-global-color-yellow-600: color(display-p3 0.9686274509803922 0.8470588235294118 0.01568627450980392); - --spectrum-global-color-yellow-700: color(display-p3 0.9764705882352941 0.9137254901960784 0.3803921568627451); - --spectrum-global-color-magenta-400: color(display-p3 0.8196078431372549 0.16862745098039217 0.4470588235294118); - --spectrum-global-color-magenta-500: color(display-p3 0.8901960784313725 0.27058823529411763 0.5372549019607843); - --spectrum-global-color-magenta-600: color(display-p3 0.9450980392156862 0.3803921568627451 0.611764705882353); - --spectrum-global-color-magenta-700: color(display-p3 0.9882352941176471 0.48627450980392156 0.6784313725490196); --spectrum-global-color-fuchsia-400: color(display-p3 0.7490196078431373 0.16862745098039217 0.7490196078431373); --spectrum-global-color-fuchsia-500: color(display-p3 0.8274509803921568 0.2549019607843137 0.8352941176470589); --spectrum-global-color-fuchsia-600: color(display-p3 0.8941176470588236 0.3568627450980392 0.8980392156862745); --spectrum-global-color-fuchsia-700: color(display-p3 0.9372549019607843 0.47058823529411764 0.9333333333333333); - --spectrum-global-color-purple-400: color(display-p3 0.5686274509803921 0.27450980392156865 0.9254901960784314); - --spectrum-global-color-purple-500: color(display-p3 0.6352941176470588 0.3686274509803922 0.9647058823529412); - --spectrum-global-color-purple-600: color(display-p3 0.6980392156862745 0.4666666666666667 0.9803921568627451); - --spectrum-global-color-purple-700: color(display-p3 0.7529411764705882 0.5607843137254902 0.9882352941176471); - --spectrum-global-color-indigo-400: color(display-p3 0.35294117647058826 0.3764705882352941 0.9215686274509803); - --spectrum-global-color-indigo-500: color(display-p3 0.43137254901960786 0.45098039215686275 0.9647058823529412); - --spectrum-global-color-indigo-600: color(display-p3 0.5176470588235295 0.5333333333333333 0.9921568627450981); - --spectrum-global-color-indigo-700: color(display-p3 0.6 0.615686274509804 1); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.5725490196078431 0.5490196078431373); - --spectrum-global-color-seafoam-500: color(display-p3 0 0.6470588235294118 0.6235294117647059); - --spectrum-global-color-seafoam-600: color(display-p3 0.10196078431372549 0.7254901960784313 0.6980392156862745); - --spectrum-global-color-seafoam-700: color(display-p3 0.25882352941176473 0.792156862745098 0.7647058823529411); - --spectrum-global-color-red-400: color(display-p3 0.8666666666666667 0.12941176470588237 0.09411764705882353); - --spectrum-global-color-red-500: color(display-p3 0.9333333333333333 0.2627450980392157 0.19215686274509805); - --spectrum-global-color-red-600: color(display-p3 0.9764705882352941 0.38823529411764707 0.2980392156862745); - --spectrum-global-color-red-700: color(display-p3 1 0.5058823529411764 0.4196078431372549); - --spectrum-global-color-orange-400: color(display-p3 0.9098039215686274 0.4549019607843137 0); - --spectrum-global-color-orange-500: color(display-p3 0.9764705882352941 0.5372549019607843 0.09019607843137255); - --spectrum-global-color-orange-600: color(display-p3 1 0.6352941176470588 0.23137254901960785); - --spectrum-global-color-orange-700: color(display-p3 1 0.7372549019607844 0.4); - --spectrum-global-color-green-400: color(display-p3 0 0.5843137254901961 0.3843137254901961); - --spectrum-global-color-green-500: color(display-p3 0.10980392156862745 0.6588235294117647 0.4470588235294118); - --spectrum-global-color-green-600: color(display-p3 0.20392156862745098 0.7333333333333333 0.5176470588235295); - --spectrum-global-color-green-700: color(display-p3 0.29411764705882354 0.803921568627451 0.5843137254901961); - --spectrum-global-color-blue-400: color(display-p3 0.11372549019607843 0.5019607843137255 0.9607843137254902); - --spectrum-global-color-blue-500: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882); - --spectrum-global-color-blue-600: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922); - --spectrum-global-color-blue-700: color(display-p3 0.48627450980392156 0.7411764705882353 0.9803921568627451); --spectrum-global-color-gray-50: color(display-p3 0 0 0); --spectrum-global-color-gray-75: color(display-p3 0.054901960784313725 0.054901960784313725 0.054901960784313725); --spectrum-global-color-gray-100: color(display-p3 0.11372549019607843 0.11372549019607843 0.11372549019607843); @@ -1056,20 +1034,56 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.8156862745098039 0.8156862745098039 0.8156862745098039); --spectrum-global-color-gray-800: color(display-p3 0.9215686274509803 0.9215686274509803 0.9215686274509803); --spectrum-global-color-gray-900: color(display-p3 1 1 1); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.6); - --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.0784313725490196); - --spectrum-alias-background-color-quickactions: color(display-p3 0.11372549019607843 0.11372549019607843 0.11372549019607843 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.8); - --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.0784313725490196); - --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.14901960784313725); - --spectrum-alias-highlight-selected: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882 / 0.2); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882 / 0.30196078431372547); - --spectrum-alias-text-highlight-color: color(display-p3 0.25098039215686274 0.5882352941176471 0.9529411764705882 / 0.30196078431372547); - --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-global-color-green-400: color(display-p3 0 0.5843137254901961 0.3843137254901961); + --spectrum-global-color-green-500: color(display-p3 0.10980392156862745 0.6588235294117647 0.4470588235294118); + --spectrum-global-color-green-600: color(display-p3 0.20392156862745098 0.7333333333333333 0.5176470588235295); + --spectrum-global-color-green-700: color(display-p3 0.29411764705882354 0.803921568627451 0.5843137254901961); + --spectrum-global-color-indigo-400: color(display-p3 0.35294117647058826 0.3764705882352941 0.9215686274509803); + --spectrum-global-color-indigo-500: color(display-p3 0.43137254901960786 0.45098039215686275 0.9647058823529412); + --spectrum-global-color-indigo-600: color(display-p3 0.5176470588235295 0.5333333333333333 0.9921568627450981); + --spectrum-global-color-indigo-700: color(display-p3 0.6 0.615686274509804 1); + --spectrum-global-color-magenta-400: color(display-p3 0.8196078431372549 0.16862745098039217 0.4470588235294118); + --spectrum-global-color-magenta-500: color(display-p3 0.8901960784313725 0.27058823529411763 0.5372549019607843); + --spectrum-global-color-magenta-600: color(display-p3 0.9450980392156862 0.3803921568627451 0.611764705882353); + --spectrum-global-color-magenta-700: color(display-p3 0.9882352941176471 0.48627450980392156 0.6784313725490196); + --spectrum-global-color-orange-400: color(display-p3 0.9098039215686274 0.4549019607843137 0); + --spectrum-global-color-orange-500: color(display-p3 0.9764705882352941 0.5372549019607843 0.09019607843137255); + --spectrum-global-color-orange-600: color(display-p3 1 0.6352941176470588 0.23137254901960785); + --spectrum-global-color-orange-700: color(display-p3 1 0.7372549019607844 0.4); + --spectrum-global-color-purple-400: color(display-p3 0.5686274509803921 0.27450980392156865 0.9254901960784314); + --spectrum-global-color-purple-500: color(display-p3 0.6352941176470588 0.3686274509803922 0.9647058823529412); + --spectrum-global-color-purple-600: color(display-p3 0.6980392156862745 0.4666666666666667 0.9803921568627451); + --spectrum-global-color-purple-700: color(display-p3 0.7529411764705882 0.5607843137254902 0.9882352941176471); + --spectrum-global-color-red-400: color(display-p3 0.8666666666666667 0.12941176470588237 0.09411764705882353); + --spectrum-global-color-red-500: color(display-p3 0.9333333333333333 0.2627450980392157 0.19215686274509805); + --spectrum-global-color-red-600: color(display-p3 0.9764705882352941 0.38823529411764707 0.2980392156862745); + --spectrum-global-color-red-700: color(display-p3 1 0.5058823529411764 0.4196078431372549); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.5725490196078431 0.5490196078431373); + --spectrum-global-color-seafoam-500: color(display-p3 0 0.6470588235294118 0.6235294117647059); + --spectrum-global-color-seafoam-600: color(display-p3 0.10196078431372549 0.7254901960784313 0.6980392156862745); + --spectrum-global-color-seafoam-700: color(display-p3 0.25882352941176473 0.792156862745098 0.7647058823529411); + --spectrum-global-color-yellow-400: color(display-p3 0.8470588235294118 0.7098039215686275 0); + --spectrum-global-color-yellow-500: color(display-p3 0.9137254901960784 0.7803921568627451 0); + --spectrum-global-color-yellow-600: color(display-p3 0.9686274509803922 0.8470588235294118 0.01568627450980392); + --spectrum-global-color-yellow-700: color(display-p3 0.9764705882352941 0.9137254901960784 0.3803921568627451); --spectrum-well-background-color: color(display-p3 0.9215686274509803 0.9215686274509803 0.9215686274509803 / 0.0196078431372549); } body[data-color-mode="light"] { + --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); + --spectrum-alias-background-color-quickactions: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); + --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); + --spectrum-alias-highlight-selected: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.10196078431372549); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); + --spectrum-alias-text-highlight-color: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); + --spectrum-global-color-blue-400: color(display-p3 0.0784313725490196 0.47843137254901963 0.9529411764705882); + --spectrum-global-color-blue-500: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157); + --spectrum-global-color-blue-600: color(display-p3 0 0.32941176470588235 0.7137254901960784); + --spectrum-global-color-blue-700: color(display-p3 0 0.26666666666666666 0.5686274509803921); --spectrum-global-color-celery-400: color(display-p3 0.15294117647058825 0.7333333333333333 0.21176470588235294); --spectrum-global-color-celery-500: color(display-p3 0.027450980392156862 0.6549019607843137 0.12941176470588237); --spectrum-global-color-celery-600: color(display-p3 0 0.5686274509803921 0.07058823529411765); @@ -1078,46 +1092,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.5294117647058824 0.6941176470588235 0.011764705882352941); --spectrum-global-color-chartreuse-600: color(display-p3 0.4627450980392157 0.611764705882353 0); --spectrum-global-color-chartreuse-700: color(display-p3 0.403921568627451 0.5333333333333333 0); - --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7764705882352941 0); - --spectrum-global-color-yellow-500: color(display-p3 0.8431372549019608 0.7019607843137254 0); - --spectrum-global-color-yellow-600: color(display-p3 0.7686274509803922 0.6235294117647059 0); - --spectrum-global-color-yellow-700: color(display-p3 0.6901960784313725 0.5490196078431373 0); - --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); - --spectrum-global-color-magenta-500: color(display-p3 0.7843137254901961 0.13333333333333333 0.4117647058823529); - --spectrum-global-color-magenta-600: color(display-p3 0.6784313725490196 0.03529411764705882 0.3333333333333333); - --spectrum-global-color-magenta-700: color(display-p3 0.5568627450980392 0 0.27058823529411763); --spectrum-global-color-fuchsia-400: color(display-p3 0.803921568627451 0.22745098039215686 0.807843137254902); --spectrum-global-color-fuchsia-500: color(display-p3 0.7137254901960784 0.13333333333333333 0.7176470588235294); --spectrum-global-color-fuchsia-600: color(display-p3 0.615686274509804 0.011764705882352941 0.6196078431372549); --spectrum-global-color-fuchsia-700: color(display-p3 0.5019607843137255 0 0.5058823529411764); - --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9568627450980393); - --spectrum-global-color-purple-500: color(display-p3 0.5372549019607843 0.23921568627450981 0.9058823529411765); - --spectrum-global-color-purple-600: color(display-p3 0.45098039215686275 0.14901960784313725 0.8274509803921568); - --spectrum-global-color-purple-700: color(display-p3 0.36470588235294116 0.07450980392156863 0.7176470588235294); - --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); - --spectrum-global-color-indigo-500: color(display-p3 0.3215686274509804 0.34509803921568627 0.8941176470588236); - --spectrum-global-color-indigo-600: color(display-p3 0.25098039215686274 0.27450980392156865 0.792156862745098); - --spectrum-global-color-indigo-700: color(display-p3 0.19607843137254902 0.21176470588235294 0.6588235294117647); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6313725490196078 0.6039215686274509); - --spectrum-global-color-seafoam-500: color(display-p3 0 0.5490196078431373 0.5294117647058824); - --spectrum-global-color-seafoam-600: color(display-p3 0 0.4666666666666667 0.4470588235294118); - --spectrum-global-color-seafoam-700: color(display-p3 0 0.38823529411764707 0.37254901960784315); - --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); - --spectrum-global-color-red-500: color(display-p3 0.8274509803921568 0.08235294117647059 0.06274509803921569); - --spectrum-global-color-red-600: color(display-p3 0.7058823529411765 0 0); - --spectrum-global-color-red-700: color(display-p3 0.5764705882352941 0 0); - --spectrum-global-color-orange-400: color(display-p3 0.9647058823529412 0.5215686274509804 0.06666666666666667); - --spectrum-global-color-orange-500: color(display-p3 0.8941176470588236 0.43529411764705883 0); - --spectrum-global-color-orange-600: color(display-p3 0.796078431372549 0.36470588235294116 0); - --spectrum-global-color-orange-700: color(display-p3 0.6941176470588235 0.2980392156862745 0); - --spectrum-global-color-green-400: color(display-p3 0 0.5607843137254902 0.36470588235294116); - --spectrum-global-color-green-500: color(display-p3 0 0.47843137254901963 0.30196078431372547); - --spectrum-global-color-green-600: color(display-p3 0 0.396078431372549 0.24313725490196078); - --spectrum-global-color-green-700: color(display-p3 0 0.3176470588235294 0.19607843137254902); - --spectrum-global-color-blue-400: color(display-p3 0.0784313725490196 0.47843137254901963 0.9529411764705882); - --spectrum-global-color-blue-500: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157); - --spectrum-global-color-blue-600: color(display-p3 0 0.32941176470588235 0.7137254901960784); - --spectrum-global-color-blue-700: color(display-p3 0 0.26666666666666666 0.5686274509803921); --spectrum-global-color-gray-50: color(display-p3 1 1 1); --spectrum-global-color-gray-75: color(display-p3 0.9921568627450981 0.9921568627450981 0.9921568627450981); --spectrum-global-color-gray-100: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431); @@ -1129,21 +1107,57 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.27450980392156865 0.27450980392156865 0.27450980392156865); --spectrum-global-color-gray-800: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333); --spectrum-global-color-gray-900: color(display-p3 0 0 0); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); - --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); - --spectrum-alias-background-color-quickactions: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); - --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); - --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.10196078431372549); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); - --spectrum-alias-text-highlight-color: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); - --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-global-color-green-400: color(display-p3 0 0.5607843137254902 0.36470588235294116); + --spectrum-global-color-green-500: color(display-p3 0 0.47843137254901963 0.30196078431372547); + --spectrum-global-color-green-600: color(display-p3 0 0.396078431372549 0.24313725490196078); + --spectrum-global-color-green-700: color(display-p3 0 0.3176470588235294 0.19607843137254902); + --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); + --spectrum-global-color-indigo-500: color(display-p3 0.3215686274509804 0.34509803921568627 0.8941176470588236); + --spectrum-global-color-indigo-600: color(display-p3 0.25098039215686274 0.27450980392156865 0.792156862745098); + --spectrum-global-color-indigo-700: color(display-p3 0.19607843137254902 0.21176470588235294 0.6588235294117647); + --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); + --spectrum-global-color-magenta-500: color(display-p3 0.7843137254901961 0.13333333333333333 0.4117647058823529); + --spectrum-global-color-magenta-600: color(display-p3 0.6784313725490196 0.03529411764705882 0.3333333333333333); + --spectrum-global-color-magenta-700: color(display-p3 0.5568627450980392 0 0.27058823529411763); + --spectrum-global-color-orange-400: color(display-p3 0.9647058823529412 0.5215686274509804 0.06666666666666667); + --spectrum-global-color-orange-500: color(display-p3 0.8941176470588236 0.43529411764705883 0); + --spectrum-global-color-orange-600: color(display-p3 0.796078431372549 0.36470588235294116 0); + --spectrum-global-color-orange-700: color(display-p3 0.6941176470588235 0.2980392156862745 0); + --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9568627450980393); + --spectrum-global-color-purple-500: color(display-p3 0.5372549019607843 0.23921568627450981 0.9058823529411765); + --spectrum-global-color-purple-600: color(display-p3 0.45098039215686275 0.14901960784313725 0.8274509803921568); + --spectrum-global-color-purple-700: color(display-p3 0.36470588235294116 0.07450980392156863 0.7176470588235294); + --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); + --spectrum-global-color-red-500: color(display-p3 0.8274509803921568 0.08235294117647059 0.06274509803921569); + --spectrum-global-color-red-600: color(display-p3 0.7058823529411765 0 0); + --spectrum-global-color-red-700: color(display-p3 0.5764705882352941 0 0); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6313725490196078 0.6039215686274509); + --spectrum-global-color-seafoam-500: color(display-p3 0 0.5490196078431373 0.5294117647058824); + --spectrum-global-color-seafoam-600: color(display-p3 0 0.4666666666666667 0.4470588235294118); + --spectrum-global-color-seafoam-700: color(display-p3 0 0.38823529411764707 0.37254901960784315); + --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7764705882352941 0); + --spectrum-global-color-yellow-500: color(display-p3 0.8431372549019608 0.7019607843137254 0); + --spectrum-global-color-yellow-600: color(display-p3 0.7686274509803922 0.6235294117647059 0); + --spectrum-global-color-yellow-700: color(display-p3 0.6901960784313725 0.5490196078431373 0); --spectrum-well-background-color: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333 / 0.0196078431372549); } @media (prefers-color-scheme: light) { :root { + --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); + --spectrum-alias-background-color-quickactions: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); + --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); + --spectrum-alias-highlight-selected: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.10196078431372549); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); + --spectrum-alias-text-highlight-color: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); + --spectrum-global-color-blue-400: color(display-p3 0.0784313725490196 0.47843137254901963 0.9529411764705882); + --spectrum-global-color-blue-500: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157); + --spectrum-global-color-blue-600: color(display-p3 0 0.32941176470588235 0.7137254901960784); + --spectrum-global-color-blue-700: color(display-p3 0 0.26666666666666666 0.5686274509803921); --spectrum-global-color-celery-400: color(display-p3 0.15294117647058825 0.7333333333333333 0.21176470588235294); --spectrum-global-color-celery-500: color(display-p3 0.027450980392156862 0.6549019607843137 0.12941176470588237); --spectrum-global-color-celery-600: color(display-p3 0 0.5686274509803921 0.07058823529411765); @@ -1152,46 +1166,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.5294117647058824 0.6941176470588235 0.011764705882352941); --spectrum-global-color-chartreuse-600: color(display-p3 0.4627450980392157 0.611764705882353 0); --spectrum-global-color-chartreuse-700: color(display-p3 0.403921568627451 0.5333333333333333 0); - --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7764705882352941 0); - --spectrum-global-color-yellow-500: color(display-p3 0.8431372549019608 0.7019607843137254 0); - --spectrum-global-color-yellow-600: color(display-p3 0.7686274509803922 0.6235294117647059 0); - --spectrum-global-color-yellow-700: color(display-p3 0.6901960784313725 0.5490196078431373 0); - --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); - --spectrum-global-color-magenta-500: color(display-p3 0.7843137254901961 0.13333333333333333 0.4117647058823529); - --spectrum-global-color-magenta-600: color(display-p3 0.6784313725490196 0.03529411764705882 0.3333333333333333); - --spectrum-global-color-magenta-700: color(display-p3 0.5568627450980392 0 0.27058823529411763); --spectrum-global-color-fuchsia-400: color(display-p3 0.803921568627451 0.22745098039215686 0.807843137254902); --spectrum-global-color-fuchsia-500: color(display-p3 0.7137254901960784 0.13333333333333333 0.7176470588235294); --spectrum-global-color-fuchsia-600: color(display-p3 0.615686274509804 0.011764705882352941 0.6196078431372549); --spectrum-global-color-fuchsia-700: color(display-p3 0.5019607843137255 0 0.5058823529411764); - --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9568627450980393); - --spectrum-global-color-purple-500: color(display-p3 0.5372549019607843 0.23921568627450981 0.9058823529411765); - --spectrum-global-color-purple-600: color(display-p3 0.45098039215686275 0.14901960784313725 0.8274509803921568); - --spectrum-global-color-purple-700: color(display-p3 0.36470588235294116 0.07450980392156863 0.7176470588235294); - --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); - --spectrum-global-color-indigo-500: color(display-p3 0.3215686274509804 0.34509803921568627 0.8941176470588236); - --spectrum-global-color-indigo-600: color(display-p3 0.25098039215686274 0.27450980392156865 0.792156862745098); - --spectrum-global-color-indigo-700: color(display-p3 0.19607843137254902 0.21176470588235294 0.6588235294117647); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6313725490196078 0.6039215686274509); - --spectrum-global-color-seafoam-500: color(display-p3 0 0.5490196078431373 0.5294117647058824); - --spectrum-global-color-seafoam-600: color(display-p3 0 0.4666666666666667 0.4470588235294118); - --spectrum-global-color-seafoam-700: color(display-p3 0 0.38823529411764707 0.37254901960784315); - --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); - --spectrum-global-color-red-500: color(display-p3 0.8274509803921568 0.08235294117647059 0.06274509803921569); - --spectrum-global-color-red-600: color(display-p3 0.7058823529411765 0 0); - --spectrum-global-color-red-700: color(display-p3 0.5764705882352941 0 0); - --spectrum-global-color-orange-400: color(display-p3 0.9647058823529412 0.5215686274509804 0.06666666666666667); - --spectrum-global-color-orange-500: color(display-p3 0.8941176470588236 0.43529411764705883 0); - --spectrum-global-color-orange-600: color(display-p3 0.796078431372549 0.36470588235294116 0); - --spectrum-global-color-orange-700: color(display-p3 0.6941176470588235 0.2980392156862745 0); - --spectrum-global-color-green-400: color(display-p3 0 0.5607843137254902 0.36470588235294116); - --spectrum-global-color-green-500: color(display-p3 0 0.47843137254901963 0.30196078431372547); - --spectrum-global-color-green-600: color(display-p3 0 0.396078431372549 0.24313725490196078); - --spectrum-global-color-green-700: color(display-p3 0 0.3176470588235294 0.19607843137254902); - --spectrum-global-color-blue-400: color(display-p3 0.0784313725490196 0.47843137254901963 0.9529411764705882); - --spectrum-global-color-blue-500: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157); - --spectrum-global-color-blue-600: color(display-p3 0 0.32941176470588235 0.7137254901960784); - --spectrum-global-color-blue-700: color(display-p3 0 0.26666666666666666 0.5686274509803921); --spectrum-global-color-gray-50: color(display-p3 1 1 1); --spectrum-global-color-gray-75: color(display-p3 0.9921568627450981 0.9921568627450981 0.9921568627450981); --spectrum-global-color-gray-100: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431); @@ -1203,69 +1181,69 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.27450980392156865 0.27450980392156865 0.27450980392156865); --spectrum-global-color-gray-800: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333); --spectrum-global-color-gray-900: color(display-p3 0 0 0); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); - --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); - --spectrum-alias-background-color-quickactions: color(display-p3 0.9725490196078431 0.9725490196078431 0.9725490196078431 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); - --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); - --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.10196078431372549); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); - --spectrum-alias-text-highlight-color: color(display-p3 0.00784313725490196 0.396078431372549 0.8627450980392157 / 0.2); - --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-global-color-green-400: color(display-p3 0 0.5607843137254902 0.36470588235294116); + --spectrum-global-color-green-500: color(display-p3 0 0.47843137254901963 0.30196078431372547); + --spectrum-global-color-green-600: color(display-p3 0 0.396078431372549 0.24313725490196078); + --spectrum-global-color-green-700: color(display-p3 0 0.3176470588235294 0.19607843137254902); + --spectrum-global-color-indigo-400: color(display-p3 0.40784313725490196 0.42745098039215684 0.9568627450980393); + --spectrum-global-color-indigo-500: color(display-p3 0.3215686274509804 0.34509803921568627 0.8941176470588236); + --spectrum-global-color-indigo-600: color(display-p3 0.25098039215686274 0.27450980392156865 0.792156862745098); + --spectrum-global-color-indigo-700: color(display-p3 0.19607843137254902 0.21176470588235294 0.6588235294117647); + --spectrum-global-color-magenta-400: color(display-p3 0.8705882352941177 0.23921568627450981 0.5098039215686274); + --spectrum-global-color-magenta-500: color(display-p3 0.7843137254901961 0.13333333333333333 0.4117647058823529); + --spectrum-global-color-magenta-600: color(display-p3 0.6784313725490196 0.03529411764705882 0.3333333333333333); + --spectrum-global-color-magenta-700: color(display-p3 0.5568627450980392 0 0.27058823529411763); + --spectrum-global-color-orange-400: color(display-p3 0.9647058823529412 0.5215686274509804 0.06666666666666667); + --spectrum-global-color-orange-500: color(display-p3 0.8941176470588236 0.43529411764705883 0); + --spectrum-global-color-orange-600: color(display-p3 0.796078431372549 0.36470588235294116 0); + --spectrum-global-color-orange-700: color(display-p3 0.6941176470588235 0.2980392156862745 0); + --spectrum-global-color-purple-400: color(display-p3 0.615686274509804 0.3411764705882353 0.9568627450980393); + --spectrum-global-color-purple-500: color(display-p3 0.5372549019607843 0.23921568627450981 0.9058823529411765); + --spectrum-global-color-purple-600: color(display-p3 0.45098039215686275 0.14901960784313725 0.8274509803921568); + --spectrum-global-color-purple-700: color(display-p3 0.36470588235294116 0.07450980392156863 0.7176470588235294); + --spectrum-global-color-red-400: color(display-p3 0.9176470588235294 0.2196078431372549 0.1607843137254902); + --spectrum-global-color-red-500: color(display-p3 0.8274509803921568 0.08235294117647059 0.06274509803921569); + --spectrum-global-color-red-600: color(display-p3 0.7058823529411765 0 0); + --spectrum-global-color-red-700: color(display-p3 0.5764705882352941 0 0); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6313725490196078 0.6039215686274509); + --spectrum-global-color-seafoam-500: color(display-p3 0 0.5490196078431373 0.5294117647058824); + --spectrum-global-color-seafoam-600: color(display-p3 0 0.4666666666666667 0.4470588235294118); + --spectrum-global-color-seafoam-700: color(display-p3 0 0.38823529411764707 0.37254901960784315); + --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7764705882352941 0); + --spectrum-global-color-yellow-500: color(display-p3 0.8431372549019608 0.7019607843137254 0); + --spectrum-global-color-yellow-600: color(display-p3 0.7686274509803922 0.6235294117647059 0); + --spectrum-global-color-yellow-700: color(display-p3 0.6901960784313725 0.5490196078431373 0); --spectrum-well-background-color: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333 / 0.0196078431372549); } } body[data-color-mode="lightest"] { - --spectrum-global-color-celery-400: color(display-p3 0.18823529411764706 0.7568627450980392 0.23921568627450981); - --spectrum-global-color-celery-500: color(display-p3 0.058823529411764705 0.6745098039215687 0.14901960784313725); - --spectrum-global-color-celery-600: color(display-p3 0 0.5882352941176471 0.0784313725490196); - --spectrum-global-color-celery-700: color(display-p3 0 0.5019607843137255 0.058823529411764705); - --spectrum-global-color-chartreuse-400: color(display-p3 0.615686274509804 0.796078431372549 0.050980392156862744); - --spectrum-global-color-chartreuse-500: color(display-p3 0.5450980392156862 0.7137254901960784 0.01568627450980392); - --spectrum-global-color-chartreuse-600: color(display-p3 0.47843137254901963 0.6352941176470588 0); - --spectrum-global-color-chartreuse-700: color(display-p3 0.41568627450980394 0.5529411764705883 0); - --spectrum-global-color-yellow-400: color(display-p3 0.9333333333333333 0.803921568627451 0); - --spectrum-global-color-yellow-500: color(display-p3 0.8666666666666667 0.7254901960784313 0); - --spectrum-global-color-yellow-600: color(display-p3 0.788235294117647 0.6431372549019608 0); - --spectrum-global-color-yellow-700: color(display-p3 0.7098039215686275 0.5647058823529412 0); - --spectrum-global-color-magenta-400: color(display-p3 0.8862745098039215 0.26666666666666666 0.5294117647058824); - --spectrum-global-color-magenta-500: color(display-p3 0.803921568627451 0.1568627450980392 0.43529411764705883); - --spectrum-global-color-magenta-600: color(display-p3 0.7019607843137254 0.058823529411764705 0.34901960784313724); - --spectrum-global-color-magenta-700: color(display-p3 0.5843137254901961 0 0.2823529411764706); - --spectrum-global-color-fuchsia-400: color(display-p3 0.8274509803921568 0.24705882352941178 0.8313725490196079); - --spectrum-global-color-fuchsia-500: color(display-p3 0.7372549019607844 0.15294117647058825 0.7333333333333333); - --spectrum-global-color-fuchsia-600: color(display-p3 0.6392156862745098 0.0392156862745098 0.6392156862745098); - --spectrum-global-color-fuchsia-700: color(display-p3 0.5294117647058824 0 0.5333333333333333); - --spectrum-global-color-purple-400: color(display-p3 0.6313725490196078 0.36470588235294116 0.9647058823529412); - --spectrum-global-color-purple-500: color(display-p3 0.5568627450980392 0.2627450980392157 0.9176470588235294); - --spectrum-global-color-purple-600: color(display-p3 0.47058823529411764 0.16862745098039217 0.8470588235294118); - --spectrum-global-color-purple-700: color(display-p3 0.3843137254901961 0.09019607843137255 0.7450980392156863); - --spectrum-global-color-indigo-400: color(display-p3 0.42745098039215684 0.45098039215686275 0.9647058823529412); - --spectrum-global-color-indigo-500: color(display-p3 0.3411764705882353 0.36470588235294116 0.9098039215686274); - --spectrum-global-color-indigo-600: color(display-p3 0.26666666666666666 0.2901960784313726 0.8156862745098039); - --spectrum-global-color-indigo-700: color(display-p3 0.20784313725490197 0.22745098039215686 0.6901960784313725); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6509803921568628 0.6274509803921569); - --spectrum-global-color-seafoam-500: color(display-p3 0 0.5686274509803921 0.5450980392156862); - --spectrum-global-color-seafoam-600: color(display-p3 0 0.48627450980392156 0.4627450980392157); - --spectrum-global-color-seafoam-700: color(display-p3 0 0.403921568627451 0.38823529411764707); - --spectrum-global-color-red-400: color(display-p3 0.9294117647058824 0.25098039215686274 0.18823529411764706); - --spectrum-global-color-red-500: color(display-p3 0.8509803921568627 0.10980392156862745 0.08235294117647059); - --spectrum-global-color-red-600: color(display-p3 0.7333333333333333 0.00784313725490196 0.00784313725490196); - --spectrum-global-color-red-700: color(display-p3 0.6039215686274509 0 0); - --spectrum-global-color-orange-400: color(display-p3 0.9803921568627451 0.5450980392156862 0.10196078431372549); - --spectrum-global-color-orange-500: color(display-p3 0.9137254901960784 0.4588235294117647 0); - --spectrum-global-color-orange-600: color(display-p3 0.8196078431372549 0.3803921568627451 0); - --spectrum-global-color-orange-700: color(display-p3 0.7137254901960784 0.3137254901960784 0); - --spectrum-global-color-green-400: color(display-p3 0 0.5803921568627451 0.3803921568627451); - --spectrum-global-color-green-500: color(display-p3 0 0.49411764705882355 0.3137254901960784); - --spectrum-global-color-green-600: color(display-p3 0 0.4117647058823529 0.2549019607843137); - --spectrum-global-color-green-700: color(display-p3 0 0.33725490196078434 0.20784313725490197); + --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); + --spectrum-alias-background-color-quickactions: color(display-p3 1 1 1 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); + --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); + --spectrum-alias-highlight-selected: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725 / 0.10196078431372549); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725 / 0.2); + --spectrum-alias-text-highlight-color: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725 / 0.2); --spectrum-global-color-blue-400: color(display-p3 0.10588235294117647 0.4980392156862745 0.9607843137254902); --spectrum-global-color-blue-500: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725); --spectrum-global-color-blue-600: color(display-p3 0 0.3411764705882353 0.7450980392156863); --spectrum-global-color-blue-700: color(display-p3 0 0.2823529411764706 0.6); + --spectrum-global-color-celery-400: color(display-p3 0.18823529411764706 0.7568627450980392 0.23921568627450981); + --spectrum-global-color-celery-500: color(display-p3 0.058823529411764705 0.6745098039215687 0.14901960784313725); + --spectrum-global-color-celery-600: color(display-p3 0 0.5882352941176471 0.0784313725490196); + --spectrum-global-color-celery-700: color(display-p3 0 0.5019607843137255 0.058823529411764705); + --spectrum-global-color-chartreuse-400: color(display-p3 0.615686274509804 0.796078431372549 0.050980392156862744); + --spectrum-global-color-chartreuse-500: color(display-p3 0.5450980392156862 0.7137254901960784 0.01568627450980392); + --spectrum-global-color-chartreuse-600: color(display-p3 0.47843137254901963 0.6352941176470588 0); + --spectrum-global-color-chartreuse-700: color(display-p3 0.41568627450980394 0.5529411764705883 0); + --spectrum-global-color-fuchsia-400: color(display-p3 0.8274509803921568 0.24705882352941178 0.8313725490196079); + --spectrum-global-color-fuchsia-500: color(display-p3 0.7372549019607844 0.15294117647058825 0.7333333333333333); + --spectrum-global-color-fuchsia-600: color(display-p3 0.6392156862745098 0.0392156862745098 0.6392156862745098); + --spectrum-global-color-fuchsia-700: color(display-p3 0.5294117647058824 0 0.5333333333333333); --spectrum-global-color-gray-50: color(display-p3 1 1 1); --spectrum-global-color-gray-75: color(display-p3 1 1 1); --spectrum-global-color-gray-100: color(display-p3 1 1 1); @@ -1277,19 +1255,55 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.2784313725490196 0.2784313725490196 0.2784313725490196); --spectrum-global-color-gray-800: color(display-p3 0.13333333333333333 0.13333333333333333 0.13333333333333333); --spectrum-global-color-gray-900: color(display-p3 0 0 0); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); - --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); - --spectrum-alias-background-color-quickactions: color(display-p3 1 1 1 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); - --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); - --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725 / 0.10196078431372549); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725 / 0.2); - --spectrum-alias-text-highlight-color: color(display-p3 0.01568627450980392 0.4117647058823529 0.8901960784313725 / 0.2); - --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-global-color-green-400: color(display-p3 0 0.5803921568627451 0.3803921568627451); + --spectrum-global-color-green-500: color(display-p3 0 0.49411764705882355 0.3137254901960784); + --spectrum-global-color-green-600: color(display-p3 0 0.4117647058823529 0.2549019607843137); + --spectrum-global-color-green-700: color(display-p3 0 0.33725490196078434 0.20784313725490197); + --spectrum-global-color-indigo-400: color(display-p3 0.42745098039215684 0.45098039215686275 0.9647058823529412); + --spectrum-global-color-indigo-500: color(display-p3 0.3411764705882353 0.36470588235294116 0.9098039215686274); + --spectrum-global-color-indigo-600: color(display-p3 0.26666666666666666 0.2901960784313726 0.8156862745098039); + --spectrum-global-color-indigo-700: color(display-p3 0.20784313725490197 0.22745098039215686 0.6901960784313725); + --spectrum-global-color-magenta-400: color(display-p3 0.8862745098039215 0.26666666666666666 0.5294117647058824); + --spectrum-global-color-magenta-500: color(display-p3 0.803921568627451 0.1568627450980392 0.43529411764705883); + --spectrum-global-color-magenta-600: color(display-p3 0.7019607843137254 0.058823529411764705 0.34901960784313724); + --spectrum-global-color-magenta-700: color(display-p3 0.5843137254901961 0 0.2823529411764706); + --spectrum-global-color-orange-400: color(display-p3 0.9803921568627451 0.5450980392156862 0.10196078431372549); + --spectrum-global-color-orange-500: color(display-p3 0.9137254901960784 0.4588235294117647 0); + --spectrum-global-color-orange-600: color(display-p3 0.8196078431372549 0.3803921568627451 0); + --spectrum-global-color-orange-700: color(display-p3 0.7137254901960784 0.3137254901960784 0); + --spectrum-global-color-purple-400: color(display-p3 0.6313725490196078 0.36470588235294116 0.9647058823529412); + --spectrum-global-color-purple-500: color(display-p3 0.5568627450980392 0.2627450980392157 0.9176470588235294); + --spectrum-global-color-purple-600: color(display-p3 0.47058823529411764 0.16862745098039217 0.8470588235294118); + --spectrum-global-color-purple-700: color(display-p3 0.3843137254901961 0.09019607843137255 0.7450980392156863); + --spectrum-global-color-red-400: color(display-p3 0.9294117647058824 0.25098039215686274 0.18823529411764706); + --spectrum-global-color-red-500: color(display-p3 0.8509803921568627 0.10980392156862745 0.08235294117647059); + --spectrum-global-color-red-600: color(display-p3 0.7333333333333333 0.00784313725490196 0.00784313725490196); + --spectrum-global-color-red-700: color(display-p3 0.6039215686274509 0 0); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6509803921568628 0.6274509803921569); + --spectrum-global-color-seafoam-500: color(display-p3 0 0.5686274509803921 0.5450980392156862); + --spectrum-global-color-seafoam-600: color(display-p3 0 0.48627450980392156 0.4627450980392157); + --spectrum-global-color-seafoam-700: color(display-p3 0 0.403921568627451 0.38823529411764707); + --spectrum-global-color-yellow-400: color(display-p3 0.9333333333333333 0.803921568627451 0); + --spectrum-global-color-yellow-500: color(display-p3 0.8666666666666667 0.7254901960784313 0); + --spectrum-global-color-yellow-600: color(display-p3 0.788235294117647 0.6431372549019608 0); + --spectrum-global-color-yellow-700: color(display-p3 0.7098039215686275 0.5647058823529412 0); } body[data-color-mode="middark"] { + --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.050980392156862744); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); + --spectrum-alias-background-color-quickactions: color(display-p3 0.29411764705882354 0.29411764705882354 0.29411764705882354 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.30196078431372547); + --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.058823529411764705); + --spectrum-alias-highlight-selected: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922 / 0.10196078431372549); + --spectrum-alias-highlight-selected-hover: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922 / 0.2); + --spectrum-alias-text-highlight-color: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922 / 0.2); + --spectrum-global-color-blue-400: color(display-p3 0.25882352941176473 0.596078431372549 0.9568627450980393); + --spectrum-global-color-blue-500: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922); + --spectrum-global-color-blue-600: color(display-p3 0.47843137254901963 0.7372549019607844 0.9803921568627451); + --spectrum-global-color-blue-700: color(display-p3 0.5843137254901961 0.803921568627451 0.9882352941176471); --spectrum-global-color-celery-400: color(display-p3 0.17647058823529413 0.7450980392156863 0.22745098039215686); --spectrum-global-color-celery-500: color(display-p3 0.3058823529411765 0.8117647058823529 0.3137254901960784); --spectrum-global-color-celery-600: color(display-p3 0.4392156862745098 0.8745098039215686 0.40784313725490196); @@ -1298,46 +1312,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.6627450980392157 0.8431372549019608 0.08235294117647059); --spectrum-global-color-chartreuse-600: color(display-p3 0.7294117647058823 0.9098039215686274 0.1568627450980392); --spectrum-global-color-chartreuse-700: color(display-p3 0.807843137254902 0.9647058823529412 0.29411764705882354); - --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7725490196078432 0); - --spectrum-global-color-yellow-500: color(display-p3 0.9647058823529412 0.8431372549019608 0.00784313725490196); - --spectrum-global-color-yellow-600: color(display-p3 0.9764705882352941 0.9176470588235294 0.38823529411764707); - --spectrum-global-color-yellow-700: color(display-p3 0.9921568627450981 0.9647058823529412 0.7490196078431373); - --spectrum-global-color-magenta-400: color(display-p3 0.9058823529411765 0.29411764705882354 0.5529411764705883); - --spectrum-global-color-magenta-500: color(display-p3 0.9490196078431372 0.38823529411764707 0.615686274509804); - --spectrum-global-color-magenta-600: color(display-p3 0.9882352941176471 0.4823529411764706 0.6784313725490196); - --spectrum-global-color-magenta-700: color(display-p3 1 0.5882352941176471 0.7411764705882353); --spectrum-global-color-fuchsia-400: color(display-p3 0.8470588235294118 0.27450980392156865 0.8509803921568627); --spectrum-global-color-fuchsia-500: color(display-p3 0.8980392156862745 0.36470588235294116 0.9019607843137255); --spectrum-global-color-fuchsia-600: color(display-p3 0.9372549019607843 0.47058823529411764 0.9333333333333333); --spectrum-global-color-fuchsia-700: color(display-p3 0.9647058823529412 0.5764705882352941 0.9529411764705882); - --spectrum-global-color-purple-400: color(display-p3 0.6509803921568628 0.39215686274509803 0.9686274509803922); - --spectrum-global-color-purple-500: color(display-p3 0.7019607843137254 0.4745098039215686 0.9803921568627451); - --spectrum-global-color-purple-600: color(display-p3 0.7529411764705882 0.5607843137254902 0.9882352941176471); - --spectrum-global-color-purple-700: color(display-p3 0.803921568627451 0.6470588235294118 0.9921568627450981); - --spectrum-global-color-indigo-400: color(display-p3 0.45098039215686275 0.47058823529411764 0.9725490196078431); - --spectrum-global-color-indigo-500: color(display-p3 0.5215686274509804 0.5411764705882353 0.9921568627450981); - --spectrum-global-color-indigo-600: color(display-p3 0.596078431372549 0.615686274509804 1); - --spectrum-global-color-indigo-700: color(display-p3 0.6745098039215687 0.6901960784313725 1); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.6549019607843137 0.6274509803921569); - --spectrum-global-color-seafoam-500: color(display-p3 0.09803921568627451 0.7215686274509804 0.6941176470588235); - --spectrum-global-color-seafoam-600: color(display-p3 0.25098039215686274 0.788235294117647 0.7607843137254902); - --spectrum-global-color-seafoam-700: color(display-p3 0.39215686274509803 0.8509803921568627 0.8235294117647058); - --spectrum-global-color-red-400: color(display-p3 0.9450980392156862 0.2901960784313726 0.21568627450980393); - --spectrum-global-color-red-500: color(display-p3 0.9803921568627451 0.396078431372549 0.30980392156862746); - --spectrum-global-color-red-600: color(display-p3 1 0.5058823529411764 0.4196078431372549); - --spectrum-global-color-red-700: color(display-p3 1 0.611764705882353 0.5372549019607843); - --spectrum-global-color-orange-400: color(display-p3 0.9725490196078431 0.5372549019607843 0.08627450980392157); - --spectrum-global-color-orange-500: color(display-p3 1 0.6313725490196078 0.2235294117647059); - --spectrum-global-color-orange-600: color(display-p3 1 0.7294117647058823 0.3803921568627451); - --spectrum-global-color-orange-700: color(display-p3 0.9921568627450981 0.8156862745098039 0.5568627450980392); - --spectrum-global-color-green-400: color(display-p3 0.11764705882352941 0.6666666666666666 0.4549019607843137); - --spectrum-global-color-green-500: color(display-p3 0.2 0.7333333333333333 0.5137254901960784); - --spectrum-global-color-green-600: color(display-p3 0.2901960784313726 0.8 0.5803921568627451); - --spectrum-global-color-green-700: color(display-p3 0.396078431372549 0.8666666666666667 0.6549019607843137); - --spectrum-global-color-blue-400: color(display-p3 0.25882352941176473 0.596078431372549 0.9568627450980393); - --spectrum-global-color-blue-500: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922); - --spectrum-global-color-blue-600: color(display-p3 0.47843137254901963 0.7372549019607844 0.9803921568627451); - --spectrum-global-color-blue-700: color(display-p3 0.5843137254901961 0.803921568627451 0.9882352941176471); --spectrum-global-color-gray-50: color(display-p3 0.2235294117647059 0.2235294117647059 0.2235294117647059); --spectrum-global-color-gray-75: color(display-p3 0.2549019607843137 0.2549019607843137 0.2549019607843137); --spectrum-global-color-gray-100: color(display-p3 0.29411764705882354 0.29411764705882354 0.29411764705882354); @@ -1349,23 +1327,59 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.8313725490196079 0.8313725490196079 0.8313725490196079); --spectrum-global-color-gray-800: color(display-p3 0.9254901960784314 0.9254901960784314 0.9254901960784314); --spectrum-global-color-gray-900: color(display-p3 1 1 1); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); - --spectrum-alias-background-color-hover-overly: color(display-p3 1 1 1 / 0.050980392156862744); - --spectrum-alias-background-color-quickactions: color(display-p3 0.29411764705882354 0.29411764705882354 0.29411764705882354 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.30196078431372547); - --spectrum-alias-highlight-hover: color(display-p3 1 1 1 / 0.058823529411764705); - --spectrum-alias-highlight-down: color(display-p3 1 1 1 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922 / 0.10196078431372549); - --spectrum-alias-highlight-selected-hover: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922 / 0.2); - --spectrum-alias-text-highlight-color: color(display-p3 0.3686274509803922 0.6666666666666666 0.9686274509803922 / 0.2); - --spectrum-alias-border-color-translucent: color(display-p3 1 1 1 / 0.10196078431372549); - --spectrum-scrollbar-mac-s-track-background-color: color(display-p3 0 0 0 / 0); - --spectrum-scrollbar-mac-m-track-background-color: color(display-p3 0 0 0 / 0); + --spectrum-global-color-green-400: color(display-p3 0.11764705882352941 0.6666666666666666 0.4549019607843137); + --spectrum-global-color-green-500: color(display-p3 0.2 0.7333333333333333 0.5137254901960784); + --spectrum-global-color-green-600: color(display-p3 0.2901960784313726 0.8 0.5803921568627451); + --spectrum-global-color-green-700: color(display-p3 0.396078431372549 0.8666666666666667 0.6549019607843137); + --spectrum-global-color-indigo-400: color(display-p3 0.45098039215686275 0.47058823529411764 0.9725490196078431); + --spectrum-global-color-indigo-500: color(display-p3 0.5215686274509804 0.5411764705882353 0.9921568627450981); + --spectrum-global-color-indigo-600: color(display-p3 0.596078431372549 0.615686274509804 1); + --spectrum-global-color-indigo-700: color(display-p3 0.6745098039215687 0.6901960784313725 1); + --spectrum-global-color-magenta-400: color(display-p3 0.9058823529411765 0.29411764705882354 0.5529411764705883); + --spectrum-global-color-magenta-500: color(display-p3 0.9490196078431372 0.38823529411764707 0.615686274509804); + --spectrum-global-color-magenta-600: color(display-p3 0.9882352941176471 0.4823529411764706 0.6784313725490196); + --spectrum-global-color-magenta-700: color(display-p3 1 0.5882352941176471 0.7411764705882353); + --spectrum-global-color-orange-400: color(display-p3 0.9725490196078431 0.5372549019607843 0.08627450980392157); + --spectrum-global-color-orange-500: color(display-p3 1 0.6313725490196078 0.2235294117647059); + --spectrum-global-color-orange-600: color(display-p3 1 0.7294117647058823 0.3803921568627451); + --spectrum-global-color-orange-700: color(display-p3 0.9921568627450981 0.8156862745098039 0.5568627450980392); + --spectrum-global-color-purple-400: color(display-p3 0.6509803921568628 0.39215686274509803 0.9686274509803922); + --spectrum-global-color-purple-500: color(display-p3 0.7019607843137254 0.4745098039215686 0.9803921568627451); + --spectrum-global-color-purple-600: color(display-p3 0.7529411764705882 0.5607843137254902 0.9882352941176471); + --spectrum-global-color-purple-700: color(display-p3 0.803921568627451 0.6470588235294118 0.9921568627450981); + --spectrum-global-color-red-400: color(display-p3 0.9450980392156862 0.2901960784313726 0.21568627450980393); + --spectrum-global-color-red-500: color(display-p3 0.9803921568627451 0.396078431372549 0.30980392156862746); + --spectrum-global-color-red-600: color(display-p3 1 0.5058823529411764 0.4196078431372549); + --spectrum-global-color-red-700: color(display-p3 1 0.611764705882353 0.5372549019607843); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.6549019607843137 0.6274509803921569); + --spectrum-global-color-seafoam-500: color(display-p3 0.09803921568627451 0.7215686274509804 0.6941176470588235); + --spectrum-global-color-seafoam-600: color(display-p3 0.25098039215686274 0.788235294117647 0.7607843137254902); + --spectrum-global-color-seafoam-700: color(display-p3 0.39215686274509803 0.8509803921568627 0.8235294117647058); + --spectrum-global-color-yellow-400: color(display-p3 0.9098039215686274 0.7725490196078432 0); + --spectrum-global-color-yellow-500: color(display-p3 0.9647058823529412 0.8431372549019608 0.00784313725490196); + --spectrum-global-color-yellow-600: color(display-p3 0.9764705882352941 0.9176470588235294 0.38823529411764707); + --spectrum-global-color-yellow-700: color(display-p3 0.9921568627450981 0.9647058823529412 0.7490196078431373); --spectrum-scrollbar-mac-l-track-background-color: color(display-p3 0 0 0 / 0); + --spectrum-scrollbar-mac-m-track-background-color: color(display-p3 0 0 0 / 0); + --spectrum-scrollbar-mac-s-track-background-color: color(display-p3 0 0 0 / 0); --spectrum-well-background-color: color(display-p3 0.9254901960784314 0.9254901960784314 0.9254901960784314 / 0.0196078431372549); } body[data-color-mode="midlight"] { + --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); + --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); + --spectrum-alias-background-color-quickactions: color(display-p3 0.8588235294117647 0.8588235294117647 0.8588235294117647 / 0.9019607843137255); + --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); + --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); + --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); + --spectrum-alias-highlight-selected: color(display-p3 0 0.3411764705882353 0.7450980392156863 / 0.10196078431372549); + --spectrum-alias-highlight-selected-hover: color(display-p3 0 0.3411764705882353 0.7450980392156863 / 0.2); + --spectrum-alias-text-highlight-color: color(display-p3 0 0.3411764705882353 0.7450980392156863 / 0.2); + --spectrum-global-color-blue-400: color(display-p3 0.01568627450980392 0.40784313725490196 0.8823529411764706); + --spectrum-global-color-blue-500: color(display-p3 0 0.3411764705882353 0.7450980392156863); + --spectrum-global-color-blue-600: color(display-p3 0 0.2784313725490196 0.596078431372549); + --spectrum-global-color-blue-700: color(display-p3 0 0.21568627450980393 0.4627450980392157); --spectrum-global-color-celery-400: color(display-p3 0.027450980392156862 0.6549019607843137 0.12941176470588237); --spectrum-global-color-celery-500: color(display-p3 0 0.5803921568627451 0.07450980392156863); --spectrum-global-color-celery-600: color(display-p3 0 0.4980392156862745 0.058823529411764705); @@ -1374,46 +1388,10 @@ body[data-color-mode="midlight"] { --spectrum-global-color-chartreuse-500: color(display-p3 0.4666666666666667 0.615686274509804 0); --spectrum-global-color-chartreuse-600: color(display-p3 0.40784313725490196 0.5411764705882353 0); --spectrum-global-color-chartreuse-700: color(display-p3 0.35294117647058826 0.4666666666666667 0); - --spectrum-global-color-yellow-400: color(display-p3 0.8274509803921568 0.6862745098039216 0); - --spectrum-global-color-yellow-500: color(display-p3 0.7607843137254902 0.615686274509804 0); - --spectrum-global-color-yellow-600: color(display-p3 0.6901960784313725 0.5490196078431373 0); - --spectrum-global-color-yellow-700: color(display-p3 0.615686274509804 0.47843137254901963 0); - --spectrum-global-color-magenta-400: color(display-p3 0.8 0.15294117647058825 0.43137254901960786); - --spectrum-global-color-magenta-500: color(display-p3 0.7019607843137254 0.058823529411764705 0.34509803921568627); - --spectrum-global-color-magenta-600: color(display-p3 0.5843137254901961 0 0.2823529411764706); - --spectrum-global-color-magenta-700: color(display-p3 0.4549019607843137 0 0.2235294117647059); --spectrum-global-color-fuchsia-400: color(display-p3 0.7294117647058823 0.14901960784313725 0.7294117647058823); --spectrum-global-color-fuchsia-500: color(display-p3 0.6392156862745098 0.03529411764705882 0.6392156862745098); --spectrum-global-color-fuchsia-600: color(display-p3 0.5254901960784314 0 0.5294117647058824); --spectrum-global-color-fuchsia-700: color(display-p3 0.40784313725490196 0.01568627450980392 0.40784313725490196); - --spectrum-global-color-purple-400: color(display-p3 0.5529411764705883 0.25882352941176473 0.9137254901960784); - --spectrum-global-color-purple-500: color(display-p3 0.47058823529411764 0.16470588235294117 0.8470588235294118); - --spectrum-global-color-purple-600: color(display-p3 0.3803921568627451 0.08627450980392157 0.7450980392156863); - --spectrum-global-color-purple-700: color(display-p3 0.2901960784313726 0.047058823529411764 0.6); - --spectrum-global-color-indigo-400: color(display-p3 0.33725490196078434 0.3607843137254902 0.9058823529411765); - --spectrum-global-color-indigo-500: color(display-p3 0.26666666666666666 0.28627450980392155 0.8156862745098039); - --spectrum-global-color-indigo-600: color(display-p3 0.20392156862745098 0.2235294117647059 0.6901960784313725); - --spectrum-global-color-indigo-700: color(display-p3 0.15294117647058825 0.16862745098039217 0.5450980392156862); - --spectrum-global-color-seafoam-400: color(display-p3 0 0.5568627450980392 0.5333333333333333); - --spectrum-global-color-seafoam-500: color(display-p3 0 0.47843137254901963 0.4588235294117647); - --spectrum-global-color-seafoam-600: color(display-p3 0 0.403921568627451 0.38823529411764707); - --spectrum-global-color-seafoam-700: color(display-p3 0.0392156862745098 0.3254901960784314 0.3137254901960784); - --spectrum-global-color-red-400: color(display-p3 0.8470588235294118 0.10196078431372549 0.07450980392156863); - --spectrum-global-color-red-500: color(display-p3 0.7333333333333333 0.00784313725490196 0.00784313725490196); - --spectrum-global-color-red-600: color(display-p3 0.6 0 0); - --spectrum-global-color-red-700: color(display-p3 0.47058823529411764 0 0); - --spectrum-global-color-orange-400: color(display-p3 0.8941176470588236 0.43529411764705883 0); - --spectrum-global-color-orange-500: color(display-p3 0.803921568627451 0.37254901960784315 0); - --spectrum-global-color-orange-600: color(display-p3 0.7098039215686275 0.30980392156862746 0); - --spectrum-global-color-orange-700: color(display-p3 0.6078431372549019 0.25098039215686274 0); - --spectrum-global-color-green-400: color(display-p3 0 0.49019607843137253 0.30980392156862746); - --spectrum-global-color-green-500: color(display-p3 0 0.4117647058823529 0.2549019607843137); - --spectrum-global-color-green-600: color(display-p3 0 0.3333333333333333 0.20392156862745098); - --spectrum-global-color-green-700: color(display-p3 0.0196078431372549 0.2549019607843137 0.1568627450980392); - --spectrum-global-color-blue-400: color(display-p3 0.01568627450980392 0.40784313725490196 0.8823529411764706); - --spectrum-global-color-blue-500: color(display-p3 0 0.3411764705882353 0.7450980392156863); - --spectrum-global-color-blue-600: color(display-p3 0 0.2784313725490196 0.596078431372549); - --spectrum-global-color-blue-700: color(display-p3 0 0.21568627450980393 0.4627450980392157); --spectrum-global-color-gray-50: color(display-p3 0.9803921568627451 0.9803921568627451 0.9803921568627451); --spectrum-global-color-gray-75: color(display-p3 0.9372549019607843 0.9372549019607843 0.9372549019607843); --spectrum-global-color-gray-100: color(display-p3 0.8588235294117647 0.8588235294117647 0.8588235294117647); @@ -1425,19 +1403,41 @@ body[data-color-mode="midlight"] { --spectrum-global-color-gray-700: color(display-p3 0.27058823529411763 0.27058823529411763 0.27058823529411763); --spectrum-global-color-gray-800: color(display-p3 0.12941176470588237 0.12941176470588237 0.12941176470588237); --spectrum-global-color-gray-900: color(display-p3 0 0 0); - --spectrum-alias-background-color-modal-overlay: color(display-p3 0 0 0 / 0.4); - --spectrum-alias-background-color-hover-overly: color(display-p3 0 0 0 / 0.0392156862745098); - --spectrum-alias-background-color-quickactions: color(display-p3 0.8588235294117647 0.8588235294117647 0.8588235294117647 / 0.9019607843137255); - --spectrum-alias-dropshadow-color: color(display-p3 0 0 0 / 0.14901960784313725); - --spectrum-alias-highlight-hover: color(display-p3 0 0 0 / 0.058823529411764705); - --spectrum-alias-highlight-down: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-alias-highlight-selected: color(display-p3 0 0.3411764705882353 0.7450980392156863 / 0.10196078431372549); - --spectrum-alias-highlight-selected-hover: color(display-p3 0 0.3411764705882353 0.7450980392156863 / 0.2); - --spectrum-alias-text-highlight-color: color(display-p3 0 0.3411764705882353 0.7450980392156863 / 0.2); - --spectrum-alias-border-color-translucent: color(display-p3 0 0 0 / 0.10196078431372549); - --spectrum-scrollbar-mac-s-track-background-color: color(display-p3 0 0 0 / 0); - --spectrum-scrollbar-mac-m-track-background-color: color(display-p3 0 0 0 / 0); + --spectrum-global-color-green-400: color(display-p3 0 0.49019607843137253 0.30980392156862746); + --spectrum-global-color-green-500: color(display-p3 0 0.4117647058823529 0.2549019607843137); + --spectrum-global-color-green-600: color(display-p3 0 0.3333333333333333 0.20392156862745098); + --spectrum-global-color-green-700: color(display-p3 0.0196078431372549 0.2549019607843137 0.1568627450980392); + --spectrum-global-color-indigo-400: color(display-p3 0.33725490196078434 0.3607843137254902 0.9058823529411765); + --spectrum-global-color-indigo-500: color(display-p3 0.26666666666666666 0.28627450980392155 0.8156862745098039); + --spectrum-global-color-indigo-600: color(display-p3 0.20392156862745098 0.2235294117647059 0.6901960784313725); + --spectrum-global-color-indigo-700: color(display-p3 0.15294117647058825 0.16862745098039217 0.5450980392156862); + --spectrum-global-color-magenta-400: color(display-p3 0.8 0.15294117647058825 0.43137254901960786); + --spectrum-global-color-magenta-500: color(display-p3 0.7019607843137254 0.058823529411764705 0.34509803921568627); + --spectrum-global-color-magenta-600: color(display-p3 0.5843137254901961 0 0.2823529411764706); + --spectrum-global-color-magenta-700: color(display-p3 0.4549019607843137 0 0.2235294117647059); + --spectrum-global-color-orange-400: color(display-p3 0.8941176470588236 0.43529411764705883 0); + --spectrum-global-color-orange-500: color(display-p3 0.803921568627451 0.37254901960784315 0); + --spectrum-global-color-orange-600: color(display-p3 0.7098039215686275 0.30980392156862746 0); + --spectrum-global-color-orange-700: color(display-p3 0.6078431372549019 0.25098039215686274 0); + --spectrum-global-color-purple-400: color(display-p3 0.5529411764705883 0.25882352941176473 0.9137254901960784); + --spectrum-global-color-purple-500: color(display-p3 0.47058823529411764 0.16470588235294117 0.8470588235294118); + --spectrum-global-color-purple-600: color(display-p3 0.3803921568627451 0.08627450980392157 0.7450980392156863); + --spectrum-global-color-purple-700: color(display-p3 0.2901960784313726 0.047058823529411764 0.6); + --spectrum-global-color-red-400: color(display-p3 0.8470588235294118 0.10196078431372549 0.07450980392156863); + --spectrum-global-color-red-500: color(display-p3 0.7333333333333333 0.00784313725490196 0.00784313725490196); + --spectrum-global-color-red-600: color(display-p3 0.6 0 0); + --spectrum-global-color-red-700: color(display-p3 0.47058823529411764 0 0); + --spectrum-global-color-seafoam-400: color(display-p3 0 0.5568627450980392 0.5333333333333333); + --spectrum-global-color-seafoam-500: color(display-p3 0 0.47843137254901963 0.4588235294117647); + --spectrum-global-color-seafoam-600: color(display-p3 0 0.403921568627451 0.38823529411764707); + --spectrum-global-color-seafoam-700: color(display-p3 0.0392156862745098 0.3254901960784314 0.3137254901960784); + --spectrum-global-color-yellow-400: color(display-p3 0.8274509803921568 0.6862745098039216 0); + --spectrum-global-color-yellow-500: color(display-p3 0.7607843137254902 0.615686274509804 0); + --spectrum-global-color-yellow-600: color(display-p3 0.6901960784313725 0.5490196078431373 0); + --spectrum-global-color-yellow-700: color(display-p3 0.615686274509804 0.47843137254901963 0); --spectrum-scrollbar-mac-l-track-background-color: color(display-p3 0 0 0 / 0); + --spectrum-scrollbar-mac-m-track-background-color: color(display-p3 0 0 0 / 0); + --spectrum-scrollbar-mac-s-track-background-color: color(display-p3 0 0 0 / 0); --spectrum-well-background-color: color(display-p3 0.12941176470588237 0.12941176470588237 0.12941176470588237 / 0.0196078431372549); } } diff --git a/examples/apple/tokens/index.d.ts b/examples/apple/tokens/index.d.ts index cc77f93e..f733d5eb 100644 --- a/examples/apple/tokens/index.d.ts +++ b/examples/apple/tokens/index.d.ts @@ -27,27 +27,27 @@ export declare const tokens: { 'color.systemIndigo': ColorToken['$value']; 'color.systemMint': ColorToken['$value']; 'color.systemOrange': ColorToken['$value']; - 'color.systemPurple': ColorToken['$value']; 'color.systemPink': ColorToken['$value']; + 'color.systemPurple': ColorToken['$value']; 'color.systemRed': ColorToken['$value']; 'color.systemTeal': ColorToken['$value']; 'color.systemYellow': ColorToken['$value']; - 'font.family.sfPro': FontFamilyToken['$value']; - 'font.family.sfProRounded': FontFamilyToken['$value']; + 'font.family.newYork': FontFamilyToken['$value']; 'font.family.sfCompact': FontFamilyToken['$value']; 'font.family.sfMono': FontFamilyToken['$value']; - 'font.family.newYork': FontFamilyToken['$value']; + 'font.family.sfPro': FontFamilyToken['$value']; + 'font.family.sfProRounded': FontFamilyToken['$value']; + 'font.style.body': TypographyToken['$value']; + 'font.style.callout': TypographyToken['$value']; + 'font.style.caption_2': TypographyToken['$value']; + 'font.style.caption1': TypographyToken['$value']; + 'font.style.footnote': TypographyToken['$value']; + 'font.style.headline': TypographyToken['$value']; 'font.style.largeTitle': TypographyToken['$value']; + 'font.style.subhead': TypographyToken['$value']; 'font.style.title1': TypographyToken['$value']; 'font.style.title2': TypographyToken['$value']; 'font.style.title3': TypographyToken['$value']; - 'font.style.headline': TypographyToken['$value']; - 'font.style.body': TypographyToken['$value']; - 'font.style.callout': TypographyToken['$value']; - 'font.style.subhead': TypographyToken['$value']; - 'font.style.footnote': TypographyToken['$value']; - 'font.style.caption1': TypographyToken['$value']; - 'font.style.caption_2': TypographyToken['$value']; }; export declare const meta: { @@ -64,139 +64,139 @@ export declare const meta: { 'color.systemIndigo': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemIndigo'] } }; 'color.systemMint': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemMint'] } }; 'color.systemOrange': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemOrange'] } }; - 'color.systemPurple': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemPurple'] } }; 'color.systemPink': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemPink'] } }; + 'color.systemPurple': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemPurple'] } }; 'color.systemRed': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemRed'] } }; 'color.systemTeal': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemTeal'] } }; 'color.systemYellow': ParsedColorToken & { $extensions: { mode: typeof modes['color.systemYellow'] } }; - 'font.family.sfPro': ParsedFontFamilyToken; - 'font.family.sfProRounded': ParsedFontFamilyToken; + 'font.family.newYork': ParsedFontFamilyToken; 'font.family.sfCompact': ParsedFontFamilyToken; 'font.family.sfMono': ParsedFontFamilyToken; - 'font.family.newYork': ParsedFontFamilyToken; + 'font.family.sfPro': ParsedFontFamilyToken; + 'font.family.sfProRounded': ParsedFontFamilyToken; + 'font.style.body': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.body'] } }; + 'font.style.callout': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.callout'] } }; + 'font.style.caption_2': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.caption_2'] } }; + 'font.style.caption1': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.caption1'] } }; + 'font.style.footnote': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.footnote'] } }; + 'font.style.headline': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.headline'] } }; 'font.style.largeTitle': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.largeTitle'] } }; + 'font.style.subhead': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.subhead'] } }; 'font.style.title1': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.title1'] } }; 'font.style.title2': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.title2'] } }; 'font.style.title3': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.title3'] } }; - 'font.style.headline': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.headline'] } }; - 'font.style.body': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.body'] } }; - 'font.style.callout': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.callout'] } }; - 'font.style.subhead': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.subhead'] } }; - 'font.style.footnote': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.footnote'] } }; - 'font.style.caption1': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.caption1'] } }; - 'font.style.caption_2': ParsedTypographyToken & { $extensions: { mode: typeof modes['font.style.caption_2'] } }; }; export declare const modes: { 'color.systemBlue': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemBrown': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemCyan': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGray': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGray2': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGray3': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGray4': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGray5': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGray6': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemGreen': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemIndigo': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemMint': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemOrange': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; - 'color.systemPurple': { + 'color.systemPink': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; - 'color.systemPink': { + 'color.systemPurple': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemRed': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemTeal': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; 'color.systemYellow': { light: ColorToken['$value']; dark: ColorToken['$value']; - 'light_ax': ColorToken['$value']; - 'dark_ax': ColorToken['$value']; + light_ax: ColorToken['$value']; + dark_ax: ColorToken['$value']; }; - 'font.style.largeTitle': { + 'font.style.body': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -205,7 +205,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.title1': { + 'font.style.callout': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -214,7 +214,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.title2': { + 'font.style.caption_2': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -223,7 +223,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.title3': { + 'font.style.caption1': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -232,7 +232,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.headline': { + 'font.style.footnote': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -241,7 +241,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.body': { + 'font.style.headline': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -250,7 +250,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.callout': { + 'font.style.largeTitle': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -268,7 +268,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.footnote': { + 'font.style.title1': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -277,7 +277,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.caption1': { + 'font.style.title2': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; @@ -286,7 +286,7 @@ export declare const modes: { xxLarge: TypographyToken['$value']; xxxLarge: TypographyToken['$value']; }; - 'font.style.caption_2': { + 'font.style.title3': { xSmall: TypographyToken['$value']; Small: TypographyToken['$value']; Medium: TypographyToken['$value']; diff --git a/examples/apple/tokens/index.js b/examples/apple/tokens/index.js index d7f192bd..d8c4dd8b 100644 --- a/examples/apple/tokens/index.js +++ b/examples/apple/tokens/index.js @@ -18,1214 +18,1214 @@ export const tokens = { 'color.systemIndigo': '#5856d6', 'color.systemMint': '#00c7be', 'color.systemOrange': '#ff9500', - 'color.systemPurple': '#af52de', 'color.systemPink': '#ff2d55', + 'color.systemPurple': '#af52de', 'color.systemRed': '#ff3b30', 'color.systemTeal': '#30b0c7', 'color.systemYellow': '#ffcc00', - 'font.family.sfPro': ['SF Pro'], - 'font.family.sfProRounded': ['SF Pro Rounded'], + 'font.family.newYork': ['New York'], 'font.family.sfCompact': ['SF Compact'], 'font.family.sfMono': ['SF Mono'], - 'font.family.newYork': ['New York'], - 'font.style.largeTitle': { - fontSize: '34px', + 'font.family.sfPro': ['SF Pro'], + 'font.family.sfProRounded': ['SF Pro Rounded'], + 'font.style.body': { + fontSize: '17px', fontWeight: 400, - lineHeight: '41px', + lineHeight: '22px', }, - 'font.style.title1': { - fontSize: '28px', + 'font.style.callout': { + fontSize: '16px', fontWeight: 400, - lineHeight: '34px', + lineHeight: '21px', }, - 'font.style.title2': { - fontSize: '22px', + 'font.style.caption_2': { + fontSize: '11px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '13px', }, - 'font.style.title3': { - fontSize: '20px', + 'font.style.caption1': { + fontSize: '12px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '16px', + }, + 'font.style.footnote': { + fontSize: '13px', + fontWeight: 400, + lineHeight: '18px', }, 'font.style.headline': { fontSize: '17px', fontWeight: 600, lineHeight: '22px', }, - 'font.style.body': { - fontSize: '17px', - fontWeight: 400, - lineHeight: '22px', - }, - 'font.style.callout': { - fontSize: '16px', + 'font.style.largeTitle': { + fontSize: '34px', fontWeight: 400, - lineHeight: '21px', + lineHeight: '41px', }, 'font.style.subhead': { fontSize: '15px', fontWeight: 400, lineHeight: '20px', }, - 'font.style.footnote': { - fontSize: '13px', + 'font.style.title1': { + fontSize: '28px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '34px', }, - 'font.style.caption1': { - fontSize: '12px', + 'font.style.title2': { + fontSize: '22px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '25px', }, - 'font.style.caption_2': { - fontSize: '11px', + 'font.style.title3': { + fontSize: '20px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '25px', }, }; export const meta = { 'color.systemBlue': { - '_original': { - '$name': 'Blue', - '$value': '#007aff', - '$extensions': { + _original: { + $name: 'Blue', + $value: '#007aff', + $extensions: { mode: { light: '#007aff', dark: '#0a84ff', - 'light_ax': '#0040dd', - 'dark_ax': '#409cff', + light_ax: '#0040dd', + dark_ax: '#409cff', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemBlue', - '$type': 'color', - '$name': 'Blue', - '$value': '#007aff', - '$extensions': { + $type: 'color', + $name: 'Blue', + $value: '#007aff', + $extensions: { mode: { light: '#007aff', dark: '#0a84ff', - 'light_ax': '#0040dd', - 'dark_ax': '#409cff', + light_ax: '#0040dd', + dark_ax: '#409cff', }, }, }, 'color.systemBrown': { - '_original': { - '$name': 'Brown', - '$value': '#a2845e', - '$extensions': { + _original: { + $name: 'Brown', + $value: '#a2845e', + $extensions: { mode: { light: '#a2845e', dark: '#ac8e68', - 'light_ax': '#7f6545', - 'dark_ax': '#b59469', + light_ax: '#7f6545', + dark_ax: '#b59469', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemBrown', - '$type': 'color', - '$name': 'Brown', - '$value': '#a2845e', - '$extensions': { + $type: 'color', + $name: 'Brown', + $value: '#a2845e', + $extensions: { mode: { light: '#a2845e', dark: '#ac8e68', - 'light_ax': '#7f6545', - 'dark_ax': '#b59469', + light_ax: '#7f6545', + dark_ax: '#b59469', }, }, }, 'color.systemCyan': { - '_original': { - '$name': 'Cyan', - '$value': '#32ade6', - '$extensions': { + _original: { + $name: 'Cyan', + $value: '#32ade6', + $extensions: { mode: { light: '#32ade6', dark: '#64d2ff', - 'light_ax': '#0071a4', - 'dark_ax': '#70d7ff', + light_ax: '#0071a4', + dark_ax: '#70d7ff', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemCyan', - '$type': 'color', - '$name': 'Cyan', - '$value': '#32ade6', - '$extensions': { + $type: 'color', + $name: 'Cyan', + $value: '#32ade6', + $extensions: { mode: { light: '#32ade6', dark: '#64d2ff', - 'light_ax': '#0071a4', - 'dark_ax': '#70d7ff', + light_ax: '#0071a4', + dark_ax: '#70d7ff', }, }, }, 'color.systemGray': { - '_original': { - '$name': 'Gray', - '$value': '#8e8e93', - '$extensions': { + _original: { + $name: 'Gray', + $value: '#8e8e93', + $extensions: { mode: { light: '#8e8e93', dark: '#8e8e93', - 'light_ax': '#6c6c70', - 'dark_ax': '#aeaeb2', + light_ax: '#6c6c70', + dark_ax: '#aeaeb2', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGray', - '$type': 'color', - '$name': 'Gray', - '$value': '#8e8e93', - '$extensions': { + $type: 'color', + $name: 'Gray', + $value: '#8e8e93', + $extensions: { mode: { light: '#8e8e93', dark: '#8e8e93', - 'light_ax': '#6c6c70', - 'dark_ax': '#aeaeb2', + light_ax: '#6c6c70', + dark_ax: '#aeaeb2', }, }, }, 'color.systemGray2': { - '_original': { - '$name': 'Gray (2)', - '$value': '#aeaeb2', - '$extensions': { + _original: { + $name: 'Gray (2)', + $value: '#aeaeb2', + $extensions: { mode: { light: '#aeaeb2', dark: '#636366', - 'light_ax': '#8e8e93', - 'dark_ax': '#7c7c80', + light_ax: '#8e8e93', + dark_ax: '#7c7c80', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGray2', - '$type': 'color', - '$name': 'Gray (2)', - '$value': '#aeaeb2', - '$extensions': { + $type: 'color', + $name: 'Gray (2)', + $value: '#aeaeb2', + $extensions: { mode: { light: '#aeaeb2', dark: '#636366', - 'light_ax': '#8e8e93', - 'dark_ax': '#7c7c80', + light_ax: '#8e8e93', + dark_ax: '#7c7c80', }, }, }, 'color.systemGray3': { - '_original': { - '$name': 'Gray (3)', - '$value': '#c7c7cc', - '$extensions': { + _original: { + $name: 'Gray (3)', + $value: '#c7c7cc', + $extensions: { mode: { light: '#c7c7cc', dark: '#48484a', - 'light_ax': '#aeaeb2', - 'dark_ax': '#545456', + light_ax: '#aeaeb2', + dark_ax: '#545456', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGray3', - '$type': 'color', - '$name': 'Gray (3)', - '$value': '#c7c7cc', - '$extensions': { + $type: 'color', + $name: 'Gray (3)', + $value: '#c7c7cc', + $extensions: { mode: { light: '#c7c7cc', dark: '#48484a', - 'light_ax': '#aeaeb2', - 'dark_ax': '#545456', + light_ax: '#aeaeb2', + dark_ax: '#545456', }, }, }, 'color.systemGray4': { - '_original': { - '$name': 'Gray (4)', - '$value': '#d1d1d6', - '$extensions': { + _original: { + $name: 'Gray (4)', + $value: '#d1d1d6', + $extensions: { mode: { light: '#d1d1d6', dark: '#3a3a3c', - 'light_ax': '#bcbcc0', - 'dark_ax': '#444446', + light_ax: '#bcbcc0', + dark_ax: '#444446', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGray4', - '$type': 'color', - '$name': 'Gray (4)', - '$value': '#d1d1d6', - '$extensions': { + $type: 'color', + $name: 'Gray (4)', + $value: '#d1d1d6', + $extensions: { mode: { light: '#d1d1d6', dark: '#3a3a3c', - 'light_ax': '#bcbcc0', - 'dark_ax': '#444446', + light_ax: '#bcbcc0', + dark_ax: '#444446', }, }, }, 'color.systemGray5': { - '_original': { - '$name': 'Gray (5)', - '$value': '#e5e5ea', - '$extensions': { + _original: { + $name: 'Gray (5)', + $value: '#e5e5ea', + $extensions: { mode: { light: '#e5e5ea', dark: '#2c2c2e', - 'light_ax': '#d8d8dc', - 'dark_ax': '#363638', + light_ax: '#d8d8dc', + dark_ax: '#363638', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGray5', - '$type': 'color', - '$name': 'Gray (5)', - '$value': '#e5e5ea', - '$extensions': { + $type: 'color', + $name: 'Gray (5)', + $value: '#e5e5ea', + $extensions: { mode: { light: '#e5e5ea', dark: '#2c2c2e', - 'light_ax': '#d8d8dc', - 'dark_ax': '#363638', + light_ax: '#d8d8dc', + dark_ax: '#363638', }, }, }, 'color.systemGray6': { - '_original': { - '$name': 'Gray (6)', - '$value': '#f2f2f7', - '$extensions': { + _original: { + $name: 'Gray (6)', + $value: '#f2f2f7', + $extensions: { mode: { light: '#f2f2f7', dark: '#1c1c1e', - 'light_ax': '#ebebf0', - 'dark_ax': '#242426', + light_ax: '#ebebf0', + dark_ax: '#242426', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGray6', - '$type': 'color', - '$name': 'Gray (6)', - '$value': '#f2f2f7', - '$extensions': { + $type: 'color', + $name: 'Gray (6)', + $value: '#f2f2f7', + $extensions: { mode: { light: '#f2f2f7', dark: '#1c1c1e', - 'light_ax': '#ebebf0', - 'dark_ax': '#242426', + light_ax: '#ebebf0', + dark_ax: '#242426', }, }, }, 'color.systemGreen': { - '_original': { - '$name': 'Green', - '$value': '#34c759', - '$extensions': { + _original: { + $name: 'Green', + $value: '#34c759', + $extensions: { mode: { light: '#34c759', dark: '#30d158', - 'light_ax': '#248a3d', - 'dark_ax': '#30db5b', + light_ax: '#248a3d', + dark_ax: '#30db5b', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemGreen', - '$type': 'color', - '$name': 'Green', - '$value': '#34c759', - '$extensions': { + $type: 'color', + $name: 'Green', + $value: '#34c759', + $extensions: { mode: { light: '#34c759', dark: '#30d158', - 'light_ax': '#248a3d', - 'dark_ax': '#30db5b', + light_ax: '#248a3d', + dark_ax: '#30db5b', }, }, }, 'color.systemIndigo': { - '_original': { - '$name': 'Indigo', - '$value': '#5856d6', - '$extensions': { + _original: { + $name: 'Indigo', + $value: '#5856d6', + $extensions: { mode: { light: '#5856d6', dark: '#5e5ce6', - 'light_ax': '#3634a3', - 'dark_ax': '#7d7aff', + light_ax: '#3634a3', + dark_ax: '#7d7aff', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemIndigo', - '$type': 'color', - '$name': 'Indigo', - '$value': '#5856d6', - '$extensions': { + $type: 'color', + $name: 'Indigo', + $value: '#5856d6', + $extensions: { mode: { light: '#5856d6', dark: '#5e5ce6', - 'light_ax': '#3634a3', - 'dark_ax': '#7d7aff', + light_ax: '#3634a3', + dark_ax: '#7d7aff', }, }, }, 'color.systemMint': { - '_original': { - '$name': 'Mint', - '$value': '#00c7be', - '$extensions': { + _original: { + $name: 'Mint', + $value: '#00c7be', + $extensions: { mode: { light: '#00c7be', dark: '#66d4cf', - 'light_ax': '#0c817b', - 'dark_ax': '#66d4cf', + light_ax: '#0c817b', + dark_ax: '#66d4cf', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemMint', - '$type': 'color', - '$name': 'Mint', - '$value': '#00c7be', - '$extensions': { + $type: 'color', + $name: 'Mint', + $value: '#00c7be', + $extensions: { mode: { light: '#00c7be', dark: '#66d4cf', - 'light_ax': '#0c817b', - 'dark_ax': '#66d4cf', + light_ax: '#0c817b', + dark_ax: '#66d4cf', }, }, }, 'color.systemOrange': { - '_original': { - '$name': 'Orange', - '$value': '#ff9500', - '$extensions': { + _original: { + $name: 'Orange', + $value: '#ff9500', + $extensions: { mode: { light: '#ff9500', dark: '#ff9f0a', - 'light_ax': '#c93400', - 'dark_ax': '#ffb340', + light_ax: '#c93400', + dark_ax: '#ffb340', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemOrange', - '$type': 'color', - '$name': 'Orange', - '$value': '#ff9500', - '$extensions': { + $type: 'color', + $name: 'Orange', + $value: '#ff9500', + $extensions: { mode: { light: '#ff9500', dark: '#ff9f0a', - 'light_ax': '#c93400', - 'dark_ax': '#ffb340', + light_ax: '#c93400', + dark_ax: '#ffb340', }, }, }, - 'color.systemPurple': { - '_original': { - '$name': 'Purple', - '$value': '#af52de', - '$extensions': { + 'color.systemPink': { + _original: { + $name: 'Pink', + $value: '#ff2d55', + $extensions: { mode: { - light: '#af52de', - dark: '#bf5af2', - 'light_ax': '#8944ab', - 'dark_ax': '#da8fff', + light: '#ff2d55', + dark: '#ff375f', + light_ax: '#d30f45', + dark_ax: '#ff6482', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, - id: 'color.systemPurple', - '$type': 'color', - '$name': 'Purple', - '$value': '#af52de', - '$extensions': { + id: 'color.systemPink', + $type: 'color', + $name: 'Pink', + $value: '#ff2d55', + $extensions: { mode: { - light: '#af52de', - dark: '#bf5af2', - 'light_ax': '#8944ab', - 'dark_ax': '#da8fff', + light: '#ff2d55', + dark: '#ff375f', + light_ax: '#d30f45', + dark_ax: '#ff6482', }, }, }, - 'color.systemPink': { - '_original': { - '$name': 'Pink', - '$value': '#ff2d55', - '$extensions': { + 'color.systemPurple': { + _original: { + $name: 'Purple', + $value: '#af52de', + $extensions: { mode: { - light: '#ff2d55', - dark: '#ff375f', - 'light_ax': '#d30f45', - 'dark_ax': '#ff6482', + light: '#af52de', + dark: '#bf5af2', + light_ax: '#8944ab', + dark_ax: '#da8fff', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, - id: 'color.systemPink', - '$type': 'color', - '$name': 'Pink', - '$value': '#ff2d55', - '$extensions': { + id: 'color.systemPurple', + $type: 'color', + $name: 'Purple', + $value: '#af52de', + $extensions: { mode: { - light: '#ff2d55', - dark: '#ff375f', - 'light_ax': '#d30f45', - 'dark_ax': '#ff6482', + light: '#af52de', + dark: '#bf5af2', + light_ax: '#8944ab', + dark_ax: '#da8fff', }, }, }, 'color.systemRed': { - '_original': { - '$name': 'Red', - '$value': '#ff3b30', - '$extensions': { + _original: { + $name: 'Red', + $value: '#ff3b30', + $extensions: { mode: { light: '#ff3b30', dark: '#ff453a', - 'light_ax': '#d70015', - 'dark_ax': '#ff6961', + light_ax: '#d70015', + dark_ax: '#ff6961', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemRed', - '$type': 'color', - '$name': 'Red', - '$value': '#ff3b30', - '$extensions': { + $type: 'color', + $name: 'Red', + $value: '#ff3b30', + $extensions: { mode: { light: '#ff3b30', dark: '#ff453a', - 'light_ax': '#d70015', - 'dark_ax': '#ff6961', + light_ax: '#d70015', + dark_ax: '#ff6961', }, }, }, 'color.systemTeal': { - '_original': { - '$name': 'Teal', - '$value': '#30b0c7', - '$extensions': { + _original: { + $name: 'Teal', + $value: '#30b0c7', + $extensions: { mode: { light: '#30b0c7', dark: '#40c8e0', - 'light_ax': '#008299', - 'dark_ax': '#5de6ff', + light_ax: '#008299', + dark_ax: '#5de6ff', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemTeal', - '$type': 'color', - '$name': 'Teal', - '$value': '#30b0c7', - '$extensions': { + $type: 'color', + $name: 'Teal', + $value: '#30b0c7', + $extensions: { mode: { light: '#30b0c7', dark: '#40c8e0', - 'light_ax': '#008299', - 'dark_ax': '#5de6ff', + light_ax: '#008299', + dark_ax: '#5de6ff', }, }, }, 'color.systemYellow': { - '_original': { - '$name': 'Yellow', - '$value': '#ffcc00', - '$extensions': { + _original: { + $name: 'Yellow', + $value: '#ffcc00', + $extensions: { mode: { light: '#ffcc00', dark: '#ffd60a', - 'light_ax': '#b25000', - 'dark_ax': '#ffd426', + light_ax: '#b25000', + dark_ax: '#ffd426', }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: ['light', 'dark', 'light_ax', 'dark_ax'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'color', + $name: 'Apple Human Interface Guidelines', + $type: 'color', }, id: 'color.systemYellow', - '$type': 'color', - '$name': 'Yellow', - '$value': '#ffcc00', - '$extensions': { + $type: 'color', + $name: 'Yellow', + $value: '#ffcc00', + $extensions: { mode: { light: '#ffcc00', dark: '#ffd60a', - 'light_ax': '#b25000', - 'dark_ax': '#ffd426', + light_ax: '#b25000', + dark_ax: '#ffd426', }, }, }, - 'font.family.sfPro': { - '_original': { - '$value': 'SF Pro', + 'font.family.newYork': { + _original: { + $value: 'New York', }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'fontFamily', + $name: 'Apple Human Interface Guidelines', + $type: 'fontFamily', }, - id: 'font.family.sfPro', - '$type': 'fontFamily', - '$value': ['SF Pro'], + id: 'font.family.newYork', + $type: 'fontFamily', + $value: ['New York'], }, - 'font.family.sfProRounded': { - '_original': { - '$value': 'SF Pro Rounded', + 'font.family.sfCompact': { + _original: { + $value: 'SF Compact', }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'fontFamily', + $name: 'Apple Human Interface Guidelines', + $type: 'fontFamily', }, - id: 'font.family.sfProRounded', - '$type': 'fontFamily', - '$value': ['SF Pro Rounded'], + id: 'font.family.sfCompact', + $type: 'fontFamily', + $value: ['SF Compact'], }, - 'font.family.sfCompact': { - '_original': { - '$value': 'SF Compact', + 'font.family.sfMono': { + _original: { + $value: 'SF Mono', }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'fontFamily', + $name: 'Apple Human Interface Guidelines', + $type: 'fontFamily', }, - id: 'font.family.sfCompact', - '$type': 'fontFamily', - '$value': ['SF Compact'], + id: 'font.family.sfMono', + $type: 'fontFamily', + $value: ['SF Mono'], }, - 'font.family.sfMono': { - '_original': { - '$value': 'SF Mono', + 'font.family.sfPro': { + _original: { + $value: 'SF Pro', }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'fontFamily', + $name: 'Apple Human Interface Guidelines', + $type: 'fontFamily', }, - id: 'font.family.sfMono', - '$type': 'fontFamily', - '$value': ['SF Mono'], + id: 'font.family.sfPro', + $type: 'fontFamily', + $value: ['SF Pro'], }, - 'font.family.newYork': { - '_original': { - '$value': 'New York', + 'font.family.sfProRounded': { + _original: { + $value: 'SF Pro Rounded', }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'fontFamily', + $name: 'Apple Human Interface Guidelines', + $type: 'fontFamily', }, - id: 'font.family.newYork', - '$type': 'fontFamily', - '$value': ['New York'], + id: 'font.family.sfProRounded', + $type: 'fontFamily', + $value: ['SF Pro Rounded'], }, - 'font.style.largeTitle': { - '_original': { - '$value': { - fontSize: '34px', + 'font.style.body': { + _original: { + $value: { + fontSize: '17px', fontWeight: 400, - lineHeight: '41px', + lineHeight: '22px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '31px', - lineHeight: '38px', + fontSize: '14px', + lineHeight: '19px', }, Small: { - fontSize: '32px', - lineHeight: '39px', + fontSize: '15px', + lineHeight: '20px', }, Medium: { - fontSize: '33px', - lineHeight: '40px', + fontSize: '16px', + lineHeight: '21px', }, Large: { - fontSize: '34px', - lineHeight: '41px', + fontSize: '17px', + lineHeight: '22px', }, xLarge: { - fontSize: '36px', - lineHeight: '43px', + fontSize: '19px', + lineHeight: '24px', }, xxLarge: { - fontSize: '38px', - lineHeight: '46px', + fontSize: '21px', + lineHeight: '26px', }, xxxLarge: { - fontSize: '40px', - lineHeight: '48px', + fontSize: '23px', + lineHeight: '29px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.largeTitle', - '$type': 'typography', - '$value': { - fontSize: '34px', + id: 'font.style.body', + $type: 'typography', + $value: { + fontSize: '17px', fontWeight: 400, - lineHeight: '41px', + lineHeight: '22px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '31px', - lineHeight: '38px', + fontSize: '14px', + lineHeight: '19px', }, Small: { - fontSize: '32px', - lineHeight: '39px', + fontSize: '15px', + lineHeight: '20px', }, Medium: { - fontSize: '33px', - lineHeight: '40px', + fontSize: '16px', + lineHeight: '21px', }, Large: { - fontSize: '34px', - lineHeight: '41px', + fontSize: '17px', + lineHeight: '22px', }, xLarge: { - fontSize: '36px', - lineHeight: '43px', + fontSize: '19px', + lineHeight: '24px', }, xxLarge: { - fontSize: '38px', - lineHeight: '46px', + fontSize: '21px', + lineHeight: '26px', }, xxxLarge: { - fontSize: '40px', - lineHeight: '48px', + fontSize: '23px', + lineHeight: '29px', }, }, }, }, - 'font.style.title1': { - '_original': { - '$value': { - fontSize: '28px', + 'font.style.callout': { + _original: { + $value: { + fontSize: '16px', fontWeight: 400, - lineHeight: '34px', + lineHeight: '21px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '25px', - lineHeight: '31px', + fontSize: '13px', + lineHeight: '18px', }, Small: { - fontSize: '26px', - lineHeight: '32px', + fontSize: '14px', + lineHeight: '19px', }, Medium: { - fontSize: '27px', - lineHeight: '33px', + fontSize: '15px', + lineHeight: '20px', }, Large: { - fontSize: '28px', - lineHeight: '34px', + fontSize: '16px', + lineHeight: '21px', }, xLarge: { - fontSize: '30px', - lineHeight: '37px', + fontSize: '18px', + lineHeight: '23px', }, xxLarge: { - fontSize: '32px', - lineHeight: '39px', + fontSize: '20px', + lineHeight: '25px', }, xxxLarge: { - fontSize: '32px', - lineHeight: '41px', + fontSize: '22px', + lineHeight: '28px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.title1', - '$type': 'typography', - '$value': { - fontSize: '28px', + id: 'font.style.callout', + $type: 'typography', + $value: { + fontSize: '16px', fontWeight: 400, - lineHeight: '34px', + lineHeight: '21px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '25px', - lineHeight: '31px', + fontSize: '13px', + lineHeight: '18px', }, Small: { - fontSize: '26px', - lineHeight: '32px', + fontSize: '14px', + lineHeight: '19px', }, Medium: { - fontSize: '27px', - lineHeight: '33px', + fontSize: '15px', + lineHeight: '20px', }, Large: { - fontSize: '28px', - lineHeight: '34px', + fontSize: '16px', + lineHeight: '21px', }, xLarge: { - fontSize: '30px', - lineHeight: '37px', + fontSize: '18px', + lineHeight: '23px', }, xxLarge: { - fontSize: '32px', - lineHeight: '39px', + fontSize: '20px', + lineHeight: '25px', }, xxxLarge: { - fontSize: '32px', - lineHeight: '41px', + fontSize: '22px', + lineHeight: '28px', }, }, }, }, - 'font.style.title2': { - '_original': { - '$value': { - fontSize: '22px', + 'font.style.caption_2': { + _original: { + $value: { + fontSize: '11px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '13px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '19px', - lineHeight: '24px', + fontSize: '11px', + lineHeight: '13px', }, Small: { - fontSize: '20px', - lineHeight: '25px', + fontSize: '11px', + lineHeight: '13px', }, Medium: { - fontSize: '21px', - lineHeight: '26px', + fontSize: '11px', + lineHeight: '13px', }, Large: { - fontSize: '22px', - lineHeight: '28px', + fontSize: '11px', + lineHeight: '13px', }, xLarge: { - fontSize: '24px', - lineHeight: '30px', + fontSize: '13px', + lineHeight: '18px', }, xxLarge: { - fontSize: '26px', - lineHeight: '32px', + fontSize: '15px', + lineHeight: '20px', }, xxxLarge: { - fontSize: '28px', - lineHeight: '34px', + fontSize: '17px', + lineHeight: '22px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.title2', - '$type': 'typography', - '$value': { - fontSize: '22px', + id: 'font.style.caption_2', + $type: 'typography', + $value: { + fontSize: '11px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '13px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '19px', - lineHeight: '24px', + fontSize: '11px', + lineHeight: '13px', }, Small: { - fontSize: '20px', - lineHeight: '25px', + fontSize: '11px', + lineHeight: '13px', }, Medium: { - fontSize: '21px', - lineHeight: '26px', + fontSize: '11px', + lineHeight: '13px', }, Large: { - fontSize: '22px', - lineHeight: '28px', + fontSize: '11px', + lineHeight: '13px', }, xLarge: { - fontSize: '24px', - lineHeight: '30px', + fontSize: '13px', + lineHeight: '18px', }, xxLarge: { - fontSize: '26px', - lineHeight: '32px', + fontSize: '15px', + lineHeight: '20px', }, xxxLarge: { - fontSize: '28px', - lineHeight: '34px', + fontSize: '17px', + lineHeight: '22px', }, }, }, }, - 'font.style.title3': { - '_original': { - '$value': { - fontSize: '20px', + 'font.style.caption1': { + _original: { + $value: { + fontSize: '12px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '16px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '25px', - lineHeight: '22px', + fontSize: '11px', + lineHeight: '13px', }, Small: { - fontSize: '26px', - lineHeight: '23px', + fontSize: '11px', + lineHeight: '13px', }, Medium: { - fontSize: '27px', - lineHeight: '24px', + fontSize: '11px', + lineHeight: '13px', }, Large: { - fontSize: '28px', - lineHeight: '25px', + fontSize: '12px', + lineHeight: '16px', }, xLarge: { - fontSize: '30px', - lineHeight: '28px', + fontSize: '14px', + lineHeight: '19px', }, xxLarge: { - fontSize: '32px', - lineHeight: '30px', + fontSize: '16px', + lineHeight: '18px', }, xxxLarge: { - fontSize: '32px', - lineHeight: '32px', + fontSize: '23px', + lineHeight: '21px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.title3', - '$type': 'typography', - '$value': { - fontSize: '20px', + id: 'font.style.caption1', + $type: 'typography', + $value: { + fontSize: '12px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '16px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '25px', - lineHeight: '22px', + fontSize: '11px', + lineHeight: '13px', }, Small: { - fontSize: '26px', - lineHeight: '23px', + fontSize: '11px', + lineHeight: '13px', }, Medium: { - fontSize: '27px', - lineHeight: '24px', + fontSize: '11px', + lineHeight: '13px', }, Large: { - fontSize: '28px', - lineHeight: '25px', + fontSize: '12px', + lineHeight: '16px', }, xLarge: { - fontSize: '30px', - lineHeight: '28px', + fontSize: '14px', + lineHeight: '19px', }, xxLarge: { - fontSize: '32px', - lineHeight: '30px', + fontSize: '16px', + lineHeight: '18px', }, xxxLarge: { - fontSize: '32px', - lineHeight: '32px', + fontSize: '23px', + lineHeight: '21px', }, }, }, }, - 'font.style.headline': { - '_original': { - '$value': { - fontSize: '17px', - fontWeight: 600, - lineHeight: '22px', + 'font.style.footnote': { + _original: { + $value: { + fontSize: '13px', + fontWeight: 400, + lineHeight: '18px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '14px', - lineHeight: '19px', + fontSize: '12px', + lineHeight: '16px', }, Small: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '12px', + lineHeight: '16px', }, Medium: { - fontSize: '16px', - lineHeight: '21px', + fontSize: '12px', + lineHeight: '16px', }, Large: { - fontSize: '17px', - lineHeight: '22px', + fontSize: '13px', + lineHeight: '18px', }, xLarge: { - fontSize: '19px', - lineHeight: '24px', + fontSize: '15px', + lineHeight: '20px', }, xxLarge: { - fontSize: '21px', - lineHeight: '26px', + fontSize: '17px', + lineHeight: '22px', }, xxxLarge: { - fontSize: '23px', - lineHeight: '29px', + fontSize: '19px', + lineHeight: '24px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.headline', - '$type': 'typography', - '$value': { - fontSize: '17px', - fontWeight: 600, - lineHeight: '22px', + id: 'font.style.footnote', + $type: 'typography', + $value: { + fontSize: '13px', + fontWeight: 400, + lineHeight: '18px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '14px', - lineHeight: '19px', + fontSize: '12px', + lineHeight: '16px', }, Small: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '12px', + lineHeight: '16px', }, Medium: { - fontSize: '16px', - lineHeight: '21px', + fontSize: '12px', + lineHeight: '16px', }, Large: { - fontSize: '17px', - lineHeight: '22px', + fontSize: '13px', + lineHeight: '18px', }, xLarge: { - fontSize: '19px', - lineHeight: '24px', + fontSize: '15px', + lineHeight: '20px', }, xxLarge: { - fontSize: '21px', - lineHeight: '26px', + fontSize: '17px', + lineHeight: '22px', }, xxxLarge: { - fontSize: '23px', - lineHeight: '29px', + fontSize: '19px', + lineHeight: '24px', }, }, }, }, - 'font.style.body': { - '_original': { - '$value': { + 'font.style.headline': { + _original: { + $value: { fontSize: '17px', - fontWeight: 400, + fontWeight: 600, lineHeight: '22px', }, - '$extensions': { + $extensions: { mode: { xSmall: { fontSize: '14px', @@ -1258,22 +1258,22 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.body', - '$type': 'typography', - '$value': { + id: 'font.style.headline', + $type: 'typography', + $value: { fontSize: '17px', - fontWeight: 400, + fontWeight: 600, lineHeight: '22px', }, - '$extensions': { + $extensions: { mode: { xSmall: { fontSize: '14px', @@ -1306,102 +1306,102 @@ export const meta = { }, }, }, - 'font.style.callout': { - '_original': { - '$value': { - fontSize: '16px', + 'font.style.largeTitle': { + _original: { + $value: { + fontSize: '34px', fontWeight: 400, - lineHeight: '21px', + lineHeight: '41px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '13px', - lineHeight: '18px', + fontSize: '31px', + lineHeight: '38px', }, Small: { - fontSize: '14px', - lineHeight: '19px', + fontSize: '32px', + lineHeight: '39px', }, Medium: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '33px', + lineHeight: '40px', }, Large: { - fontSize: '16px', - lineHeight: '21px', + fontSize: '34px', + lineHeight: '41px', }, xLarge: { - fontSize: '18px', - lineHeight: '23px', + fontSize: '36px', + lineHeight: '43px', }, xxLarge: { - fontSize: '20px', - lineHeight: '25px', + fontSize: '38px', + lineHeight: '46px', }, xxxLarge: { - fontSize: '22px', - lineHeight: '28px', + fontSize: '40px', + lineHeight: '48px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.callout', - '$type': 'typography', - '$value': { - fontSize: '16px', + id: 'font.style.largeTitle', + $type: 'typography', + $value: { + fontSize: '34px', fontWeight: 400, - lineHeight: '21px', + lineHeight: '41px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '13px', - lineHeight: '18px', + fontSize: '31px', + lineHeight: '38px', }, Small: { - fontSize: '14px', - lineHeight: '19px', + fontSize: '32px', + lineHeight: '39px', }, Medium: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '33px', + lineHeight: '40px', }, Large: { - fontSize: '16px', - lineHeight: '21px', + fontSize: '34px', + lineHeight: '41px', }, xLarge: { - fontSize: '18px', - lineHeight: '23px', + fontSize: '36px', + lineHeight: '43px', }, xxLarge: { - fontSize: '20px', - lineHeight: '25px', + fontSize: '38px', + lineHeight: '46px', }, xxxLarge: { - fontSize: '22px', - lineHeight: '28px', + fontSize: '40px', + lineHeight: '48px', }, }, }, }, 'font.style.subhead': { - '_original': { - '$value': { + _original: { + $value: { fontSize: '15px', fontWeight: 400, lineHeight: '20px', }, - '$extensions': { + $extensions: { mode: { xSmall: { fontSize: '12px', @@ -1434,22 +1434,22 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, id: 'font.style.subhead', - '$type': 'typography', - '$value': { + $type: 'typography', + $value: { fontSize: '15px', fontWeight: 400, lineHeight: '20px', }, - '$extensions': { + $extensions: { mode: { xSmall: { fontSize: '12px', @@ -1482,266 +1482,266 @@ export const meta = { }, }, }, - 'font.style.footnote': { - '_original': { - '$value': { - fontSize: '13px', + 'font.style.title1': { + _original: { + $value: { + fontSize: '28px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '34px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '25px', + lineHeight: '31px', }, Small: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '26px', + lineHeight: '32px', }, Medium: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '27px', + lineHeight: '33px', }, Large: { - fontSize: '13px', - lineHeight: '18px', + fontSize: '28px', + lineHeight: '34px', }, xLarge: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '30px', + lineHeight: '37px', }, xxLarge: { - fontSize: '17px', - lineHeight: '22px', + fontSize: '32px', + lineHeight: '39px', }, xxxLarge: { - fontSize: '19px', - lineHeight: '24px', + fontSize: '32px', + lineHeight: '41px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.footnote', - '$type': 'typography', - '$value': { - fontSize: '13px', + id: 'font.style.title1', + $type: 'typography', + $value: { + fontSize: '28px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '34px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '25px', + lineHeight: '31px', }, Small: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '26px', + lineHeight: '32px', }, Medium: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '27px', + lineHeight: '33px', }, Large: { - fontSize: '13px', - lineHeight: '18px', + fontSize: '28px', + lineHeight: '34px', }, xLarge: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '30px', + lineHeight: '37px', }, xxLarge: { - fontSize: '17px', - lineHeight: '22px', + fontSize: '32px', + lineHeight: '39px', }, xxxLarge: { - fontSize: '19px', - lineHeight: '24px', + fontSize: '32px', + lineHeight: '41px', }, }, }, }, - 'font.style.caption1': { - '_original': { - '$value': { - fontSize: '12px', + 'font.style.title2': { + _original: { + $value: { + fontSize: '22px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '25px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '19px', + lineHeight: '24px', }, Small: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '20px', + lineHeight: '25px', }, Medium: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '21px', + lineHeight: '26px', }, Large: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '22px', + lineHeight: '28px', }, xLarge: { - fontSize: '14px', - lineHeight: '19px', + fontSize: '24px', + lineHeight: '30px', }, xxLarge: { - fontSize: '16px', - lineHeight: '18px', + fontSize: '26px', + lineHeight: '32px', }, xxxLarge: { - fontSize: '23px', - lineHeight: '21px', + fontSize: '28px', + lineHeight: '34px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.caption1', - '$type': 'typography', - '$value': { - fontSize: '12px', + id: 'font.style.title2', + $type: 'typography', + $value: { + fontSize: '22px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '25px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '19px', + lineHeight: '24px', }, Small: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '20px', + lineHeight: '25px', }, Medium: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '21px', + lineHeight: '26px', }, Large: { - fontSize: '12px', - lineHeight: '16px', + fontSize: '22px', + lineHeight: '28px', }, xLarge: { - fontSize: '14px', - lineHeight: '19px', + fontSize: '24px', + lineHeight: '30px', }, xxLarge: { - fontSize: '16px', - lineHeight: '18px', + fontSize: '26px', + lineHeight: '32px', }, xxxLarge: { - fontSize: '23px', - lineHeight: '21px', + fontSize: '28px', + lineHeight: '34px', }, }, }, }, - 'font.style.caption_2': { - '_original': { - '$value': { - fontSize: '11px', + 'font.style.title3': { + _original: { + $value: { + fontSize: '20px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '25px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '25px', + lineHeight: '22px', }, Small: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '26px', + lineHeight: '23px', }, Medium: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '27px', + lineHeight: '24px', }, Large: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '28px', + lineHeight: '25px', }, xLarge: { - fontSize: '13px', - lineHeight: '18px', + fontSize: '30px', + lineHeight: '28px', }, xxLarge: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '32px', + lineHeight: '30px', }, xxxLarge: { - fontSize: '17px', - lineHeight: '22px', + fontSize: '32px', + lineHeight: '32px', }, }, }, }, - '_group': { + _group: { id: 'font.style', - '$extensions': { + $extensions: { requiredModes: ['xSmall', 'Small', 'Medium', 'Large', 'xLarge', 'xxLarge', 'xxxLarge'], }, - '$name': 'Apple Human Interface Guidelines', - '$type': 'typography', + $name: 'Apple Human Interface Guidelines', + $type: 'typography', }, - id: 'font.style.caption_2', - '$type': 'typography', - '$value': { - fontSize: '11px', + id: 'font.style.title3', + $type: 'typography', + $value: { + fontSize: '20px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '25px', }, - '$extensions': { + $extensions: { mode: { xSmall: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '25px', + lineHeight: '22px', }, Small: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '26px', + lineHeight: '23px', }, Medium: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '27px', + lineHeight: '24px', }, Large: { - fontSize: '11px', - lineHeight: '13px', + fontSize: '28px', + lineHeight: '25px', }, xLarge: { - fontSize: '13px', - lineHeight: '18px', + fontSize: '30px', + lineHeight: '28px', }, xxLarge: { - fontSize: '15px', - lineHeight: '20px', + fontSize: '32px', + lineHeight: '30px', }, xxxLarge: { - fontSize: '17px', - lineHeight: '22px', + fontSize: '32px', + lineHeight: '32px', }, }, }, @@ -1752,257 +1752,294 @@ export const modes = { 'color.systemBlue': { light: '#007aff', dark: '#0a84ff', - 'light_ax': '#0040dd', - 'dark_ax': '#409cff', + light_ax: '#0040dd', + dark_ax: '#409cff', }, 'color.systemBrown': { light: '#a2845e', dark: '#ac8e68', - 'light_ax': '#7f6545', - 'dark_ax': '#b59469', + light_ax: '#7f6545', + dark_ax: '#b59469', }, 'color.systemCyan': { light: '#32ade6', dark: '#64d2ff', - 'light_ax': '#0071a4', - 'dark_ax': '#70d7ff', + light_ax: '#0071a4', + dark_ax: '#70d7ff', }, 'color.systemGray': { light: '#8e8e93', dark: '#8e8e93', - 'light_ax': '#6c6c70', - 'dark_ax': '#aeaeb2', + light_ax: '#6c6c70', + dark_ax: '#aeaeb2', }, 'color.systemGray2': { light: '#aeaeb2', dark: '#636366', - 'light_ax': '#8e8e93', - 'dark_ax': '#7c7c80', + light_ax: '#8e8e93', + dark_ax: '#7c7c80', }, 'color.systemGray3': { light: '#c7c7cc', dark: '#48484a', - 'light_ax': '#aeaeb2', - 'dark_ax': '#545456', + light_ax: '#aeaeb2', + dark_ax: '#545456', }, 'color.systemGray4': { light: '#d1d1d6', dark: '#3a3a3c', - 'light_ax': '#bcbcc0', - 'dark_ax': '#444446', + light_ax: '#bcbcc0', + dark_ax: '#444446', }, 'color.systemGray5': { light: '#e5e5ea', dark: '#2c2c2e', - 'light_ax': '#d8d8dc', - 'dark_ax': '#363638', + light_ax: '#d8d8dc', + dark_ax: '#363638', }, 'color.systemGray6': { light: '#f2f2f7', dark: '#1c1c1e', - 'light_ax': '#ebebf0', - 'dark_ax': '#242426', + light_ax: '#ebebf0', + dark_ax: '#242426', }, 'color.systemGreen': { light: '#34c759', dark: '#30d158', - 'light_ax': '#248a3d', - 'dark_ax': '#30db5b', + light_ax: '#248a3d', + dark_ax: '#30db5b', }, 'color.systemIndigo': { light: '#5856d6', dark: '#5e5ce6', - 'light_ax': '#3634a3', - 'dark_ax': '#7d7aff', + light_ax: '#3634a3', + dark_ax: '#7d7aff', }, 'color.systemMint': { light: '#00c7be', dark: '#66d4cf', - 'light_ax': '#0c817b', - 'dark_ax': '#66d4cf', + light_ax: '#0c817b', + dark_ax: '#66d4cf', }, 'color.systemOrange': { light: '#ff9500', dark: '#ff9f0a', - 'light_ax': '#c93400', - 'dark_ax': '#ffb340', - }, - 'color.systemPurple': { - light: '#af52de', - dark: '#bf5af2', - 'light_ax': '#8944ab', - 'dark_ax': '#da8fff', + light_ax: '#c93400', + dark_ax: '#ffb340', }, 'color.systemPink': { light: '#ff2d55', dark: '#ff375f', - 'light_ax': '#d30f45', - 'dark_ax': '#ff6482', + light_ax: '#d30f45', + dark_ax: '#ff6482', + }, + 'color.systemPurple': { + light: '#af52de', + dark: '#bf5af2', + light_ax: '#8944ab', + dark_ax: '#da8fff', }, 'color.systemRed': { light: '#ff3b30', dark: '#ff453a', - 'light_ax': '#d70015', - 'dark_ax': '#ff6961', + light_ax: '#d70015', + dark_ax: '#ff6961', }, 'color.systemTeal': { light: '#30b0c7', dark: '#40c8e0', - 'light_ax': '#008299', - 'dark_ax': '#5de6ff', + light_ax: '#008299', + dark_ax: '#5de6ff', }, 'color.systemYellow': { light: '#ffcc00', dark: '#ffd60a', - 'light_ax': '#b25000', - 'dark_ax': '#ffd426', + light_ax: '#b25000', + dark_ax: '#ffd426', }, - 'font.style.largeTitle': { + 'font.style.body': { xSmall: { - fontSize: '31px', + fontSize: '14px', fontWeight: 400, - lineHeight: '38px', + lineHeight: '19px', }, Small: { - fontSize: '32px', + fontSize: '15px', fontWeight: 400, - lineHeight: '39px', + lineHeight: '20px', }, Medium: { - fontSize: '33px', + fontSize: '16px', fontWeight: 400, - lineHeight: '40px', + lineHeight: '21px', }, Large: { - fontSize: '34px', + fontSize: '17px', fontWeight: 400, - lineHeight: '41px', + lineHeight: '22px', }, xLarge: { - fontSize: '36px', + fontSize: '19px', fontWeight: 400, - lineHeight: '43px', + lineHeight: '24px', + }, + xxLarge: { + fontSize: '21px', + fontWeight: 400, + lineHeight: '26px', + }, + xxxLarge: { + fontSize: '23px', + fontWeight: 400, + lineHeight: '29px', + }, + }, + 'font.style.callout': { + xSmall: { + fontSize: '13px', + fontWeight: 400, + lineHeight: '18px', + }, + Small: { + fontSize: '14px', + fontWeight: 400, + lineHeight: '19px', + }, + Medium: { + fontSize: '15px', + fontWeight: 400, + lineHeight: '20px', + }, + Large: { + fontSize: '16px', + fontWeight: 400, + lineHeight: '21px', + }, + xLarge: { + fontSize: '18px', + fontWeight: 400, + lineHeight: '23px', }, xxLarge: { - fontSize: '38px', + fontSize: '20px', fontWeight: 400, - lineHeight: '46px', + lineHeight: '25px', }, xxxLarge: { - fontSize: '40px', + fontSize: '22px', fontWeight: 400, - lineHeight: '48px', + lineHeight: '28px', }, }, - 'font.style.title1': { + 'font.style.caption_2': { xSmall: { - fontSize: '25px', + fontSize: '11px', fontWeight: 400, - lineHeight: '31px', + lineHeight: '13px', }, Small: { - fontSize: '26px', + fontSize: '11px', fontWeight: 400, - lineHeight: '32px', + lineHeight: '13px', }, Medium: { - fontSize: '27px', + fontSize: '11px', fontWeight: 400, - lineHeight: '33px', + lineHeight: '13px', }, Large: { - fontSize: '28px', + fontSize: '11px', fontWeight: 400, - lineHeight: '34px', + lineHeight: '13px', }, xLarge: { - fontSize: '30px', + fontSize: '13px', fontWeight: 400, - lineHeight: '37px', + lineHeight: '18px', }, xxLarge: { - fontSize: '32px', + fontSize: '15px', fontWeight: 400, - lineHeight: '39px', + lineHeight: '20px', }, xxxLarge: { - fontSize: '32px', + fontSize: '17px', fontWeight: 400, - lineHeight: '41px', + lineHeight: '22px', }, }, - 'font.style.title2': { + 'font.style.caption1': { xSmall: { - fontSize: '19px', + fontSize: '11px', fontWeight: 400, - lineHeight: '24px', + lineHeight: '13px', }, Small: { - fontSize: '20px', + fontSize: '11px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '13px', }, Medium: { - fontSize: '21px', + fontSize: '11px', fontWeight: 400, - lineHeight: '26px', + lineHeight: '13px', }, Large: { - fontSize: '22px', + fontSize: '12px', fontWeight: 400, - lineHeight: '28px', + lineHeight: '16px', }, xLarge: { - fontSize: '24px', + fontSize: '14px', fontWeight: 400, - lineHeight: '30px', + lineHeight: '19px', }, xxLarge: { - fontSize: '26px', + fontSize: '16px', fontWeight: 400, - lineHeight: '32px', + lineHeight: '18px', }, xxxLarge: { - fontSize: '28px', + fontSize: '23px', fontWeight: 400, - lineHeight: '34px', + lineHeight: '21px', }, }, - 'font.style.title3': { + 'font.style.footnote': { xSmall: { - fontSize: '25px', + fontSize: '12px', fontWeight: 400, - lineHeight: '22px', + lineHeight: '16px', }, Small: { - fontSize: '26px', + fontSize: '12px', fontWeight: 400, - lineHeight: '23px', + lineHeight: '16px', }, Medium: { - fontSize: '27px', + fontSize: '12px', fontWeight: 400, - lineHeight: '24px', + lineHeight: '16px', }, Large: { - fontSize: '28px', + fontSize: '13px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '18px', }, xLarge: { - fontSize: '30px', + fontSize: '15px', fontWeight: 400, - lineHeight: '28px', + lineHeight: '20px', }, xxLarge: { - fontSize: '32px', + fontSize: '17px', fontWeight: 400, - lineHeight: '30px', + lineHeight: '22px', }, xxxLarge: { - fontSize: '32px', + fontSize: '19px', fontWeight: 400, - lineHeight: '32px', + lineHeight: '24px', }, }, 'font.style.headline': { @@ -2042,78 +2079,41 @@ export const modes = { lineHeight: '29px', }, }, - 'font.style.body': { - xSmall: { - fontSize: '14px', - fontWeight: 400, - lineHeight: '19px', - }, - Small: { - fontSize: '15px', - fontWeight: 400, - lineHeight: '20px', - }, - Medium: { - fontSize: '16px', - fontWeight: 400, - lineHeight: '21px', - }, - Large: { - fontSize: '17px', - fontWeight: 400, - lineHeight: '22px', - }, - xLarge: { - fontSize: '19px', - fontWeight: 400, - lineHeight: '24px', - }, - xxLarge: { - fontSize: '21px', - fontWeight: 400, - lineHeight: '26px', - }, - xxxLarge: { - fontSize: '23px', - fontWeight: 400, - lineHeight: '29px', - }, - }, - 'font.style.callout': { + 'font.style.largeTitle': { xSmall: { - fontSize: '13px', + fontSize: '31px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '38px', }, Small: { - fontSize: '14px', + fontSize: '32px', fontWeight: 400, - lineHeight: '19px', + lineHeight: '39px', }, Medium: { - fontSize: '15px', + fontSize: '33px', fontWeight: 400, - lineHeight: '20px', + lineHeight: '40px', }, Large: { - fontSize: '16px', + fontSize: '34px', fontWeight: 400, - lineHeight: '21px', + lineHeight: '41px', }, xLarge: { - fontSize: '18px', + fontSize: '36px', fontWeight: 400, - lineHeight: '23px', + lineHeight: '43px', }, xxLarge: { - fontSize: '20px', + fontSize: '38px', fontWeight: 400, - lineHeight: '25px', + lineHeight: '46px', }, xxxLarge: { - fontSize: '22px', + fontSize: '40px', fontWeight: 400, - lineHeight: '28px', + lineHeight: '48px', }, }, 'font.style.subhead': { @@ -2153,115 +2153,115 @@ export const modes = { lineHeight: '28px', }, }, - 'font.style.footnote': { + 'font.style.title1': { xSmall: { - fontSize: '12px', + fontSize: '25px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '31px', }, Small: { - fontSize: '12px', + fontSize: '26px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '32px', }, Medium: { - fontSize: '12px', + fontSize: '27px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '33px', }, Large: { - fontSize: '13px', + fontSize: '28px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '34px', }, xLarge: { - fontSize: '15px', + fontSize: '30px', fontWeight: 400, - lineHeight: '20px', + lineHeight: '37px', }, xxLarge: { - fontSize: '17px', + fontSize: '32px', fontWeight: 400, - lineHeight: '22px', + lineHeight: '39px', }, xxxLarge: { - fontSize: '19px', + fontSize: '32px', fontWeight: 400, - lineHeight: '24px', + lineHeight: '41px', }, }, - 'font.style.caption1': { + 'font.style.title2': { xSmall: { - fontSize: '11px', + fontSize: '19px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '24px', }, Small: { - fontSize: '11px', + fontSize: '20px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '25px', }, Medium: { - fontSize: '11px', + fontSize: '21px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '26px', }, Large: { - fontSize: '12px', + fontSize: '22px', fontWeight: 400, - lineHeight: '16px', + lineHeight: '28px', }, xLarge: { - fontSize: '14px', + fontSize: '24px', fontWeight: 400, - lineHeight: '19px', + lineHeight: '30px', }, xxLarge: { - fontSize: '16px', + fontSize: '26px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '32px', }, xxxLarge: { - fontSize: '23px', + fontSize: '28px', fontWeight: 400, - lineHeight: '21px', + lineHeight: '34px', }, }, - 'font.style.caption_2': { + 'font.style.title3': { xSmall: { - fontSize: '11px', + fontSize: '25px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '22px', }, Small: { - fontSize: '11px', + fontSize: '26px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '23px', }, Medium: { - fontSize: '11px', + fontSize: '27px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '24px', }, Large: { - fontSize: '11px', + fontSize: '28px', fontWeight: 400, - lineHeight: '13px', + lineHeight: '25px', }, xLarge: { - fontSize: '13px', + fontSize: '30px', fontWeight: 400, - lineHeight: '18px', + lineHeight: '28px', }, xxLarge: { - fontSize: '15px', + fontSize: '32px', fontWeight: 400, - lineHeight: '20px', + lineHeight: '30px', }, xxxLarge: { - fontSize: '17px', + fontSize: '32px', fontWeight: 400, - lineHeight: '22px', + lineHeight: '32px', }, }, }; diff --git a/examples/apple/tokens/index.scss b/examples/apple/tokens/index.scss index 7f5fde61..112036dc 100644 --- a/examples/apple/tokens/index.scss +++ b/examples/apple/tokens/index.scss @@ -99,13 +99,6 @@ $__token-values: ( "light_ax": (#c93400), "dark_ax": (#ffb340), ), - "color.systemPurple": ( - default: (#af52de), - "light": (#af52de), - "dark": (#bf5af2), - "light_ax": (#8944ab), - "dark_ax": (#da8fff), - ), "color.systemPink": ( default: (#ff2d55), "light": (#ff2d55), @@ -113,6 +106,13 @@ $__token-values: ( "light_ax": (#d30f45), "dark_ax": (#ff6482), ), + "color.systemPurple": ( + default: (#af52de), + "light": (#af52de), + "dark": (#bf5af2), + "light_ax": (#8944ab), + "dark_ax": (#da8fff), + ), "color.systemRed": ( default: (#ff3b30), "light": (#ff3b30), @@ -134,11 +134,8 @@ $__token-values: ( "light_ax": (#b25000), "dark_ax": (#ffd426), ), - "font.family.sfPro": ( - default: ("SF Pro"), - ), - "font.family.sfProRounded": ( - default: ("SF Pro Rounded"), + "font.family.newYork": ( + default: ("New York"), ), "font.family.sfCompact": ( default: ("SF Compact"), @@ -146,224 +143,227 @@ $__token-values: ( "font.family.sfMono": ( default: ("SF Mono"), ), - "font.family.newYork": ( - default: ("New York"), + "font.family.sfPro": ( + default: ("SF Pro"), ), - "font.style.largeTitle": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.largeTitle\")` instead.", + "font.family.sfProRounded": ( + default: ("SF Pro Rounded"), ), - "font.style.title1": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.title1\")` instead.", + "font.style.body": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.body\")` instead.", ), - "font.style.title2": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.title2\")` instead.", + "font.style.callout": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.callout\")` instead.", ), - "font.style.title3": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.title3\")` instead.", + "font.style.caption_2": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.caption_2\")` instead.", + ), + "font.style.caption1": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.caption1\")` instead.", + ), + "font.style.footnote": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.footnote\")` instead.", ), "font.style.headline": ( "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.headline\")` instead.", ), - "font.style.body": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.body\")` instead.", - ), - "font.style.callout": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.callout\")` instead.", + "font.style.largeTitle": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.largeTitle\")` instead.", ), "font.style.subhead": ( "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.subhead\")` instead.", ), - "font.style.footnote": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.footnote\")` instead.", + "font.style.title1": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.title1\")` instead.", ), - "font.style.caption1": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.caption1\")` instead.", + "font.style.title2": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.title2\")` instead.", ), - "font.style.caption_2": ( - "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.caption_2\")` instead.", + "font.style.title3": ( + "__cobalt-error": "This is a typography mixin. Use `@include typography(\"font.style.title3\")` instead.", ), ); $__token-typography-mixins: ( - "font.style.largeTitle": ( + "font.style.body": ( default: ( - "font-size": (34px), + "font-size": (17px), "font-weight": (400), - "line-height": (41px), + "line-height": (22px), ), "xSmall": ( - "font-size": (31px), - "line-height": (38px), + "font-size": (14px), + "line-height": (19px), ), "Small": ( - "font-size": (32px), - "line-height": (39px), + "font-size": (15px), + "line-height": (20px), ), "Medium": ( - "font-size": (33px), - "line-height": (40px), + "font-size": (16px), + "line-height": (21px), ), "Large": ( - "font-size": (34px), - "line-height": (41px), + "font-size": (17px), + "line-height": (22px), ), "xLarge": ( - "font-size": (36px), - "line-height": (43px), + "font-size": (19px), + "line-height": (24px), ), "xxLarge": ( - "font-size": (38px), - "line-height": (46px), + "font-size": (21px), + "line-height": (26px), ), "xxxLarge": ( - "font-size": (40px), - "line-height": (48px), + "font-size": (23px), + "line-height": (29px), ), ), - "font.style.title1": ( + "font.style.callout": ( default: ( - "font-size": (28px), + "font-size": (16px), "font-weight": (400), - "line-height": (34px), + "line-height": (21px), ), "xSmall": ( - "font-size": (25px), - "line-height": (31px), + "font-size": (13px), + "line-height": (18px), ), "Small": ( - "font-size": (26px), - "line-height": (32px), + "font-size": (14px), + "line-height": (19px), ), "Medium": ( - "font-size": (27px), - "line-height": (33px), + "font-size": (15px), + "line-height": (20px), ), "Large": ( - "font-size": (28px), - "line-height": (34px), + "font-size": (16px), + "line-height": (21px), ), "xLarge": ( - "font-size": (30px), - "line-height": (37px), + "font-size": (18px), + "line-height": (23px), ), "xxLarge": ( - "font-size": (32px), - "line-height": (39px), + "font-size": (20px), + "line-height": (25px), ), "xxxLarge": ( - "font-size": (32px), - "line-height": (41px), + "font-size": (22px), + "line-height": (28px), ), ), - "font.style.title2": ( + "font.style.caption_2": ( default: ( - "font-size": (22px), + "font-size": (11px), "font-weight": (400), - "line-height": (25px), + "line-height": (13px), ), "xSmall": ( - "font-size": (19px), - "line-height": (24px), + "font-size": (11px), + "line-height": (13px), ), "Small": ( - "font-size": (20px), - "line-height": (25px), + "font-size": (11px), + "line-height": (13px), ), "Medium": ( - "font-size": (21px), - "line-height": (26px), + "font-size": (11px), + "line-height": (13px), ), "Large": ( - "font-size": (22px), - "line-height": (28px), + "font-size": (11px), + "line-height": (13px), ), "xLarge": ( - "font-size": (24px), - "line-height": (30px), + "font-size": (13px), + "line-height": (18px), ), "xxLarge": ( - "font-size": (26px), - "line-height": (32px), + "font-size": (15px), + "line-height": (20px), ), "xxxLarge": ( - "font-size": (28px), - "line-height": (34px), + "font-size": (17px), + "line-height": (22px), ), ), - "font.style.title3": ( + "font.style.caption1": ( default: ( - "font-size": (20px), + "font-size": (12px), "font-weight": (400), - "line-height": (25px), + "line-height": (16px), ), "xSmall": ( - "font-size": (25px), - "line-height": (22px), + "font-size": (11px), + "line-height": (13px), ), "Small": ( - "font-size": (26px), - "line-height": (23px), + "font-size": (11px), + "line-height": (13px), ), "Medium": ( - "font-size": (27px), - "line-height": (24px), + "font-size": (11px), + "line-height": (13px), ), "Large": ( - "font-size": (28px), - "line-height": (25px), + "font-size": (12px), + "line-height": (16px), ), "xLarge": ( - "font-size": (30px), - "line-height": (28px), + "font-size": (14px), + "line-height": (19px), ), "xxLarge": ( - "font-size": (32px), - "line-height": (30px), + "font-size": (16px), + "line-height": (18px), ), "xxxLarge": ( - "font-size": (32px), - "line-height": (32px), + "font-size": (23px), + "line-height": (21px), ), ), - "font.style.headline": ( + "font.style.footnote": ( default: ( - "font-size": (17px), - "font-weight": (600), - "line-height": (22px), + "font-size": (13px), + "font-weight": (400), + "line-height": (18px), ), "xSmall": ( - "font-size": (14px), - "line-height": (19px), + "font-size": (12px), + "line-height": (16px), ), "Small": ( - "font-size": (15px), - "line-height": (20px), + "font-size": (12px), + "line-height": (16px), ), "Medium": ( - "font-size": (16px), - "line-height": (21px), + "font-size": (12px), + "line-height": (16px), ), "Large": ( - "font-size": (17px), - "line-height": (22px), + "font-size": (13px), + "line-height": (18px), ), "xLarge": ( - "font-size": (19px), - "line-height": (24px), + "font-size": (15px), + "line-height": (20px), ), "xxLarge": ( - "font-size": (21px), - "line-height": (26px), + "font-size": (17px), + "line-height": (22px), ), "xxxLarge": ( - "font-size": (23px), - "line-height": (29px), + "font-size": (19px), + "line-height": (24px), ), ), - "font.style.body": ( + "font.style.headline": ( default: ( "font-size": (17px), - "font-weight": (400), + "font-weight": (600), "line-height": (22px), ), "xSmall": ( @@ -395,39 +395,39 @@ $__token-typography-mixins: ( "line-height": (29px), ), ), - "font.style.callout": ( + "font.style.largeTitle": ( default: ( - "font-size": (16px), + "font-size": (34px), "font-weight": (400), - "line-height": (21px), + "line-height": (41px), ), "xSmall": ( - "font-size": (13px), - "line-height": (18px), + "font-size": (31px), + "line-height": (38px), ), "Small": ( - "font-size": (14px), - "line-height": (19px), + "font-size": (32px), + "line-height": (39px), ), "Medium": ( - "font-size": (15px), - "line-height": (20px), + "font-size": (33px), + "line-height": (40px), ), "Large": ( - "font-size": (16px), - "line-height": (21px), + "font-size": (34px), + "line-height": (41px), ), "xLarge": ( - "font-size": (18px), - "line-height": (23px), + "font-size": (36px), + "line-height": (43px), ), "xxLarge": ( - "font-size": (20px), - "line-height": (25px), + "font-size": (38px), + "line-height": (46px), ), "xxxLarge": ( - "font-size": (22px), - "line-height": (28px), + "font-size": (40px), + "line-height": (48px), ), ), "font.style.subhead": ( @@ -465,109 +465,109 @@ $__token-typography-mixins: ( "line-height": (28px), ), ), - "font.style.footnote": ( + "font.style.title1": ( default: ( - "font-size": (13px), + "font-size": (28px), "font-weight": (400), - "line-height": (18px), + "line-height": (34px), ), "xSmall": ( - "font-size": (12px), - "line-height": (16px), + "font-size": (25px), + "line-height": (31px), ), "Small": ( - "font-size": (12px), - "line-height": (16px), + "font-size": (26px), + "line-height": (32px), ), "Medium": ( - "font-size": (12px), - "line-height": (16px), + "font-size": (27px), + "line-height": (33px), ), "Large": ( - "font-size": (13px), - "line-height": (18px), + "font-size": (28px), + "line-height": (34px), ), "xLarge": ( - "font-size": (15px), - "line-height": (20px), + "font-size": (30px), + "line-height": (37px), ), "xxLarge": ( - "font-size": (17px), - "line-height": (22px), + "font-size": (32px), + "line-height": (39px), ), "xxxLarge": ( - "font-size": (19px), - "line-height": (24px), + "font-size": (32px), + "line-height": (41px), ), ), - "font.style.caption1": ( + "font.style.title2": ( default: ( - "font-size": (12px), + "font-size": (22px), "font-weight": (400), - "line-height": (16px), + "line-height": (25px), ), "xSmall": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (19px), + "line-height": (24px), ), "Small": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (20px), + "line-height": (25px), ), "Medium": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (21px), + "line-height": (26px), ), "Large": ( - "font-size": (12px), - "line-height": (16px), + "font-size": (22px), + "line-height": (28px), ), "xLarge": ( - "font-size": (14px), - "line-height": (19px), + "font-size": (24px), + "line-height": (30px), ), "xxLarge": ( - "font-size": (16px), - "line-height": (18px), + "font-size": (26px), + "line-height": (32px), ), "xxxLarge": ( - "font-size": (23px), - "line-height": (21px), + "font-size": (28px), + "line-height": (34px), ), ), - "font.style.caption_2": ( + "font.style.title3": ( default: ( - "font-size": (11px), + "font-size": (20px), "font-weight": (400), - "line-height": (13px), + "line-height": (25px), ), "xSmall": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (25px), + "line-height": (22px), ), "Small": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (26px), + "line-height": (23px), ), "Medium": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (27px), + "line-height": (24px), ), "Large": ( - "font-size": (11px), - "line-height": (13px), + "font-size": (28px), + "line-height": (25px), ), "xLarge": ( - "font-size": (13px), - "line-height": (18px), + "font-size": (30px), + "line-height": (28px), ), "xxLarge": ( - "font-size": (15px), - "line-height": (20px), + "font-size": (32px), + "line-height": (30px), ), "xxxLarge": ( - "font-size": (17px), - "line-height": (22px), + "font-size": (32px), + "line-height": (32px), ), ), ); diff --git a/examples/apple/tokens/tokens.css b/examples/apple/tokens/tokens.css index 1d21c6f6..0a95f873 100644 --- a/examples/apple/tokens/tokens.css +++ b/examples/apple/tokens/tokens.css @@ -18,19 +18,40 @@ --color-systemIndigo: #5856d6; --color-systemMint: #00c7be; --color-systemOrange: #ff9500; - --color-systemPurple: #af52de; --color-systemPink: #ff2d55; + --color-systemPurple: #af52de; --color-systemRed: #ff3b30; --color-systemTeal: #30b0c7; --color-systemYellow: #ffcc00; - --font-family-sfPro: "SF Pro"; - --font-family-sfProRounded: "SF Pro Rounded"; + --font-family-newYork: "New York"; --font-family-sfCompact: "SF Compact"; --font-family-sfMono: "SF Mono"; - --font-family-newYork: "New York"; + --font-family-sfPro: "SF Pro"; + --font-family-sfProRounded: "SF Pro Rounded"; + --font-style-body-font-size: 17px; + --font-style-body-font-weight: 400; + --font-style-body-line-height: 22px; + --font-style-callout-font-size: 16px; + --font-style-callout-font-weight: 400; + --font-style-callout-line-height: 21px; + --font-style-caption-2-font-size: 11px; + --font-style-caption-2-font-weight: 400; + --font-style-caption-2-line-height: 13px; + --font-style-caption1-font-size: 12px; + --font-style-caption1-font-weight: 400; + --font-style-caption1-line-height: 16px; + --font-style-footnote-font-size: 13px; + --font-style-footnote-font-weight: 400; + --font-style-footnote-line-height: 18px; + --font-style-headline-font-size: 17px; + --font-style-headline-font-weight: 600; + --font-style-headline-line-height: 22px; --font-style-largeTitle-font-size: 34px; --font-style-largeTitle-font-weight: 400; --font-style-largeTitle-line-height: 41px; + --font-style-subhead-font-size: 15px; + --font-style-subhead-font-weight: 400; + --font-style-subhead-line-height: 20px; --font-style-title1-font-size: 28px; --font-style-title1-font-weight: 400; --font-style-title1-line-height: 34px; @@ -40,48 +61,27 @@ --font-style-title3-font-size: 20px; --font-style-title3-font-weight: 400; --font-style-title3-line-height: 25px; - --font-style-headline-font-size: 17px; - --font-style-headline-font-weight: 600; - --font-style-headline-line-height: 22px; - --font-style-body-font-size: 17px; - --font-style-body-font-weight: 400; - --font-style-body-line-height: 22px; - --font-style-callout-font-size: 16px; - --font-style-callout-font-weight: 400; - --font-style-callout-line-height: 21px; - --font-style-subhead-font-size: 15px; - --font-style-subhead-font-weight: 400; - --font-style-subhead-line-height: 20px; - --font-style-footnote-font-size: 13px; - --font-style-footnote-font-weight: 400; - --font-style-footnote-line-height: 18px; - --font-style-caption1-font-size: 12px; - --font-style-caption1-font-weight: 400; - --font-style-caption1-line-height: 16px; - --font-style-caption-2-font-size: 11px; - --font-style-caption-2-font-weight: 400; - --font-style-caption-2-line-height: 13px; } @supports (color: color(display-p3 1 1 1)) { :root { - --color-systemBlue: color(display-p3 0 0.478431 1); - --color-systemBrown: color(display-p3 0.635294 0.517647 0.368627); - --color-systemCyan: color(display-p3 0.196078 0.678431 0.901961); - --color-systemGray: color(display-p3 0.556863 0.556863 0.576471); - --color-systemGray2: color(display-p3 0.682353 0.682353 0.698039); - --color-systemGray3: color(display-p3 0.780392 0.780392 0.8); - --color-systemGray4: color(display-p3 0.819608 0.819608 0.839216); - --color-systemGray5: color(display-p3 0.898039 0.898039 0.917647); - --color-systemGray6: color(display-p3 0.94902 0.94902 0.968627); - --color-systemGreen: color(display-p3 0.203922 0.780392 0.34902); - --color-systemIndigo: color(display-p3 0.345098 0.337255 0.839216); - --color-systemMint: color(display-p3 0 0.780392 0.745098); - --color-systemOrange: color(display-p3 1 0.584314 0); - --color-systemPurple: color(display-p3 0.686275 0.321569 0.870588); - --color-systemPink: color(display-p3 1 0.176471 0.333333); - --color-systemRed: color(display-p3 1 0.231373 0.188235); - --color-systemTeal: color(display-p3 0.188235 0.690196 0.780392); + --color-systemBlue: color(display-p3 0 0.47843137254901963 1); + --color-systemBrown: color(display-p3 0.6352941176470588 0.5176470588235295 0.3686274509803922); + --color-systemCyan: color(display-p3 0.19607843137254902 0.6784313725490196 0.9019607843137255); + --color-systemGray: color(display-p3 0.5568627450980392 0.5568627450980392 0.5764705882352941); + --color-systemGray2: color(display-p3 0.6823529411764706 0.6823529411764706 0.6980392156862745); + --color-systemGray3: color(display-p3 0.7803921568627451 0.7803921568627451 0.8); + --color-systemGray4: color(display-p3 0.8196078431372549 0.8196078431372549 0.8392156862745098); + --color-systemGray5: color(display-p3 0.8980392156862745 0.8980392156862745 0.9176470588235294); + --color-systemGray6: color(display-p3 0.9490196078431372 0.9490196078431372 0.9686274509803922); + --color-systemGreen: color(display-p3 0.20392156862745098 0.7803921568627451 0.34901960784313724); + --color-systemIndigo: color(display-p3 0.34509803921568627 0.33725490196078434 0.8392156862745098); + --color-systemMint: color(display-p3 0 0.7803921568627451 0.7450980392156863); + --color-systemOrange: color(display-p3 1 0.5843137254901961 0); + --color-systemPink: color(display-p3 1 0.17647058823529413 0.3333333333333333); + --color-systemPurple: color(display-p3 0.6862745098039216 0.3215686274509804 0.8705882352941177); + --color-systemRed: color(display-p3 1 0.23137254901960785 0.18823529411764706); + --color-systemTeal: color(display-p3 0.18823529411764706 0.6901960784313725 0.7803921568627451); --color-systemYellow: color(display-p3 1 0.8 0); } } diff --git a/examples/github/tokens/index.d.ts b/examples/github/tokens/index.d.ts index b6c5c654..9cdc9812 100644 --- a/examples/github/tokens/index.d.ts +++ b/examples/github/tokens/index.d.ts @@ -97,6 +97,7 @@ export declare const tokens: { 'color.red7': ColorToken['$value']; 'color.red8': ColorToken['$value']; 'color.red9': ColorToken['$value']; + 'color.white': ColorToken['$value']; 'color.yellow0': ColorToken['$value']; 'color.yellow1': ColorToken['$value']; 'color.yellow2': ColorToken['$value']; @@ -107,13 +108,26 @@ export declare const tokens: { 'color.yellow7': ColorToken['$value']; 'color.yellow8': ColorToken['$value']; 'color.yellow9': ColorToken['$value']; - 'color.white': ColorToken['$value']; + 'font.family.display': FontFamilyToken['$value']; + 'font.family.lineHeight.condensed': DimensionToken['$value']; + 'font.family.lineHeight.condensedUltra': DimensionToken['$value']; + 'font.family.lineHeight.default': DimensionToken['$value']; + 'font.family.monospace': FontFamilyToken['$value']; + 'font.family.size.f00': DimensionToken['$value']; + 'font.family.size.f0': DimensionToken['$value']; + 'font.family.size.f1': DimensionToken['$value']; + 'font.family.size.f2': DimensionToken['$value']; + 'font.family.size.f3': DimensionToken['$value']; + 'font.family.size.f4': DimensionToken['$value']; + 'font.family.size.f5': DimensionToken['$value']; + 'font.family.size.f6': DimensionToken['$value']; + 'font.family.system': FontFamilyToken['$value']; 'icon.alert-16': LinkToken['$value']; 'icon.alert-24': LinkToken['$value']; + 'icon.alert-fill-12': LinkToken['$value']; 'icon.archive-16': LinkToken['$value']; 'icon.archive-24': LinkToken['$value']; 'icon.arrow-both-16': LinkToken['$value']; - 'icon.alert-fill-12': LinkToken['$value']; 'icon.arrow-both-24': LinkToken['$value']; 'icon.arrow-down-16': LinkToken['$value']; 'icon.arrow-down-24': LinkToken['$value']; @@ -578,26 +592,12 @@ export declare const tokens: { 'icon.zap-16': LinkToken['$value']; 'icon.zap-24': LinkToken['$value']; 'spacing.spacer0': DimensionToken['$value']; - 'spacing.spacerXs': DimensionToken['$value']; - 'spacing.spacerS': DimensionToken['$value']; 'spacing.spacerM': DimensionToken['$value']; + 'spacing.spacerS': DimensionToken['$value']; 'spacing.spacerX': DimensionToken['$value']; 'spacing.spacerXl': DimensionToken['$value']; + 'spacing.spacerXs': DimensionToken['$value']; 'spacing.spacerXxl': DimensionToken['$value']; - 'font.family.system': FontFamilyToken['$value']; - 'font.family.monospace': FontFamilyToken['$value']; - 'font.family.display': FontFamilyToken['$value']; - 'font.family.size.f00': DimensionToken['$value']; - 'font.family.size.f0': DimensionToken['$value']; - 'font.family.size.f1': DimensionToken['$value']; - 'font.family.size.f2': DimensionToken['$value']; - 'font.family.size.f3': DimensionToken['$value']; - 'font.family.size.f4': DimensionToken['$value']; - 'font.family.size.f5': DimensionToken['$value']; - 'font.family.size.f6': DimensionToken['$value']; - 'font.family.lineHeight.default': DimensionToken['$value']; - 'font.family.lineHeight.condensed': DimensionToken['$value']; - 'font.family.lineHeight.condensedUltra': DimensionToken['$value']; }; export declare const meta: { @@ -682,6 +682,7 @@ export declare const meta: { 'color.red7': ParsedColorToken & { $extensions: { mode: typeof modes['color.red7'] } }; 'color.red8': ParsedColorToken & { $extensions: { mode: typeof modes['color.red8'] } }; 'color.red9': ParsedColorToken & { $extensions: { mode: typeof modes['color.red9'] } }; + 'color.white': ParsedColorToken & { $extensions: { mode: typeof modes['color.white'] } }; 'color.yellow0': ParsedColorToken & { $extensions: { mode: typeof modes['color.yellow0'] } }; 'color.yellow1': ParsedColorToken & { $extensions: { mode: typeof modes['color.yellow1'] } }; 'color.yellow2': ParsedColorToken & { $extensions: { mode: typeof modes['color.yellow2'] } }; @@ -692,13 +693,26 @@ export declare const meta: { 'color.yellow7': ParsedColorToken & { $extensions: { mode: typeof modes['color.yellow7'] } }; 'color.yellow8': ParsedColorToken & { $extensions: { mode: typeof modes['color.yellow8'] } }; 'color.yellow9': ParsedColorToken & { $extensions: { mode: typeof modes['color.yellow9'] } }; - 'color.white': ParsedColorToken & { $extensions: { mode: typeof modes['color.white'] } }; + 'font.family.display': ParsedFontFamilyToken; + 'font.family.lineHeight.condensed': ParsedDimensionToken; + 'font.family.lineHeight.condensedUltra': ParsedDimensionToken; + 'font.family.lineHeight.default': ParsedDimensionToken; + 'font.family.monospace': ParsedFontFamilyToken; + 'font.family.size.f00': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f00'] } }; + 'font.family.size.f0': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f0'] } }; + 'font.family.size.f1': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f1'] } }; + 'font.family.size.f2': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f2'] } }; + 'font.family.size.f3': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f3'] } }; + 'font.family.size.f4': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f4'] } }; + 'font.family.size.f5': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f5'] } }; + 'font.family.size.f6': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f6'] } }; + 'font.family.system': ParsedFontFamilyToken; 'icon.alert-16': ParsedLinkToken; 'icon.alert-24': ParsedLinkToken; + 'icon.alert-fill-12': ParsedLinkToken; 'icon.archive-16': ParsedLinkToken; 'icon.archive-24': ParsedLinkToken; 'icon.arrow-both-16': ParsedLinkToken; - 'icon.alert-fill-12': ParsedLinkToken; 'icon.arrow-both-24': ParsedLinkToken; 'icon.arrow-down-16': ParsedLinkToken; 'icon.arrow-down-24': ParsedLinkToken; @@ -1163,26 +1177,12 @@ export declare const meta: { 'icon.zap-16': ParsedLinkToken; 'icon.zap-24': ParsedLinkToken; 'spacing.spacer0': ParsedDimensionToken; - 'spacing.spacerXs': ParsedDimensionToken; - 'spacing.spacerS': ParsedDimensionToken; 'spacing.spacerM': ParsedDimensionToken; + 'spacing.spacerS': ParsedDimensionToken; 'spacing.spacerX': ParsedDimensionToken; 'spacing.spacerXl': ParsedDimensionToken; + 'spacing.spacerXs': ParsedDimensionToken; 'spacing.spacerXxl': ParsedDimensionToken; - 'font.family.system': ParsedFontFamilyToken; - 'font.family.monospace': ParsedFontFamilyToken; - 'font.family.display': ParsedFontFamilyToken; - 'font.family.size.f00': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f00'] } }; - 'font.family.size.f0': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f0'] } }; - 'font.family.size.f1': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f1'] } }; - 'font.family.size.f2': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f2'] } }; - 'font.family.size.f3': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f3'] } }; - 'font.family.size.f4': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f4'] } }; - 'font.family.size.f5': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f5'] } }; - 'font.family.size.f6': ParsedDimensionToken & { $extensions: { mode: typeof modes['font.family.size.f6'] } }; - 'font.family.lineHeight.default': ParsedDimensionToken; - 'font.family.lineHeight.condensed': ParsedDimensionToken; - 'font.family.lineHeight.condensedUltra': ParsedDimensionToken; }; export declare const modes: { @@ -1916,6 +1916,15 @@ export declare const modes: { 'dark-high-contrast': ColorToken['$value']; 'dark-colorblind': ColorToken['$value']; }; + 'color.white': { + light: ColorToken['$value']; + 'light-colorblind': ColorToken['$value']; + 'light-high-contrast': ColorToken['$value']; + dark: ColorToken['$value']; + 'dark-dimmed': ColorToken['$value']; + 'dark-high-contrast': ColorToken['$value']; + 'dark-colorblind': ColorToken['$value']; + }; 'color.yellow0': { light: ColorToken['$value']; 'light-colorblind': ColorToken['$value']; @@ -2006,15 +2015,6 @@ export declare const modes: { 'dark-high-contrast': ColorToken['$value']; 'dark-colorblind': ColorToken['$value']; }; - 'color.white': { - light: ColorToken['$value']; - 'light-colorblind': ColorToken['$value']; - 'light-high-contrast': ColorToken['$value']; - dark: ColorToken['$value']; - 'dark-dimmed': ColorToken['$value']; - 'dark-high-contrast': ColorToken['$value']; - 'dark-colorblind': ColorToken['$value']; - }; 'font.family.size.f00': { mobile: DimensionToken['$value']; desktop: DimensionToken['$value']; diff --git a/examples/github/tokens/index.js b/examples/github/tokens/index.js index dedeea30..405bca04 100644 --- a/examples/github/tokens/index.js +++ b/examples/github/tokens/index.js @@ -86,6 +86,7 @@ export const tokens = { 'color.red7': '#82071e', 'color.red8': '#660018', 'color.red9': '#4c0014', + 'color.white': '#ffffff', 'color.yellow0': '#fff8c5', 'color.yellow1': '#fae17d', 'color.yellow2': '#eac54f', @@ -96,13 +97,26 @@ export const tokens = { 'color.yellow7': '#633c01', 'color.yellow8': '#4d2d00', 'color.yellow9': '#3b2300', - 'color.white': '#ffffff', + 'font.family.display': ['InterUI', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'sans-serif'], + 'font.family.lineHeight.condensed': '1.25', + 'font.family.lineHeight.condensedUltra': '1', + 'font.family.lineHeight.default': '1.5', + 'font.family.monospace': ['SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'], + 'font.family.size.f00': '32px', + 'font.family.size.f0': '32px', + 'font.family.size.f1': '26px', + 'font.family.size.f2': '22px', + 'font.family.size.f3': '16px', + 'font.family.size.f4': '16px', + 'font.family.size.f5': '14px', + 'font.family.size.f6': '12px', + 'font.family.system': ['-apple-system,', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji'], 'icon.alert-16': '/icon/alert-16.svg', 'icon.alert-24': '/icon/alert-24.svg', + 'icon.alert-fill-12': '/icon/alert-fill-12.svg', 'icon.archive-16': '/icon/archive-16.svg', 'icon.archive-24': '/icon/archive-24.svg', 'icon.arrow-both-16': '/icon/arrow-both-16.svg', - 'icon.alert-fill-12': '/icon/alert-fill-12.svg', 'icon.arrow-both-24': '/icon/arrow-both-24.svg', 'icon.arrow-down-16': '/icon/arrow-down-16.svg', 'icon.arrow-down-24': '/icon/arrow-down-24.svg', @@ -567,33 +581,19 @@ export const tokens = { 'icon.zap-16': '/icon/zap-16.svg', 'icon.zap-24': '/icon/zap-24.svg', 'spacing.spacer0': '0', - 'spacing.spacerXs': '4px', - 'spacing.spacerS': '8px', 'spacing.spacerM': '16px', + 'spacing.spacerS': '8px', 'spacing.spacerX': '24px', 'spacing.spacerXl': '32px', + 'spacing.spacerXs': '4px', 'spacing.spacerXxl': '40px', - 'font.family.system': ['-apple-system,', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji'], - 'font.family.monospace': ['SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'], - 'font.family.display': ['InterUI', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'sans-serif'], - 'font.family.size.f00': '32px', - 'font.family.size.f0': '32px', - 'font.family.size.f1': '26px', - 'font.family.size.f2': '22px', - 'font.family.size.f3': '16px', - 'font.family.size.f4': '16px', - 'font.family.size.f5': '14px', - 'font.family.size.f6': '12px', - 'font.family.lineHeight.default': '1.5', - 'font.family.lineHeight.condensed': '1.25', - 'font.family.lineHeight.condensedUltra': '1', }; export const meta = { 'color.black': { - '_original': { - '$value': '#1b1f24', - '$extensions': { + _original: { + $value: '#1b1f24', + $extensions: { mode: { light: '#1b1f24', 'light-colorblind': '#1b1f24', @@ -606,20 +606,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.black', - '$type': 'color', - '$value': '#1b1f24', - '$extensions': { + $type: 'color', + $value: '#1b1f24', + $extensions: { mode: { light: '#1b1f24', 'light-colorblind': '#1b1f24', @@ -633,9 +633,9 @@ export const meta = { }, }, 'color.blue0': { - '_original': { - '$value': '#ddf4ff', - '$extensions': { + _original: { + $value: '#ddf4ff', + $extensions: { mode: { light: '#ddf4ff', 'light-colorblind': '#ddf4ff', @@ -647,20 +647,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue0', - '$type': 'color', - '$value': '#ddf4ff', - '$extensions': { + $type: 'color', + $value: '#ddf4ff', + $extensions: { mode: { light: '#ddf4ff', 'light-colorblind': '#ddf4ff', @@ -673,9 +673,9 @@ export const meta = { }, }, 'color.blue1': { - '_original': { - '$value': '#b6e3ff', - '$extensions': { + _original: { + $value: '#b6e3ff', + $extensions: { mode: { light: '#b6e3ff', 'light-colorblind': '#b6e3ff', @@ -687,20 +687,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue1', - '$type': 'color', - '$value': '#b6e3ff', - '$extensions': { + $type: 'color', + $value: '#b6e3ff', + $extensions: { mode: { light: '#b6e3ff', 'light-colorblind': '#b6e3ff', @@ -713,9 +713,9 @@ export const meta = { }, }, 'color.blue2': { - '_original': { - '$value': '#80ccff', - '$extensions': { + _original: { + $value: '#80ccff', + $extensions: { mode: { light: '#80ccff', 'light-colorblind': '#80ccff', @@ -727,20 +727,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue2', - '$type': 'color', - '$value': '#80ccff', - '$extensions': { + $type: 'color', + $value: '#80ccff', + $extensions: { mode: { light: '#80ccff', 'light-colorblind': '#80ccff', @@ -753,9 +753,9 @@ export const meta = { }, }, 'color.blue3': { - '_original': { - '$value': '#54aeff', - '$extensions': { + _original: { + $value: '#54aeff', + $extensions: { mode: { light: '#54aeff', 'light-colorblind': '#54aeff', @@ -767,20 +767,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue3', - '$type': 'color', - '$value': '#54aeff', - '$extensions': { + $type: 'color', + $value: '#54aeff', + $extensions: { mode: { light: '#54aeff', 'light-colorblind': '#54aeff', @@ -793,9 +793,9 @@ export const meta = { }, }, 'color.blue4': { - '_original': { - '$value': '#218bff', - '$extensions': { + _original: { + $value: '#218bff', + $extensions: { mode: { light: '#218bff', 'light-colorblind': '#218bff', @@ -807,20 +807,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue4', - '$type': 'color', - '$value': '#218bff', - '$extensions': { + $type: 'color', + $value: '#218bff', + $extensions: { mode: { light: '#218bff', 'light-colorblind': '#218bff', @@ -833,9 +833,9 @@ export const meta = { }, }, 'color.blue5': { - '_original': { - '$value': '#0969da', - '$extensions': { + _original: { + $value: '#0969da', + $extensions: { mode: { light: '#0969da', 'light-colorblind': '#0969da', @@ -847,20 +847,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue5', - '$type': 'color', - '$value': '#0969da', - '$extensions': { + $type: 'color', + $value: '#0969da', + $extensions: { mode: { light: '#0969da', 'light-colorblind': '#0969da', @@ -873,9 +873,9 @@ export const meta = { }, }, 'color.blue6': { - '_original': { - '$value': '#0550ae', - '$extensions': { + _original: { + $value: '#0550ae', + $extensions: { mode: { light: '#0550ae', 'light-colorblind': '#0550ae', @@ -887,20 +887,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue6', - '$type': 'color', - '$value': '#0550ae', - '$extensions': { + $type: 'color', + $value: '#0550ae', + $extensions: { mode: { light: '#0550ae', 'light-colorblind': '#0550ae', @@ -913,9 +913,9 @@ export const meta = { }, }, 'color.blue7': { - '_original': { - '$value': '#033d8b', - '$extensions': { + _original: { + $value: '#033d8b', + $extensions: { mode: { light: '#033d8b', 'light-colorblind': '#033d8b', @@ -927,20 +927,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue7', - '$type': 'color', - '$value': '#033d8b', - '$extensions': { + $type: 'color', + $value: '#033d8b', + $extensions: { mode: { light: '#033d8b', 'light-colorblind': '#033d8b', @@ -953,9 +953,9 @@ export const meta = { }, }, 'color.blue8': { - '_original': { - '$value': '#0a3069', - '$extensions': { + _original: { + $value: '#0a3069', + $extensions: { mode: { light: '#0a3069', 'light-colorblind': '#0a3069', @@ -967,20 +967,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue8', - '$type': 'color', - '$value': '#0a3069', - '$extensions': { + $type: 'color', + $value: '#0a3069', + $extensions: { mode: { light: '#0a3069', 'light-colorblind': '#0a3069', @@ -993,9 +993,9 @@ export const meta = { }, }, 'color.blue9': { - '_original': { - '$value': '#002155', - '$extensions': { + _original: { + $value: '#002155', + $extensions: { mode: { light: '#002155', 'light-colorblind': '#002155', @@ -1007,20 +1007,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.blue9', - '$type': 'color', - '$value': '#002155', - '$extensions': { + $type: 'color', + $value: '#002155', + $extensions: { mode: { light: '#002155', 'light-colorblind': '#002155', @@ -1033,9 +1033,9 @@ export const meta = { }, }, 'color.coral0': { - '_original': { - '$value': '#FFF0EB', - '$extensions': { + _original: { + $value: '#FFF0EB', + $extensions: { mode: { light: '#FFF0EB', 'light-colorblind': '#FFF0EB', @@ -1047,20 +1047,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral0', - '$type': 'color', - '$value': '#fff0eb', - '$extensions': { + $type: 'color', + $value: '#fff0eb', + $extensions: { mode: { light: '#fff0eb', 'light-colorblind': '#fff0eb', @@ -1073,9 +1073,9 @@ export const meta = { }, }, 'color.coral1': { - '_original': { - '$value': '#FFD6CC', - '$extensions': { + _original: { + $value: '#FFD6CC', + $extensions: { mode: { light: '#FFD6CC', 'light-colorblind': '#FFD6CC', @@ -1087,20 +1087,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral1', - '$type': 'color', - '$value': '#ffd6cc', - '$extensions': { + $type: 'color', + $value: '#ffd6cc', + $extensions: { mode: { light: '#ffd6cc', 'light-colorblind': '#ffd6cc', @@ -1113,9 +1113,9 @@ export const meta = { }, }, 'color.coral2': { - '_original': { - '$value': '#FFB4A1', - '$extensions': { + _original: { + $value: '#FFB4A1', + $extensions: { mode: { light: '#FFB4A1', 'light-colorblind': '#FFB4A1', @@ -1127,20 +1127,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral2', - '$type': 'color', - '$value': '#ffb4a1', - '$extensions': { + $type: 'color', + $value: '#ffb4a1', + $extensions: { mode: { light: '#ffb4a1', 'light-colorblind': '#ffb4a1', @@ -1153,9 +1153,9 @@ export const meta = { }, }, 'color.coral3': { - '_original': { - '$value': '#FD8C73', - '$extensions': { + _original: { + $value: '#FD8C73', + $extensions: { mode: { light: '#FD8C73', 'light-colorblind': '#FD8C73', @@ -1167,20 +1167,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral3', - '$type': 'color', - '$value': '#fd8c73', - '$extensions': { + $type: 'color', + $value: '#fd8c73', + $extensions: { mode: { light: '#fd8c73', 'light-colorblind': '#fd8c73', @@ -1193,9 +1193,9 @@ export const meta = { }, }, 'color.coral4': { - '_original': { - '$value': '#EC6547', - '$extensions': { + _original: { + $value: '#EC6547', + $extensions: { mode: { light: '#EC6547', 'light-colorblind': '#EC6547', @@ -1207,20 +1207,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral4', - '$type': 'color', - '$value': '#ec6547', - '$extensions': { + $type: 'color', + $value: '#ec6547', + $extensions: { mode: { light: '#ec6547', 'light-colorblind': '#ec6547', @@ -1233,9 +1233,9 @@ export const meta = { }, }, 'color.coral5': { - '_original': { - '$value': '#C4432B', - '$extensions': { + _original: { + $value: '#C4432B', + $extensions: { mode: { light: '#C4432B', 'light-colorblind': '#C4432B', @@ -1247,20 +1247,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral5', - '$type': 'color', - '$value': '#c4432b', - '$extensions': { + $type: 'color', + $value: '#c4432b', + $extensions: { mode: { light: '#c4432b', 'light-colorblind': '#c4432b', @@ -1273,9 +1273,9 @@ export const meta = { }, }, 'color.coral6': { - '_original': { - '$value': '#9E2F1C', - '$extensions': { + _original: { + $value: '#9E2F1C', + $extensions: { mode: { light: '#9E2F1C', 'light-colorblind': '#9E2F1C', @@ -1287,20 +1287,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral6', - '$type': 'color', - '$value': '#9e2f1c', - '$extensions': { + $type: 'color', + $value: '#9e2f1c', + $extensions: { mode: { light: '#9e2f1c', 'light-colorblind': '#9e2f1c', @@ -1313,9 +1313,9 @@ export const meta = { }, }, 'color.coral7': { - '_original': { - '$value': '#801F0F', - '$extensions': { + _original: { + $value: '#801F0F', + $extensions: { mode: { light: '#801F0F', 'light-colorblind': '#801F0F', @@ -1327,20 +1327,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral7', - '$type': 'color', - '$value': '#801f0f', - '$extensions': { + $type: 'color', + $value: '#801f0f', + $extensions: { mode: { light: '#801f0f', 'light-colorblind': '#801f0f', @@ -1353,9 +1353,9 @@ export const meta = { }, }, 'color.coral8': { - '_original': { - '$value': '#691105', - '$extensions': { + _original: { + $value: '#691105', + $extensions: { mode: { light: '#691105', 'light-colorblind': '#691105', @@ -1367,20 +1367,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral8', - '$type': 'color', - '$value': '#691105', - '$extensions': { + $type: 'color', + $value: '#691105', + $extensions: { mode: { light: '#691105', 'light-colorblind': '#691105', @@ -1393,9 +1393,9 @@ export const meta = { }, }, 'color.coral9': { - '_original': { - '$value': '#510901', - '$extensions': { + _original: { + $value: '#510901', + $extensions: { mode: { light: '#510901', 'light-colorblind': '#510901', @@ -1407,20 +1407,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.coral9', - '$type': 'color', - '$value': '#510901', - '$extensions': { + $type: 'color', + $value: '#510901', + $extensions: { mode: { light: '#510901', 'light-colorblind': '#510901', @@ -1433,9 +1433,9 @@ export const meta = { }, }, 'color.gray0': { - '_original': { - '$value': '#f6f8fa', - '$extensions': { + _original: { + $value: '#f6f8fa', + $extensions: { mode: { light: '#f6f8fa', 'light-colorblind': '#f6f8fa', @@ -1447,20 +1447,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray0', - '$type': 'color', - '$value': '#f6f8fa', - '$extensions': { + $type: 'color', + $value: '#f6f8fa', + $extensions: { mode: { light: '#f6f8fa', 'light-colorblind': '#f6f8fa', @@ -1473,9 +1473,9 @@ export const meta = { }, }, 'color.gray1': { - '_original': { - '$value': '#eaeef2', - '$extensions': { + _original: { + $value: '#eaeef2', + $extensions: { mode: { light: '#eaeef2', 'light-colorblind': '#eaeef2', @@ -1487,20 +1487,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray1', - '$type': 'color', - '$value': '#eaeef2', - '$extensions': { + $type: 'color', + $value: '#eaeef2', + $extensions: { mode: { light: '#eaeef2', 'light-colorblind': '#eaeef2', @@ -1513,9 +1513,9 @@ export const meta = { }, }, 'color.gray2': { - '_original': { - '$value': '#d0d7de', - '$extensions': { + _original: { + $value: '#d0d7de', + $extensions: { mode: { light: '#d0d7de', 'light-colorblind': '#d0d7de', @@ -1527,20 +1527,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray2', - '$type': 'color', - '$value': '#d0d7de', - '$extensions': { + $type: 'color', + $value: '#d0d7de', + $extensions: { mode: { light: '#d0d7de', 'light-colorblind': '#d0d7de', @@ -1553,9 +1553,9 @@ export const meta = { }, }, 'color.gray3': { - '_original': { - '$value': '#afb8c1', - '$extensions': { + _original: { + $value: '#afb8c1', + $extensions: { mode: { light: '#afb8c1', 'light-colorblind': '#afb8c1', @@ -1567,20 +1567,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray3', - '$type': 'color', - '$value': '#afb8c1', - '$extensions': { + $type: 'color', + $value: '#afb8c1', + $extensions: { mode: { light: '#afb8c1', 'light-colorblind': '#afb8c1', @@ -1593,9 +1593,9 @@ export const meta = { }, }, 'color.gray4': { - '_original': { - '$value': '#8c959f', - '$extensions': { + _original: { + $value: '#8c959f', + $extensions: { mode: { light: '#8c959f', 'light-colorblind': '#8c959f', @@ -1607,20 +1607,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray4', - '$type': 'color', - '$value': '#8c959f', - '$extensions': { + $type: 'color', + $value: '#8c959f', + $extensions: { mode: { light: '#8c959f', 'light-colorblind': '#8c959f', @@ -1633,9 +1633,9 @@ export const meta = { }, }, 'color.gray5': { - '_original': { - '$value': '#6e7781', - '$extensions': { + _original: { + $value: '#6e7781', + $extensions: { mode: { light: '#6e7781', 'light-colorblind': '#6e7781', @@ -1647,20 +1647,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray5', - '$type': 'color', - '$value': '#6e7781', - '$extensions': { + $type: 'color', + $value: '#6e7781', + $extensions: { mode: { light: '#6e7781', 'light-colorblind': '#6e7781', @@ -1673,9 +1673,9 @@ export const meta = { }, }, 'color.gray6': { - '_original': { - '$value': '#57606a', - '$extensions': { + _original: { + $value: '#57606a', + $extensions: { mode: { light: '#57606a', 'light-colorblind': '#57606a', @@ -1687,20 +1687,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray6', - '$type': 'color', - '$value': '#57606a', - '$extensions': { + $type: 'color', + $value: '#57606a', + $extensions: { mode: { light: '#57606a', 'light-colorblind': '#57606a', @@ -1713,9 +1713,9 @@ export const meta = { }, }, 'color.gray7': { - '_original': { - '$value': '#424a53', - '$extensions': { + _original: { + $value: '#424a53', + $extensions: { mode: { light: '#424a53', 'light-colorblind': '#424a53', @@ -1727,20 +1727,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray7', - '$type': 'color', - '$value': '#424a53', - '$extensions': { + $type: 'color', + $value: '#424a53', + $extensions: { mode: { light: '#424a53', 'light-colorblind': '#424a53', @@ -1753,9 +1753,9 @@ export const meta = { }, }, 'color.gray8': { - '_original': { - '$value': '#32383f', - '$extensions': { + _original: { + $value: '#32383f', + $extensions: { mode: { light: '#32383f', 'light-colorblind': '#32383f', @@ -1767,20 +1767,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray8', - '$type': 'color', - '$value': '#32383f', - '$extensions': { + $type: 'color', + $value: '#32383f', + $extensions: { mode: { light: '#32383f', 'light-colorblind': '#32383f', @@ -1793,9 +1793,9 @@ export const meta = { }, }, 'color.gray9': { - '_original': { - '$value': '#24292f', - '$extensions': { + _original: { + $value: '#24292f', + $extensions: { mode: { light: '#24292f', 'light-colorblind': '#24292f', @@ -1807,20 +1807,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.gray9', - '$type': 'color', - '$value': '#24292f', - '$extensions': { + $type: 'color', + $value: '#24292f', + $extensions: { mode: { light: '#24292f', 'light-colorblind': '#24292f', @@ -1833,9 +1833,9 @@ export const meta = { }, }, 'color.green0': { - '_original': { - '$value': '#dafbe1', - '$extensions': { + _original: { + $value: '#dafbe1', + $extensions: { mode: { light: '#dafbe1', 'light-colorblind': '#c0f6ff', @@ -1847,20 +1847,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green0', - '$type': 'color', - '$value': '#dafbe1', - '$extensions': { + $type: 'color', + $value: '#dafbe1', + $extensions: { mode: { light: '#dafbe1', 'light-colorblind': '#c0f6ff', @@ -1873,9 +1873,9 @@ export const meta = { }, }, 'color.green1': { - '_original': { - '$value': '#aceebb', - '$extensions': { + _original: { + $value: '#aceebb', + $extensions: { mode: { light: '#aceebb', 'light-colorblind': '#96e5ff', @@ -1887,20 +1887,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green1', - '$type': 'color', - '$value': '#aceebb', - '$extensions': { + $type: 'color', + $value: '#aceebb', + $extensions: { mode: { light: '#aceebb', 'light-colorblind': '#96e5ff', @@ -1913,9 +1913,9 @@ export const meta = { }, }, 'color.green2': { - '_original': { - '$value': '#6fdd8b', - '$extensions': { + _original: { + $value: '#6fdd8b', + $extensions: { mode: { light: '#6fdd8b', 'light-colorblind': '#65ccff', @@ -1927,20 +1927,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green2', - '$type': 'color', - '$value': '#6fdd8b', - '$extensions': { + $type: 'color', + $value: '#6fdd8b', + $extensions: { mode: { light: '#6fdd8b', 'light-colorblind': '#65ccff', @@ -1953,9 +1953,9 @@ export const meta = { }, }, 'color.green3': { - '_original': { - '$value': '#4ac26b', - '$extensions': { + _original: { + $value: '#4ac26b', + $extensions: { mode: { light: '#4ac26b', 'light-colorblind': '#35adff', @@ -1967,20 +1967,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green3', - '$type': 'color', - '$value': '#4ac26b', - '$extensions': { + $type: 'color', + $value: '#4ac26b', + $extensions: { mode: { light: '#4ac26b', 'light-colorblind': '#35adff', @@ -1993,9 +1993,9 @@ export const meta = { }, }, 'color.green4': { - '_original': { - '$value': '#2da44e', - '$extensions': { + _original: { + $value: '#2da44e', + $extensions: { mode: { light: '#2da44e', 'light-colorblind': '#0088ff', @@ -2007,20 +2007,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green4', - '$type': 'color', - '$value': '#2da44e', - '$extensions': { + $type: 'color', + $value: '#2da44e', + $extensions: { mode: { light: '#2da44e', 'light-colorblind': '#0088ff', @@ -2033,9 +2033,9 @@ export const meta = { }, }, 'color.green5': { - '_original': { - '$value': '#1a7f37', - '$extensions': { + _original: { + $value: '#1a7f37', + $extensions: { mode: { light: '#1a7f37', 'light-colorblind': '#0566d5', @@ -2047,20 +2047,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green5', - '$type': 'color', - '$value': '#1a7f37', - '$extensions': { + $type: 'color', + $value: '#1a7f37', + $extensions: { mode: { light: '#1a7f37', 'light-colorblind': '#0566d5', @@ -2073,9 +2073,9 @@ export const meta = { }, }, 'color.green6': { - '_original': { - '$value': '#116329', - '$extensions': { + _original: { + $value: '#116329', + $extensions: { mode: { light: '#116329', 'light-colorblind': '#054da9', @@ -2087,20 +2087,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green6', - '$type': 'color', - '$value': '#116329', - '$extensions': { + $type: 'color', + $value: '#116329', + $extensions: { mode: { light: '#116329', 'light-colorblind': '#054da9', @@ -2113,9 +2113,9 @@ export const meta = { }, }, 'color.green7': { - '_original': { - '$value': '#044f1e', - '$extensions': { + _original: { + $value: '#044f1e', + $extensions: { mode: { light: '#044f1e', 'light-colorblind': '#033a86', @@ -2127,20 +2127,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green7', - '$type': 'color', - '$value': '#044f1e', - '$extensions': { + $type: 'color', + $value: '#044f1e', + $extensions: { mode: { light: '#044f1e', 'light-colorblind': '#033a86', @@ -2153,9 +2153,9 @@ export const meta = { }, }, 'color.green8': { - '_original': { - '$value': '#003d16', - '$extensions': { + _original: { + $value: '#003d16', + $extensions: { mode: { light: '#003d16', 'light-colorblind': '#002d68', @@ -2167,20 +2167,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green8', - '$type': 'color', - '$value': '#003d16', - '$extensions': { + $type: 'color', + $value: '#003d16', + $extensions: { mode: { light: '#003d16', 'light-colorblind': '#002d68', @@ -2193,9 +2193,9 @@ export const meta = { }, }, 'color.green9': { - '_original': { - '$value': '#002d11', - '$extensions': { + _original: { + $value: '#002d11', + $extensions: { mode: { light: '#002d11', 'light-colorblind': '#001f50', @@ -2207,20 +2207,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.green9', - '$type': 'color', - '$value': '#002d11', - '$extensions': { + $type: 'color', + $value: '#002d11', + $extensions: { mode: { light: '#002d11', 'light-colorblind': '#001f50', @@ -2233,9 +2233,9 @@ export const meta = { }, }, 'color.orange0': { - '_original': { - '$value': '#fff1e5', - '$extensions': { + _original: { + $value: '#fff1e5', + $extensions: { mode: { light: '#fff1e5', 'light-colorblind': '#fff1e5', @@ -2247,20 +2247,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange0', - '$type': 'color', - '$value': '#fff1e5', - '$extensions': { + $type: 'color', + $value: '#fff1e5', + $extensions: { mode: { light: '#fff1e5', 'light-colorblind': '#fff1e5', @@ -2273,9 +2273,9 @@ export const meta = { }, }, 'color.orange1': { - '_original': { - '$value': '#ffd8b5', - '$extensions': { + _original: { + $value: '#ffd8b5', + $extensions: { mode: { light: '#ffd8b5', 'light-colorblind': '#ffd8b5', @@ -2287,20 +2287,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange1', - '$type': 'color', - '$value': '#ffd8b5', - '$extensions': { + $type: 'color', + $value: '#ffd8b5', + $extensions: { mode: { light: '#ffd8b5', 'light-colorblind': '#ffd8b5', @@ -2313,9 +2313,9 @@ export const meta = { }, }, 'color.orange2': { - '_original': { - '$value': '#ffb77c', - '$extensions': { + _original: { + $value: '#ffb77c', + $extensions: { mode: { light: '#ffb77c', 'light-colorblind': '#ffb77c', @@ -2327,20 +2327,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange2', - '$type': 'color', - '$value': '#ffb77c', - '$extensions': { + $type: 'color', + $value: '#ffb77c', + $extensions: { mode: { light: '#ffb77c', 'light-colorblind': '#ffb77c', @@ -2353,9 +2353,9 @@ export const meta = { }, }, 'color.orange3': { - '_original': { - '$value': '#fb8f44', - '$extensions': { + _original: { + $value: '#fb8f44', + $extensions: { mode: { light: '#fb8f44', 'light-colorblind': '#fb8f44', @@ -2367,20 +2367,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange3', - '$type': 'color', - '$value': '#fb8f44', - '$extensions': { + $type: 'color', + $value: '#fb8f44', + $extensions: { mode: { light: '#fb8f44', 'light-colorblind': '#fb8f44', @@ -2393,9 +2393,9 @@ export const meta = { }, }, 'color.orange4': { - '_original': { - '$value': '#e16f24', - '$extensions': { + _original: { + $value: '#e16f24', + $extensions: { mode: { light: '#e16f24', 'light-colorblind': '#e16f24', @@ -2407,20 +2407,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange4', - '$type': 'color', - '$value': '#e16f24', - '$extensions': { + $type: 'color', + $value: '#e16f24', + $extensions: { mode: { light: '#e16f24', 'light-colorblind': '#e16f24', @@ -2433,9 +2433,9 @@ export const meta = { }, }, 'color.orange5': { - '_original': { - '$value': '#bc4c00', - '$extensions': { + _original: { + $value: '#bc4c00', + $extensions: { mode: { light: '#bc4c00', 'light-colorblind': '#bc4c00', @@ -2447,20 +2447,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange5', - '$type': 'color', - '$value': '#bc4c00', - '$extensions': { + $type: 'color', + $value: '#bc4c00', + $extensions: { mode: { light: '#bc4c00', 'light-colorblind': '#bc4c00', @@ -2473,9 +2473,9 @@ export const meta = { }, }, 'color.orange6': { - '_original': { - '$value': '#953800', - '$extensions': { + _original: { + $value: '#953800', + $extensions: { mode: { light: '#953800', 'light-colorblind': '#953800', @@ -2487,20 +2487,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange6', - '$type': 'color', - '$value': '#953800', - '$extensions': { + $type: 'color', + $value: '#953800', + $extensions: { mode: { light: '#953800', 'light-colorblind': '#953800', @@ -2513,9 +2513,9 @@ export const meta = { }, }, 'color.orange7': { - '_original': { - '$value': '#762c00', - '$extensions': { + _original: { + $value: '#762c00', + $extensions: { mode: { light: '#762c00', 'light-colorblind': '#762c00', @@ -2527,20 +2527,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange7', - '$type': 'color', - '$value': '#762c00', - '$extensions': { + $type: 'color', + $value: '#762c00', + $extensions: { mode: { light: '#762c00', 'light-colorblind': '#762c00', @@ -2553,9 +2553,9 @@ export const meta = { }, }, 'color.orange8': { - '_original': { - '$value': '#5c2200', - '$extensions': { + _original: { + $value: '#5c2200', + $extensions: { mode: { light: '#5c2200', 'light-colorblind': '#5c2200', @@ -2567,20 +2567,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange8', - '$type': 'color', - '$value': '#5c2200', - '$extensions': { + $type: 'color', + $value: '#5c2200', + $extensions: { mode: { light: '#5c2200', 'light-colorblind': '#5c2200', @@ -2593,9 +2593,9 @@ export const meta = { }, }, 'color.orange9': { - '_original': { - '$value': '#471700', - '$extensions': { + _original: { + $value: '#471700', + $extensions: { mode: { light: '#471700', 'light-colorblind': '#471700', @@ -2607,20 +2607,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.orange9', - '$type': 'color', - '$value': '#471700', - '$extensions': { + $type: 'color', + $value: '#471700', + $extensions: { mode: { light: '#471700', 'light-colorblind': '#471700', @@ -2633,9 +2633,9 @@ export const meta = { }, }, 'color.pink0': { - '_original': { - '$value': '#ffeff7', - '$extensions': { + _original: { + $value: '#ffeff7', + $extensions: { mode: { light: '#ffeff7', 'light-colorblind': '#ffeff7', @@ -2647,20 +2647,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink0', - '$type': 'color', - '$value': '#ffeff7', - '$extensions': { + $type: 'color', + $value: '#ffeff7', + $extensions: { mode: { light: '#ffeff7', 'light-colorblind': '#ffeff7', @@ -2673,9 +2673,9 @@ export const meta = { }, }, 'color.pink1': { - '_original': { - '$value': '#ffd3eb', - '$extensions': { + _original: { + $value: '#ffd3eb', + $extensions: { mode: { light: '#ffd3eb', 'light-colorblind': '#ffd3eb', @@ -2687,20 +2687,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink1', - '$type': 'color', - '$value': '#ffd3eb', - '$extensions': { + $type: 'color', + $value: '#ffd3eb', + $extensions: { mode: { light: '#ffd3eb', 'light-colorblind': '#ffd3eb', @@ -2713,9 +2713,9 @@ export const meta = { }, }, 'color.pink2': { - '_original': { - '$value': '#ffadda', - '$extensions': { + _original: { + $value: '#ffadda', + $extensions: { mode: { light: '#ffadda', 'light-colorblind': '#ffadda', @@ -2727,20 +2727,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink2', - '$type': 'color', - '$value': '#ffadda', - '$extensions': { + $type: 'color', + $value: '#ffadda', + $extensions: { mode: { light: '#ffadda', 'light-colorblind': '#ffadda', @@ -2753,9 +2753,9 @@ export const meta = { }, }, 'color.pink3': { - '_original': { - '$value': '#ff80c8', - '$extensions': { + _original: { + $value: '#ff80c8', + $extensions: { mode: { light: '#ff80c8', 'light-colorblind': '#ff80c8', @@ -2767,20 +2767,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink3', - '$type': 'color', - '$value': '#ff80c8', - '$extensions': { + $type: 'color', + $value: '#ff80c8', + $extensions: { mode: { light: '#ff80c8', 'light-colorblind': '#ff80c8', @@ -2793,9 +2793,9 @@ export const meta = { }, }, 'color.pink4': { - '_original': { - '$value': '#e85aad', - '$extensions': { + _original: { + $value: '#e85aad', + $extensions: { mode: { light: '#e85aad', 'light-colorblind': '#e85aad', @@ -2807,20 +2807,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink4', - '$type': 'color', - '$value': '#e85aad', - '$extensions': { + $type: 'color', + $value: '#e85aad', + $extensions: { mode: { light: '#e85aad', 'light-colorblind': '#e85aad', @@ -2833,9 +2833,9 @@ export const meta = { }, }, 'color.pink5': { - '_original': { - '$value': '#bf3989', - '$extensions': { + _original: { + $value: '#bf3989', + $extensions: { mode: { light: '#bf3989', 'light-colorblind': '#bf3989', @@ -2847,20 +2847,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink5', - '$type': 'color', - '$value': '#bf3989', - '$extensions': { + $type: 'color', + $value: '#bf3989', + $extensions: { mode: { light: '#bf3989', 'light-colorblind': '#bf3989', @@ -2873,9 +2873,9 @@ export const meta = { }, }, 'color.pink6': { - '_original': { - '$value': '#99286e', - '$extensions': { + _original: { + $value: '#99286e', + $extensions: { mode: { light: '#99286e', 'light-colorblind': '#99286e', @@ -2887,20 +2887,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink6', - '$type': 'color', - '$value': '#99286e', - '$extensions': { + $type: 'color', + $value: '#99286e', + $extensions: { mode: { light: '#99286e', 'light-colorblind': '#99286e', @@ -2913,9 +2913,9 @@ export const meta = { }, }, 'color.pink7': { - '_original': { - '$value': '#772057', - '$extensions': { + _original: { + $value: '#772057', + $extensions: { mode: { light: '#772057', 'light-colorblind': '#772057', @@ -2927,20 +2927,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink7', - '$type': 'color', - '$value': '#772057', - '$extensions': { + $type: 'color', + $value: '#772057', + $extensions: { mode: { light: '#772057', 'light-colorblind': '#772057', @@ -2953,9 +2953,9 @@ export const meta = { }, }, 'color.pink8': { - '_original': { - '$value': '#611347', - '$extensions': { + _original: { + $value: '#611347', + $extensions: { mode: { light: '#611347', 'light-colorblind': '#611347', @@ -2967,20 +2967,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink8', - '$type': 'color', - '$value': '#611347', - '$extensions': { + $type: 'color', + $value: '#611347', + $extensions: { mode: { light: '#611347', 'light-colorblind': '#611347', @@ -2993,9 +2993,9 @@ export const meta = { }, }, 'color.pink9': { - '_original': { - '$value': '#4d0336', - '$extensions': { + _original: { + $value: '#4d0336', + $extensions: { mode: { light: '#4d0336', 'light-colorblind': '#4d0336', @@ -3007,20 +3007,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.pink9', - '$type': 'color', - '$value': '#4d0336', - '$extensions': { + $type: 'color', + $value: '#4d0336', + $extensions: { mode: { light: '#4d0336', 'light-colorblind': '#4d0336', @@ -3033,9 +3033,9 @@ export const meta = { }, }, 'color.purple0': { - '_original': { - '$value': '#fbefff', - '$extensions': { + _original: { + $value: '#fbefff', + $extensions: { mode: { light: '#fbefff', 'light-colorblind': '#fbefff', @@ -3047,20 +3047,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple0', - '$type': 'color', - '$value': '#fbefff', - '$extensions': { + $type: 'color', + $value: '#fbefff', + $extensions: { mode: { light: '#fbefff', 'light-colorblind': '#fbefff', @@ -3073,9 +3073,9 @@ export const meta = { }, }, 'color.purple1': { - '_original': { - '$value': '#ecd8ff', - '$extensions': { + _original: { + $value: '#ecd8ff', + $extensions: { mode: { light: '#ecd8ff', 'light-colorblind': '#ecd8ff', @@ -3087,20 +3087,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple1', - '$type': 'color', - '$value': '#ecd8ff', - '$extensions': { + $type: 'color', + $value: '#ecd8ff', + $extensions: { mode: { light: '#ecd8ff', 'light-colorblind': '#ecd8ff', @@ -3113,9 +3113,9 @@ export const meta = { }, }, 'color.purple2': { - '_original': { - '$value': '#d8b9ff', - '$extensions': { + _original: { + $value: '#d8b9ff', + $extensions: { mode: { light: '#d8b9ff', 'light-colorblind': '#d8b9ff', @@ -3127,20 +3127,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple2', - '$type': 'color', - '$value': '#d8b9ff', - '$extensions': { + $type: 'color', + $value: '#d8b9ff', + $extensions: { mode: { light: '#d8b9ff', 'light-colorblind': '#d8b9ff', @@ -3153,9 +3153,9 @@ export const meta = { }, }, 'color.purple3': { - '_original': { - '$value': '#c297ff', - '$extensions': { + _original: { + $value: '#c297ff', + $extensions: { mode: { light: '#c297ff', 'light-colorblind': '#c297ff', @@ -3167,20 +3167,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple3', - '$type': 'color', - '$value': '#c297ff', - '$extensions': { + $type: 'color', + $value: '#c297ff', + $extensions: { mode: { light: '#c297ff', 'light-colorblind': '#c297ff', @@ -3193,9 +3193,9 @@ export const meta = { }, }, 'color.purple4': { - '_original': { - '$value': '#a475f9', - '$extensions': { + _original: { + $value: '#a475f9', + $extensions: { mode: { light: '#a475f9', 'light-colorblind': '#a475f9', @@ -3207,20 +3207,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple4', - '$type': 'color', - '$value': '#a475f9', - '$extensions': { + $type: 'color', + $value: '#a475f9', + $extensions: { mode: { light: '#a475f9', 'light-colorblind': '#a475f9', @@ -3233,9 +3233,9 @@ export const meta = { }, }, 'color.purple5': { - '_original': { - '$value': '#8250df', - '$extensions': { + _original: { + $value: '#8250df', + $extensions: { mode: { light: '#8250df', 'light-colorblind': '#8250df', @@ -3247,20 +3247,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple5', - '$type': 'color', - '$value': '#8250df', - '$extensions': { + $type: 'color', + $value: '#8250df', + $extensions: { mode: { light: '#8250df', 'light-colorblind': '#8250df', @@ -3273,9 +3273,9 @@ export const meta = { }, }, 'color.purple6': { - '_original': { - '$value': '#6639ba', - '$extensions': { + _original: { + $value: '#6639ba', + $extensions: { mode: { light: '#6639ba', 'light-colorblind': '#6639ba', @@ -3287,20 +3287,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple6', - '$type': 'color', - '$value': '#6639ba', - '$extensions': { + $type: 'color', + $value: '#6639ba', + $extensions: { mode: { light: '#6639ba', 'light-colorblind': '#6639ba', @@ -3313,9 +3313,9 @@ export const meta = { }, }, 'color.purple7': { - '_original': { - '$value': '#512a97', - '$extensions': { + _original: { + $value: '#512a97', + $extensions: { mode: { light: '#512a97', 'light-colorblind': '#512a97', @@ -3327,20 +3327,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple7', - '$type': 'color', - '$value': '#512a97', - '$extensions': { + $type: 'color', + $value: '#512a97', + $extensions: { mode: { light: '#512a97', 'light-colorblind': '#512a97', @@ -3353,9 +3353,9 @@ export const meta = { }, }, 'color.purple8': { - '_original': { - '$value': '#3e1f79', - '$extensions': { + _original: { + $value: '#3e1f79', + $extensions: { mode: { light: '#3e1f79', 'light-colorblind': '#3e1f79', @@ -3367,20 +3367,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple8', - '$type': 'color', - '$value': '#3e1f79', - '$extensions': { + $type: 'color', + $value: '#3e1f79', + $extensions: { mode: { light: '#3e1f79', 'light-colorblind': '#3e1f79', @@ -3393,9 +3393,9 @@ export const meta = { }, }, 'color.purple9': { - '_original': { - '$value': '#2e1461', - '$extensions': { + _original: { + $value: '#2e1461', + $extensions: { mode: { light: '#2e1461', 'light-colorblind': '#2e1461', @@ -3407,20 +3407,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.purple9', - '$type': 'color', - '$value': '#2e1461', - '$extensions': { + $type: 'color', + $value: '#2e1461', + $extensions: { mode: { light: '#2e1461', 'light-colorblind': '#2e1461', @@ -3433,9 +3433,9 @@ export const meta = { }, }, 'color.red0': { - '_original': { - '$value': '#FFEBE9', - '$extensions': { + _original: { + $value: '#FFEBE9', + $extensions: { mode: { light: '#FFEBE9', 'light-colorblind': '#fefe48', @@ -3447,20 +3447,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red0', - '$type': 'color', - '$value': '#ffebe9', - '$extensions': { + $type: 'color', + $value: '#ffebe9', + $extensions: { mode: { light: '#ffebe9', 'light-colorblind': '#fefe48', @@ -3473,9 +3473,9 @@ export const meta = { }, }, 'color.red1': { - '_original': { - '$value': '#ffcecb', - '$extensions': { + _original: { + $value: '#ffcecb', + $extensions: { mode: { light: '#ffcecb', 'light-colorblind': '#fee325', @@ -3487,20 +3487,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red1', - '$type': 'color', - '$value': '#ffcecb', - '$extensions': { + $type: 'color', + $value: '#ffcecb', + $extensions: { mode: { light: '#ffcecb', 'light-colorblind': '#fee325', @@ -3513,9 +3513,9 @@ export const meta = { }, }, 'color.red2': { - '_original': { - '$value': '#ffaba8', - '$extensions': { + _original: { + $value: '#ffaba8', + $extensions: { mode: { light: '#ffaba8', 'light-colorblind': '#f8c200', @@ -3527,20 +3527,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red2', - '$type': 'color', - '$value': '#ffaba8', - '$extensions': { + $type: 'color', + $value: '#ffaba8', + $extensions: { mode: { light: '#ffaba8', 'light-colorblind': '#f8c200', @@ -3553,9 +3553,9 @@ export const meta = { }, }, 'color.red3': { - '_original': { - '$value': '#ff8182', - '$extensions': { + _original: { + $value: '#ff8182', + $extensions: { mode: { light: '#ff8182', 'light-colorblind': '#e7a100', @@ -3567,20 +3567,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red3', - '$type': 'color', - '$value': '#ff8182', - '$extensions': { + $type: 'color', + $value: '#ff8182', + $extensions: { mode: { light: '#ff8182', 'light-colorblind': '#e7a100', @@ -3593,9 +3593,9 @@ export const meta = { }, }, 'color.red4': { - '_original': { - '$value': '#fa4549', - '$extensions': { + _original: { + $value: '#fa4549', + $extensions: { mode: { light: '#fa4549', 'light-colorblind': '#d08002', @@ -3607,20 +3607,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red4', - '$type': 'color', - '$value': '#fa4549', - '$extensions': { + $type: 'color', + $value: '#fa4549', + $extensions: { mode: { light: '#fa4549', 'light-colorblind': '#d08002', @@ -3633,9 +3633,9 @@ export const meta = { }, }, 'color.red5': { - '_original': { - '$value': '#cf222e', - '$extensions': { + _original: { + $value: '#cf222e', + $extensions: { mode: { light: '#cf222e', 'light-colorblind': '#ac5e00', @@ -3647,20 +3647,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red5', - '$type': 'color', - '$value': '#cf222e', - '$extensions': { + $type: 'color', + $value: '#cf222e', + $extensions: { mode: { light: '#cf222e', 'light-colorblind': '#ac5e00', @@ -3673,9 +3673,9 @@ export const meta = { }, }, 'color.red6': { - '_original': { - '$value': '#a40e26', - '$extensions': { + _original: { + $value: '#a40e26', + $extensions: { mode: { light: '#a40e26', 'light-colorblind': '#8b4600', @@ -3687,20 +3687,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red6', - '$type': 'color', - '$value': '#a40e26', - '$extensions': { + $type: 'color', + $value: '#a40e26', + $extensions: { mode: { light: '#a40e26', 'light-colorblind': '#8b4600', @@ -3713,9 +3713,9 @@ export const meta = { }, }, 'color.red7': { - '_original': { - '$value': '#82071e', - '$extensions': { + _original: { + $value: '#82071e', + $extensions: { mode: { light: '#82071e', 'light-colorblind': '#6c3900', @@ -3727,20 +3727,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red7', - '$type': 'color', - '$value': '#82071e', - '$extensions': { + $type: 'color', + $value: '#82071e', + $extensions: { mode: { light: '#82071e', 'light-colorblind': '#6c3900', @@ -3753,9 +3753,9 @@ export const meta = { }, }, 'color.red8': { - '_original': { - '$value': '#660018', - '$extensions': { + _original: { + $value: '#660018', + $extensions: { mode: { light: '#660018', 'light-colorblind': '#4c3100', @@ -3767,20 +3767,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red8', - '$type': 'color', - '$value': '#660018', - '$extensions': { + $type: 'color', + $value: '#660018', + $extensions: { mode: { light: '#660018', 'light-colorblind': '#4c3100', @@ -3793,9 +3793,9 @@ export const meta = { }, }, 'color.red9': { - '_original': { - '$value': '#4c0014', - '$extensions': { + _original: { + $value: '#4c0014', + $extensions: { mode: { light: '#4c0014', 'light-colorblind': '#2f2900', @@ -3807,20 +3807,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.red9', - '$type': 'color', - '$value': '#4c0014', - '$extensions': { + $type: 'color', + $value: '#4c0014', + $extensions: { mode: { light: '#4c0014', 'light-colorblind': '#2f2900', @@ -3832,10 +3832,50 @@ export const meta = { }, }, }, + 'color.white': { + _original: { + $value: '#ffffff', + $extensions: { + mode: { + light: '#ffffff', + 'light-colorblind': '#ffffff', + 'light-high-contrast': '#ffffff', + dark: '#f0f6fc', + 'dark-dimmed': '#cdd9e5', + 'dark-high-contrast': '#ffffff', + 'dark-colorblind': '#f0f6fc', + }, + }, + }, + _group: { + id: 'color', + $extensions: { + requiredModes: [], + modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', + }, + id: 'color.white', + $type: 'color', + $value: '#ffffff', + $extensions: { + mode: { + light: '#ffffff', + 'light-colorblind': '#ffffff', + 'light-high-contrast': '#ffffff', + dark: '#f0f6fc', + 'dark-dimmed': '#cdd9e5', + 'dark-high-contrast': '#ffffff', + 'dark-colorblind': '#f0f6fc', + }, + }, + }, 'color.yellow0': { - '_original': { - '$value': '#fff8c5', - '$extensions': { + _original: { + $value: '#fff8c5', + $extensions: { mode: { light: '#fff8c5', 'light-colorblind': '#fff8c5', @@ -3847,20 +3887,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow0', - '$type': 'color', - '$value': '#fff8c5', - '$extensions': { + $type: 'color', + $value: '#fff8c5', + $extensions: { mode: { light: '#fff8c5', 'light-colorblind': '#fff8c5', @@ -3873,9 +3913,9 @@ export const meta = { }, }, 'color.yellow1': { - '_original': { - '$value': '#fae17d', - '$extensions': { + _original: { + $value: '#fae17d', + $extensions: { mode: { light: '#fae17d', 'light-colorblind': '#fae17d', @@ -3887,20 +3927,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow1', - '$type': 'color', - '$value': '#fae17d', - '$extensions': { + $type: 'color', + $value: '#fae17d', + $extensions: { mode: { light: '#fae17d', 'light-colorblind': '#fae17d', @@ -3913,9 +3953,9 @@ export const meta = { }, }, 'color.yellow2': { - '_original': { - '$value': '#eac54f', - '$extensions': { + _original: { + $value: '#eac54f', + $extensions: { mode: { light: '#eac54f', 'light-colorblind': '#eac54f', @@ -3927,20 +3967,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow2', - '$type': 'color', - '$value': '#eac54f', - '$extensions': { + $type: 'color', + $value: '#eac54f', + $extensions: { mode: { light: '#eac54f', 'light-colorblind': '#eac54f', @@ -3953,9 +3993,9 @@ export const meta = { }, }, 'color.yellow3': { - '_original': { - '$value': '#d4a72c', - '$extensions': { + _original: { + $value: '#d4a72c', + $extensions: { mode: { light: '#d4a72c', 'light-colorblind': '#d4a72c', @@ -3967,20 +4007,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow3', - '$type': 'color', - '$value': '#d4a72c', - '$extensions': { + $type: 'color', + $value: '#d4a72c', + $extensions: { mode: { light: '#d4a72c', 'light-colorblind': '#d4a72c', @@ -3993,9 +4033,9 @@ export const meta = { }, }, 'color.yellow4': { - '_original': { - '$value': '#bf8700', - '$extensions': { + _original: { + $value: '#bf8700', + $extensions: { mode: { light: '#bf8700', 'light-colorblind': '#bf8700', @@ -4007,20 +4047,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow4', - '$type': 'color', - '$value': '#bf8700', - '$extensions': { + $type: 'color', + $value: '#bf8700', + $extensions: { mode: { light: '#bf8700', 'light-colorblind': '#bf8700', @@ -4033,9 +4073,9 @@ export const meta = { }, }, 'color.yellow5': { - '_original': { - '$value': '#9a6700', - '$extensions': { + _original: { + $value: '#9a6700', + $extensions: { mode: { light: '#9a6700', 'light-colorblind': '#9a6700', @@ -4047,20 +4087,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow5', - '$type': 'color', - '$value': '#9a6700', - '$extensions': { + $type: 'color', + $value: '#9a6700', + $extensions: { mode: { light: '#9a6700', 'light-colorblind': '#9a6700', @@ -4073,9 +4113,9 @@ export const meta = { }, }, 'color.yellow6': { - '_original': { - '$value': '#7d4e00', - '$extensions': { + _original: { + $value: '#7d4e00', + $extensions: { mode: { light: '#7d4e00', 'light-colorblind': '#7d4e00', @@ -4087,20 +4127,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow6', - '$type': 'color', - '$value': '#7d4e00', - '$extensions': { + $type: 'color', + $value: '#7d4e00', + $extensions: { mode: { light: '#7d4e00', 'light-colorblind': '#7d4e00', @@ -4113,9 +4153,9 @@ export const meta = { }, }, 'color.yellow7': { - '_original': { - '$value': '#633c01', - '$extensions': { + _original: { + $value: '#633c01', + $extensions: { mode: { light: '#633c01', 'light-colorblind': '#633c01', @@ -4127,20 +4167,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow7', - '$type': 'color', - '$value': '#633c01', - '$extensions': { + $type: 'color', + $value: '#633c01', + $extensions: { mode: { light: '#633c01', 'light-colorblind': '#633c01', @@ -4153,9 +4193,9 @@ export const meta = { }, }, 'color.yellow8': { - '_original': { - '$value': '#4d2d00', - '$extensions': { + _original: { + $value: '#4d2d00', + $extensions: { mode: { light: '#4d2d00', 'light-colorblind': '#4d2d00', @@ -4167,20 +4207,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow8', - '$type': 'color', - '$value': '#4d2d00', - '$extensions': { + $type: 'color', + $value: '#4d2d00', + $extensions: { mode: { light: '#4d2d00', 'light-colorblind': '#4d2d00', @@ -4193,9 +4233,9 @@ export const meta = { }, }, 'color.yellow9': { - '_original': { - '$value': '#3b2300', - '$extensions': { + _original: { + $value: '#3b2300', + $extensions: { mode: { light: '#3b2300', 'light-colorblind': '#3b2300', @@ -4207,20 +4247,20 @@ export const meta = { }, }, }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'color', }, id: 'color.yellow9', - '$type': 'color', - '$value': '#3b2300', - '$extensions': { + $type: 'color', + $value: '#3b2300', + $extensions: { mode: { light: '#3b2300', 'light-colorblind': '#3b2300', @@ -4232,8479 +4272,8439 @@ export const meta = { }, }, }, - 'color.white': { - '_original': { - '$value': '#ffffff', - '$extensions': { + 'font.family.display': { + _original: { + $value: ['InterUI', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'sans-serif'], + }, + _group: { + id: 'font.family', + $extensions: { + requiredModes: [], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'fontFamily', + }, + id: 'font.family.display', + $type: 'fontFamily', + $value: ['InterUI', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'sans-serif'], + }, + 'font.family.lineHeight.condensed': { + _original: { + $value: '1.25', + }, + _group: { + id: 'font.family.lineHeight', + $extensions: { + requiredModes: [], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.lineHeight.condensed', + $type: 'dimension', + $value: '1.25', + }, + 'font.family.lineHeight.condensedUltra': { + _original: { + $value: '1', + }, + _group: { + id: 'font.family.lineHeight', + $extensions: { + requiredModes: [], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.lineHeight.condensedUltra', + $type: 'dimension', + $value: '1', + }, + 'font.family.lineHeight.default': { + _original: { + $value: '1.5', + }, + _group: { + id: 'font.family.lineHeight', + $extensions: { + requiredModes: [], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.lineHeight.default', + $type: 'dimension', + $value: '1.5', + }, + 'font.family.monospace': { + _original: { + $value: ['SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'], + }, + _group: { + id: 'font.family', + $extensions: { + requiredModes: [], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'fontFamily', + }, + id: 'font.family.monospace', + $type: 'fontFamily', + $value: ['SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'], + }, + 'font.family.size.f00': { + _original: { + $value: '32px', + $extensions: { mode: { - light: '#ffffff', - 'light-colorblind': '#ffffff', - 'light-high-contrast': '#ffffff', - dark: '#f0f6fc', - 'dark-dimmed': '#cdd9e5', - 'dark-high-contrast': '#ffffff', - 'dark-colorblind': '#f0f6fc', + mobile: '32px', + desktop: '48px', }, }, }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.family.size', + $extensions: { requiredModes: [], - modes: ['light', 'light-colorblind', 'light-high-contrast', 'dark', 'dark-colorblind', 'dark-dimmed', 'dark-high-contrast'], + modes: ['mobile', 'desktop'], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'color', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, - id: 'color.white', - '$type': 'color', - '$value': '#ffffff', - '$extensions': { + id: 'font.family.size.f00', + $type: 'dimension', + $value: '32px', + $extensions: { mode: { - light: '#ffffff', - 'light-colorblind': '#ffffff', - 'light-high-contrast': '#ffffff', - dark: '#f0f6fc', - 'dark-dimmed': '#cdd9e5', - 'dark-high-contrast': '#ffffff', - 'dark-colorblind': '#f0f6fc', + mobile: '32px', + desktop: '48px', + }, + }, + }, + 'font.family.size.f0': { + _original: { + $value: '32px', + $extensions: { + mode: { + mobile: '32px', + desktop: '40px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f0', + $type: 'dimension', + $value: '32px', + $extensions: { + mode: { + mobile: '32px', + desktop: '40px', + }, + }, + }, + 'font.family.size.f1': { + _original: { + $value: '26px', + $extensions: { + mode: { + mobile: '26px', + desktop: '32px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f1', + $type: 'dimension', + $value: '26px', + $extensions: { + mode: { + mobile: '26px', + desktop: '32px', + }, + }, + }, + 'font.family.size.f2': { + _original: { + $value: '22px', + $extensions: { + mode: { + mobile: '22px', + desktop: '24px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f2', + $type: 'dimension', + $value: '22px', + $extensions: { + mode: { + mobile: '22px', + desktop: '24px', + }, + }, + }, + 'font.family.size.f3': { + _original: { + $value: '16px', + $extensions: { + mode: { + mobile: '16px', + desktop: '20px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f3', + $type: 'dimension', + $value: '16px', + $extensions: { + mode: { + mobile: '16px', + desktop: '20px', + }, + }, + }, + 'font.family.size.f4': { + _original: { + $value: '16px', + $extensions: { + mode: { + mobile: '16px', + desktop: '16px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f4', + $type: 'dimension', + $value: '16px', + $extensions: { + mode: { + mobile: '16px', + desktop: '16px', + }, + }, + }, + 'font.family.size.f5': { + _original: { + $value: '14px', + $extensions: { + mode: { + mobile: '14px', + desktop: '14px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f5', + $type: 'dimension', + $value: '14px', + $extensions: { + mode: { + mobile: '14px', + desktop: '14px', + }, + }, + }, + 'font.family.size.f6': { + _original: { + $value: '12px', + $extensions: { + mode: { + mobile: '12px', + desktop: '12px', + }, + }, + }, + _group: { + id: 'font.family.size', + $extensions: { + requiredModes: [], + modes: ['mobile', 'desktop'], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', + }, + id: 'font.family.size.f6', + $type: 'dimension', + $value: '12px', + $extensions: { + mode: { + mobile: '12px', + desktop: '12px', }, }, }, + 'font.family.system': { + _original: { + $value: ['-apple-system,', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji'], + }, + _group: { + id: 'font.family', + $extensions: { + requiredModes: [], + }, + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'fontFamily', + }, + id: 'font.family.system', + $type: 'fontFamily', + $value: ['-apple-system,', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji'], + }, 'icon.alert-16': { - '_original': { - '$value': '/icon/alert-16.svg', + _original: { + $value: '/icon/alert-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.alert-16', - '$type': 'link', - '$value': '/icon/alert-16.svg', + $type: 'link', + $value: '/icon/alert-16.svg', }, 'icon.alert-24': { - '_original': { - '$value': '/icon/alert-24.svg', + _original: { + $value: '/icon/alert-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.alert-24', - '$type': 'link', - '$value': '/icon/alert-24.svg', + $type: 'link', + $value: '/icon/alert-24.svg', }, - 'icon.archive-16': { - '_original': { - '$value': '/icon/archive-16.svg', + 'icon.alert-fill-12': { + _original: { + $value: '/icon/alert-fill-12.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, - id: 'icon.archive-16', - '$type': 'link', - '$value': '/icon/archive-16.svg', + id: 'icon.alert-fill-12', + $type: 'link', + $value: '/icon/alert-fill-12.svg', }, - 'icon.archive-24': { - '_original': { - '$value': '/icon/archive-24.svg', + 'icon.archive-16': { + _original: { + $value: '/icon/archive-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, - id: 'icon.archive-24', - '$type': 'link', - '$value': '/icon/archive-24.svg', + id: 'icon.archive-16', + $type: 'link', + $value: '/icon/archive-16.svg', }, - 'icon.arrow-both-16': { - '_original': { - '$value': '/icon/arrow-both-16.svg', + 'icon.archive-24': { + _original: { + $value: '/icon/archive-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, - id: 'icon.arrow-both-16', - '$type': 'link', - '$value': '/icon/arrow-both-16.svg', + id: 'icon.archive-24', + $type: 'link', + $value: '/icon/archive-24.svg', }, - 'icon.alert-fill-12': { - '_original': { - '$value': '/icon/alert-fill-12.svg', + 'icon.arrow-both-16': { + _original: { + $value: '/icon/arrow-both-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, - id: 'icon.alert-fill-12', - '$type': 'link', - '$value': '/icon/alert-fill-12.svg', + id: 'icon.arrow-both-16', + $type: 'link', + $value: '/icon/arrow-both-16.svg', }, 'icon.arrow-both-24': { - '_original': { - '$value': '/icon/arrow-both-24.svg', + _original: { + $value: '/icon/arrow-both-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-both-24', - '$type': 'link', - '$value': '/icon/arrow-both-24.svg', + $type: 'link', + $value: '/icon/arrow-both-24.svg', }, 'icon.arrow-down-16': { - '_original': { - '$value': '/icon/arrow-down-16.svg', + _original: { + $value: '/icon/arrow-down-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-down-16', - '$type': 'link', - '$value': '/icon/arrow-down-16.svg', + $type: 'link', + $value: '/icon/arrow-down-16.svg', }, 'icon.arrow-down-24': { - '_original': { - '$value': '/icon/arrow-down-24.svg', + _original: { + $value: '/icon/arrow-down-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-down-24', - '$type': 'link', - '$value': '/icon/arrow-down-24.svg', + $type: 'link', + $value: '/icon/arrow-down-24.svg', }, 'icon.arrow-down-left-24': { - '_original': { - '$value': '/icon/arrow-down-left-24.svg', + _original: { + $value: '/icon/arrow-down-left-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-down-left-24', - '$type': 'link', - '$value': '/icon/arrow-down-left-24.svg', + $type: 'link', + $value: '/icon/arrow-down-left-24.svg', }, 'icon.arrow-down-right-24': { - '_original': { - '$value': '/icon/arrow-down-right-24.svg', + _original: { + $value: '/icon/arrow-down-right-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-down-right-24', - '$type': 'link', - '$value': '/icon/arrow-down-right-24.svg', + $type: 'link', + $value: '/icon/arrow-down-right-24.svg', }, 'icon.arrow-left-16': { - '_original': { - '$value': '/icon/arrow-left-16.svg', + _original: { + $value: '/icon/arrow-left-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-left-16', - '$type': 'link', - '$value': '/icon/arrow-left-16.svg', + $type: 'link', + $value: '/icon/arrow-left-16.svg', }, 'icon.arrow-left-24': { - '_original': { - '$value': '/icon/arrow-left-24.svg', + _original: { + $value: '/icon/arrow-left-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-left-24', - '$type': 'link', - '$value': '/icon/arrow-left-24.svg', + $type: 'link', + $value: '/icon/arrow-left-24.svg', }, 'icon.arrow-right-16': { - '_original': { - '$value': '/icon/arrow-right-16.svg', + _original: { + $value: '/icon/arrow-right-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-right-16', - '$type': 'link', - '$value': '/icon/arrow-right-16.svg', + $type: 'link', + $value: '/icon/arrow-right-16.svg', }, 'icon.arrow-right-24': { - '_original': { - '$value': '/icon/arrow-right-24.svg', + _original: { + $value: '/icon/arrow-right-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-right-24', - '$type': 'link', - '$value': '/icon/arrow-right-24.svg', + $type: 'link', + $value: '/icon/arrow-right-24.svg', }, 'icon.arrow-switch-16': { - '_original': { - '$value': '/icon/arrow-switch-16.svg', + _original: { + $value: '/icon/arrow-switch-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-switch-16', - '$type': 'link', - '$value': '/icon/arrow-switch-16.svg', + $type: 'link', + $value: '/icon/arrow-switch-16.svg', }, 'icon.arrow-switch-24': { - '_original': { - '$value': '/icon/arrow-switch-24.svg', + _original: { + $value: '/icon/arrow-switch-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-switch-24', - '$type': 'link', - '$value': '/icon/arrow-switch-24.svg', + $type: 'link', + $value: '/icon/arrow-switch-24.svg', }, 'icon.arrow-up-16': { - '_original': { - '$value': '/icon/arrow-up-16.svg', + _original: { + $value: '/icon/arrow-up-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-up-16', - '$type': 'link', - '$value': '/icon/arrow-up-16.svg', + $type: 'link', + $value: '/icon/arrow-up-16.svg', }, 'icon.arrow-up-24': { - '_original': { - '$value': '/icon/arrow-up-24.svg', + _original: { + $value: '/icon/arrow-up-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-up-24', - '$type': 'link', - '$value': '/icon/arrow-up-24.svg', + $type: 'link', + $value: '/icon/arrow-up-24.svg', }, 'icon.arrow-up-left-24': { - '_original': { - '$value': '/icon/arrow-up-left-24.svg', + _original: { + $value: '/icon/arrow-up-left-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-up-left-24', - '$type': 'link', - '$value': '/icon/arrow-up-left-24.svg', + $type: 'link', + $value: '/icon/arrow-up-left-24.svg', }, 'icon.arrow-up-right-24': { - '_original': { - '$value': '/icon/arrow-up-right-24.svg', + _original: { + $value: '/icon/arrow-up-right-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.arrow-up-right-24', - '$type': 'link', - '$value': '/icon/arrow-up-right-24.svg', + $type: 'link', + $value: '/icon/arrow-up-right-24.svg', }, 'icon.beaker-16': { - '_original': { - '$value': '/icon/beaker-16.svg', + _original: { + $value: '/icon/beaker-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.beaker-16', - '$type': 'link', - '$value': '/icon/beaker-16.svg', + $type: 'link', + $value: '/icon/beaker-16.svg', }, 'icon.beaker-24': { - '_original': { - '$value': '/icon/beaker-24.svg', + _original: { + $value: '/icon/beaker-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.beaker-24', - '$type': 'link', - '$value': '/icon/beaker-24.svg', + $type: 'link', + $value: '/icon/beaker-24.svg', }, 'icon.bell-16': { - '_original': { - '$value': '/icon/bell-16.svg', + _original: { + $value: '/icon/bell-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bell-16', - '$type': 'link', - '$value': '/icon/bell-16.svg', + $type: 'link', + $value: '/icon/bell-16.svg', }, 'icon.bell-24': { - '_original': { - '$value': '/icon/bell-24.svg', + _original: { + $value: '/icon/bell-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bell-24', - '$type': 'link', - '$value': '/icon/bell-24.svg', + $type: 'link', + $value: '/icon/bell-24.svg', }, 'icon.bell-fill-16': { - '_original': { - '$value': '/icon/bell-fill-16.svg', + _original: { + $value: '/icon/bell-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bell-fill-16', - '$type': 'link', - '$value': '/icon/bell-fill-16.svg', + $type: 'link', + $value: '/icon/bell-fill-16.svg', }, 'icon.bell-fill-24': { - '_original': { - '$value': '/icon/bell-fill-24.svg', + _original: { + $value: '/icon/bell-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bell-fill-24', - '$type': 'link', - '$value': '/icon/bell-fill-24.svg', + $type: 'link', + $value: '/icon/bell-fill-24.svg', }, 'icon.bell-slash-16': { - '_original': { - '$value': '/icon/bell-slash-16.svg', + _original: { + $value: '/icon/bell-slash-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bell-slash-16', - '$type': 'link', - '$value': '/icon/bell-slash-16.svg', + $type: 'link', + $value: '/icon/bell-slash-16.svg', }, 'icon.bell-slash-24': { - '_original': { - '$value': '/icon/bell-slash-24.svg', + _original: { + $value: '/icon/bell-slash-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bell-slash-24', - '$type': 'link', - '$value': '/icon/bell-slash-24.svg', + $type: 'link', + $value: '/icon/bell-slash-24.svg', }, 'icon.blocked-16': { - '_original': { - '$value': '/icon/blocked-16.svg', + _original: { + $value: '/icon/blocked-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.blocked-16', - '$type': 'link', - '$value': '/icon/blocked-16.svg', + $type: 'link', + $value: '/icon/blocked-16.svg', }, 'icon.blocked-24': { - '_original': { - '$value': '/icon/blocked-24.svg', + _original: { + $value: '/icon/blocked-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.blocked-24', - '$type': 'link', - '$value': '/icon/blocked-24.svg', + $type: 'link', + $value: '/icon/blocked-24.svg', }, 'icon.bold-16': { - '_original': { - '$value': '/icon/bold-16.svg', + _original: { + $value: '/icon/bold-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bold-16', - '$type': 'link', - '$value': '/icon/bold-16.svg', + $type: 'link', + $value: '/icon/bold-16.svg', }, 'icon.bold-24': { - '_original': { - '$value': '/icon/bold-24.svg', + _original: { + $value: '/icon/bold-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bold-24', - '$type': 'link', - '$value': '/icon/bold-24.svg', + $type: 'link', + $value: '/icon/bold-24.svg', }, 'icon.book-16': { - '_original': { - '$value': '/icon/book-16.svg', + _original: { + $value: '/icon/book-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.book-16', - '$type': 'link', - '$value': '/icon/book-16.svg', + $type: 'link', + $value: '/icon/book-16.svg', }, 'icon.book-24': { - '_original': { - '$value': '/icon/book-24.svg', + _original: { + $value: '/icon/book-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.book-24', - '$type': 'link', - '$value': '/icon/book-24.svg', + $type: 'link', + $value: '/icon/book-24.svg', }, 'icon.bookmark-16': { - '_original': { - '$value': '/icon/bookmark-16.svg', + _original: { + $value: '/icon/bookmark-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bookmark-16', - '$type': 'link', - '$value': '/icon/bookmark-16.svg', + $type: 'link', + $value: '/icon/bookmark-16.svg', }, 'icon.bookmark-24': { - '_original': { - '$value': '/icon/bookmark-24.svg', + _original: { + $value: '/icon/bookmark-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bookmark-24', - '$type': 'link', - '$value': '/icon/bookmark-24.svg', + $type: 'link', + $value: '/icon/bookmark-24.svg', }, 'icon.bookmark-fill-24': { - '_original': { - '$value': '/icon/bookmark-fill-24.svg', + _original: { + $value: '/icon/bookmark-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bookmark-fill-24', - '$type': 'link', - '$value': '/icon/bookmark-fill-24.svg', + $type: 'link', + $value: '/icon/bookmark-fill-24.svg', }, 'icon.bookmark-slash-16': { - '_original': { - '$value': '/icon/bookmark-slash-16.svg', + _original: { + $value: '/icon/bookmark-slash-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bookmark-slash-16', - '$type': 'link', - '$value': '/icon/bookmark-slash-16.svg', + $type: 'link', + $value: '/icon/bookmark-slash-16.svg', }, 'icon.bookmark-slash-24': { - '_original': { - '$value': '/icon/bookmark-slash-24.svg', + _original: { + $value: '/icon/bookmark-slash-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bookmark-slash-24', - '$type': 'link', - '$value': '/icon/bookmark-slash-24.svg', + $type: 'link', + $value: '/icon/bookmark-slash-24.svg', }, 'icon.bookmark-slash-fill-24': { - '_original': { - '$value': '/icon/bookmark-slash-fill-24.svg', + _original: { + $value: '/icon/bookmark-slash-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bookmark-slash-fill-24', - '$type': 'link', - '$value': '/icon/bookmark-slash-fill-24.svg', + $type: 'link', + $value: '/icon/bookmark-slash-fill-24.svg', }, 'icon.briefcase-16': { - '_original': { - '$value': '/icon/briefcase-16.svg', + _original: { + $value: '/icon/briefcase-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.briefcase-16', - '$type': 'link', - '$value': '/icon/briefcase-16.svg', + $type: 'link', + $value: '/icon/briefcase-16.svg', }, 'icon.briefcase-24': { - '_original': { - '$value': '/icon/briefcase-24.svg', + _original: { + $value: '/icon/briefcase-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.briefcase-24', - '$type': 'link', - '$value': '/icon/briefcase-24.svg', + $type: 'link', + $value: '/icon/briefcase-24.svg', }, 'icon.broadcast-16': { - '_original': { - '$value': '/icon/broadcast-16.svg', + _original: { + $value: '/icon/broadcast-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.broadcast-16', - '$type': 'link', - '$value': '/icon/broadcast-16.svg', + $type: 'link', + $value: '/icon/broadcast-16.svg', }, 'icon.broadcast-24': { - '_original': { - '$value': '/icon/broadcast-24.svg', + _original: { + $value: '/icon/broadcast-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.broadcast-24', - '$type': 'link', - '$value': '/icon/broadcast-24.svg', + $type: 'link', + $value: '/icon/broadcast-24.svg', }, 'icon.browser-16': { - '_original': { - '$value': '/icon/browser-16.svg', + _original: { + $value: '/icon/browser-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.browser-16', - '$type': 'link', - '$value': '/icon/browser-16.svg', + $type: 'link', + $value: '/icon/browser-16.svg', }, 'icon.browser-24': { - '_original': { - '$value': '/icon/browser-24.svg', + _original: { + $value: '/icon/browser-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.browser-24', - '$type': 'link', - '$value': '/icon/browser-24.svg', + $type: 'link', + $value: '/icon/browser-24.svg', }, 'icon.bug-16': { - '_original': { - '$value': '/icon/bug-16.svg', + _original: { + $value: '/icon/bug-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bug-16', - '$type': 'link', - '$value': '/icon/bug-16.svg', + $type: 'link', + $value: '/icon/bug-16.svg', }, 'icon.bug-24': { - '_original': { - '$value': '/icon/bug-24.svg', + _original: { + $value: '/icon/bug-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.bug-24', - '$type': 'link', - '$value': '/icon/bug-24.svg', + $type: 'link', + $value: '/icon/bug-24.svg', }, 'icon.calendar-16': { - '_original': { - '$value': '/icon/calendar-16.svg', + _original: { + $value: '/icon/calendar-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.calendar-16', - '$type': 'link', - '$value': '/icon/calendar-16.svg', + $type: 'link', + $value: '/icon/calendar-16.svg', }, 'icon.calendar-24': { - '_original': { - '$value': '/icon/calendar-24.svg', + _original: { + $value: '/icon/calendar-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.calendar-24', - '$type': 'link', - '$value': '/icon/calendar-24.svg', + $type: 'link', + $value: '/icon/calendar-24.svg', }, 'icon.check-16': { - '_original': { - '$value': '/icon/check-16.svg', + _original: { + $value: '/icon/check-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-16', - '$type': 'link', - '$value': '/icon/check-16.svg', + $type: 'link', + $value: '/icon/check-16.svg', }, 'icon.check-24': { - '_original': { - '$value': '/icon/check-24.svg', + _original: { + $value: '/icon/check-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-24', - '$type': 'link', - '$value': '/icon/check-24.svg', + $type: 'link', + $value: '/icon/check-24.svg', }, 'icon.check-circle-16': { - '_original': { - '$value': '/icon/check-circle-16.svg', + _original: { + $value: '/icon/check-circle-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-circle-16', - '$type': 'link', - '$value': '/icon/check-circle-16.svg', + $type: 'link', + $value: '/icon/check-circle-16.svg', }, 'icon.check-circle-24': { - '_original': { - '$value': '/icon/check-circle-24.svg', + _original: { + $value: '/icon/check-circle-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-circle-24', - '$type': 'link', - '$value': '/icon/check-circle-24.svg', + $type: 'link', + $value: '/icon/check-circle-24.svg', }, 'icon.check-circle-fill-12': { - '_original': { - '$value': '/icon/check-circle-fill-12.svg', + _original: { + $value: '/icon/check-circle-fill-12.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-circle-fill-12', - '$type': 'link', - '$value': '/icon/check-circle-fill-12.svg', + $type: 'link', + $value: '/icon/check-circle-fill-12.svg', }, 'icon.check-circle-fill-16': { - '_original': { - '$value': '/icon/check-circle-fill-16.svg', + _original: { + $value: '/icon/check-circle-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-circle-fill-16', - '$type': 'link', - '$value': '/icon/check-circle-fill-16.svg', + $type: 'link', + $value: '/icon/check-circle-fill-16.svg', }, 'icon.check-circle-fill-24': { - '_original': { - '$value': '/icon/check-circle-fill-24.svg', + _original: { + $value: '/icon/check-circle-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.check-circle-fill-24', - '$type': 'link', - '$value': '/icon/check-circle-fill-24.svg', + $type: 'link', + $value: '/icon/check-circle-fill-24.svg', }, 'icon.checklist-16': { - '_original': { - '$value': '/icon/checklist-16.svg', + _original: { + $value: '/icon/checklist-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.checklist-16', - '$type': 'link', - '$value': '/icon/checklist-16.svg', + $type: 'link', + $value: '/icon/checklist-16.svg', }, 'icon.checklist-24': { - '_original': { - '$value': '/icon/checklist-24.svg', + _original: { + $value: '/icon/checklist-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.checklist-24', - '$type': 'link', - '$value': '/icon/checklist-24.svg', + $type: 'link', + $value: '/icon/checklist-24.svg', }, 'icon.chevron-down-16': { - '_original': { - '$value': '/icon/chevron-down-16.svg', + _original: { + $value: '/icon/chevron-down-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-down-16', - '$type': 'link', - '$value': '/icon/chevron-down-16.svg', + $type: 'link', + $value: '/icon/chevron-down-16.svg', }, 'icon.chevron-down-24': { - '_original': { - '$value': '/icon/chevron-down-24.svg', + _original: { + $value: '/icon/chevron-down-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-down-24', - '$type': 'link', - '$value': '/icon/chevron-down-24.svg', + $type: 'link', + $value: '/icon/chevron-down-24.svg', }, 'icon.chevron-left-16': { - '_original': { - '$value': '/icon/chevron-left-16.svg', + _original: { + $value: '/icon/chevron-left-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-left-16', - '$type': 'link', - '$value': '/icon/chevron-left-16.svg', + $type: 'link', + $value: '/icon/chevron-left-16.svg', }, 'icon.chevron-left-24': { - '_original': { - '$value': '/icon/chevron-left-24.svg', + _original: { + $value: '/icon/chevron-left-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-left-24', - '$type': 'link', - '$value': '/icon/chevron-left-24.svg', + $type: 'link', + $value: '/icon/chevron-left-24.svg', }, 'icon.chevron-right-16': { - '_original': { - '$value': '/icon/chevron-right-16.svg', + _original: { + $value: '/icon/chevron-right-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-right-16', - '$type': 'link', - '$value': '/icon/chevron-right-16.svg', + $type: 'link', + $value: '/icon/chevron-right-16.svg', }, 'icon.chevron-right-24': { - '_original': { - '$value': '/icon/chevron-right-24.svg', + _original: { + $value: '/icon/chevron-right-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-right-24', - '$type': 'link', - '$value': '/icon/chevron-right-24.svg', + $type: 'link', + $value: '/icon/chevron-right-24.svg', }, 'icon.chevron-up-16': { - '_original': { - '$value': '/icon/chevron-up-16.svg', + _original: { + $value: '/icon/chevron-up-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-up-16', - '$type': 'link', - '$value': '/icon/chevron-up-16.svg', + $type: 'link', + $value: '/icon/chevron-up-16.svg', }, 'icon.chevron-up-24': { - '_original': { - '$value': '/icon/chevron-up-24.svg', + _original: { + $value: '/icon/chevron-up-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.chevron-up-24', - '$type': 'link', - '$value': '/icon/chevron-up-24.svg', + $type: 'link', + $value: '/icon/chevron-up-24.svg', }, 'icon.circle-16': { - '_original': { - '$value': '/icon/circle-16.svg', + _original: { + $value: '/icon/circle-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.circle-16', - '$type': 'link', - '$value': '/icon/circle-16.svg', + $type: 'link', + $value: '/icon/circle-16.svg', }, 'icon.circle-24': { - '_original': { - '$value': '/icon/circle-24.svg', + _original: { + $value: '/icon/circle-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.circle-24', - '$type': 'link', - '$value': '/icon/circle-24.svg', + $type: 'link', + $value: '/icon/circle-24.svg', }, 'icon.circle-slash-16': { - '_original': { - '$value': '/icon/circle-slash-16.svg', + _original: { + $value: '/icon/circle-slash-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.circle-slash-16', - '$type': 'link', - '$value': '/icon/circle-slash-16.svg', + $type: 'link', + $value: '/icon/circle-slash-16.svg', }, 'icon.circle-slash-24': { - '_original': { - '$value': '/icon/circle-slash-24.svg', + _original: { + $value: '/icon/circle-slash-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.circle-slash-24', - '$type': 'link', - '$value': '/icon/circle-slash-24.svg', + $type: 'link', + $value: '/icon/circle-slash-24.svg', }, 'icon.clock-16': { - '_original': { - '$value': '/icon/clock-16.svg', + _original: { + $value: '/icon/clock-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.clock-16', - '$type': 'link', - '$value': '/icon/clock-16.svg', + $type: 'link', + $value: '/icon/clock-16.svg', }, 'icon.clock-24': { - '_original': { - '$value': '/icon/clock-24.svg', + _original: { + $value: '/icon/clock-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.clock-24', - '$type': 'link', - '$value': '/icon/clock-24.svg', + $type: 'link', + $value: '/icon/clock-24.svg', }, 'icon.code-16': { - '_original': { - '$value': '/icon/code-16.svg', + _original: { + $value: '/icon/code-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-16', - '$type': 'link', - '$value': '/icon/code-16.svg', + $type: 'link', + $value: '/icon/code-16.svg', }, 'icon.code-24': { - '_original': { - '$value': '/icon/code-24.svg', + _original: { + $value: '/icon/code-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-24', - '$type': 'link', - '$value': '/icon/code-24.svg', + $type: 'link', + $value: '/icon/code-24.svg', }, 'icon.code-of-conduct-16': { - '_original': { - '$value': '/icon/code-of-conduct-16.svg', + _original: { + $value: '/icon/code-of-conduct-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-of-conduct-16', - '$type': 'link', - '$value': '/icon/code-of-conduct-16.svg', + $type: 'link', + $value: '/icon/code-of-conduct-16.svg', }, 'icon.code-of-conduct-24': { - '_original': { - '$value': '/icon/code-of-conduct-24.svg', + _original: { + $value: '/icon/code-of-conduct-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-of-conduct-24', - '$type': 'link', - '$value': '/icon/code-of-conduct-24.svg', + $type: 'link', + $value: '/icon/code-of-conduct-24.svg', }, 'icon.code-review-16': { - '_original': { - '$value': '/icon/code-review-16.svg', + _original: { + $value: '/icon/code-review-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-review-16', - '$type': 'link', - '$value': '/icon/code-review-16.svg', + $type: 'link', + $value: '/icon/code-review-16.svg', }, 'icon.code-review-24': { - '_original': { - '$value': '/icon/code-review-24.svg', + _original: { + $value: '/icon/code-review-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-review-24', - '$type': 'link', - '$value': '/icon/code-review-24.svg', + $type: 'link', + $value: '/icon/code-review-24.svg', }, 'icon.code-square-16': { - '_original': { - '$value': '/icon/code-square-16.svg', + _original: { + $value: '/icon/code-square-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-square-16', - '$type': 'link', - '$value': '/icon/code-square-16.svg', + $type: 'link', + $value: '/icon/code-square-16.svg', }, 'icon.code-square-24': { - '_original': { - '$value': '/icon/code-square-24.svg', + _original: { + $value: '/icon/code-square-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.code-square-24', - '$type': 'link', - '$value': '/icon/code-square-24.svg', + $type: 'link', + $value: '/icon/code-square-24.svg', }, 'icon.codescan-16': { - '_original': { - '$value': '/icon/codescan-16.svg', + _original: { + $value: '/icon/codescan-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.codescan-16', - '$type': 'link', - '$value': '/icon/codescan-16.svg', + $type: 'link', + $value: '/icon/codescan-16.svg', }, 'icon.codescan-24': { - '_original': { - '$value': '/icon/codescan-24.svg', + _original: { + $value: '/icon/codescan-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.codescan-24', - '$type': 'link', - '$value': '/icon/codescan-24.svg', + $type: 'link', + $value: '/icon/codescan-24.svg', }, 'icon.codescan-checkmark-16': { - '_original': { - '$value': '/icon/codescan-checkmark-16.svg', + _original: { + $value: '/icon/codescan-checkmark-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.codescan-checkmark-16', - '$type': 'link', - '$value': '/icon/codescan-checkmark-16.svg', + $type: 'link', + $value: '/icon/codescan-checkmark-16.svg', }, 'icon.codescan-checkmark-24': { - '_original': { - '$value': '/icon/codescan-checkmark-24.svg', + _original: { + $value: '/icon/codescan-checkmark-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.codescan-checkmark-24', - '$type': 'link', - '$value': '/icon/codescan-checkmark-24.svg', + $type: 'link', + $value: '/icon/codescan-checkmark-24.svg', }, 'icon.codespaces-16': { - '_original': { - '$value': '/icon/codespaces-16.svg', + _original: { + $value: '/icon/codespaces-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.codespaces-16', - '$type': 'link', - '$value': '/icon/codespaces-16.svg', + $type: 'link', + $value: '/icon/codespaces-16.svg', }, 'icon.codespaces-24': { - '_original': { - '$value': '/icon/codespaces-24.svg', + _original: { + $value: '/icon/codespaces-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.codespaces-24', - '$type': 'link', - '$value': '/icon/codespaces-24.svg', + $type: 'link', + $value: '/icon/codespaces-24.svg', }, 'icon.columns-16': { - '_original': { - '$value': '/icon/columns-16.svg', + _original: { + $value: '/icon/columns-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.columns-16', - '$type': 'link', - '$value': '/icon/columns-16.svg', + $type: 'link', + $value: '/icon/columns-16.svg', }, 'icon.columns-24': { - '_original': { - '$value': '/icon/columns-24.svg', + _original: { + $value: '/icon/columns-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.columns-24', - '$type': 'link', - '$value': '/icon/columns-24.svg', + $type: 'link', + $value: '/icon/columns-24.svg', }, 'icon.comment-16': { - '_original': { - '$value': '/icon/comment-16.svg', + _original: { + $value: '/icon/comment-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.comment-16', - '$type': 'link', - '$value': '/icon/comment-16.svg', + $type: 'link', + $value: '/icon/comment-16.svg', }, 'icon.comment-24': { - '_original': { - '$value': '/icon/comment-24.svg', + _original: { + $value: '/icon/comment-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.comment-24', - '$type': 'link', - '$value': '/icon/comment-24.svg', + $type: 'link', + $value: '/icon/comment-24.svg', }, 'icon.comment-discussion-16': { - '_original': { - '$value': '/icon/comment-discussion-16.svg', + _original: { + $value: '/icon/comment-discussion-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.comment-discussion-16', - '$type': 'link', - '$value': '/icon/comment-discussion-16.svg', + $type: 'link', + $value: '/icon/comment-discussion-16.svg', }, 'icon.comment-discussion-24': { - '_original': { - '$value': '/icon/comment-discussion-24.svg', + _original: { + $value: '/icon/comment-discussion-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.comment-discussion-24', - '$type': 'link', - '$value': '/icon/comment-discussion-24.svg', + $type: 'link', + $value: '/icon/comment-discussion-24.svg', }, 'icon.commit-24': { - '_original': { - '$value': '/icon/commit-24.svg', + _original: { + $value: '/icon/commit-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.commit-24', - '$type': 'link', - '$value': '/icon/commit-24.svg', + $type: 'link', + $value: '/icon/commit-24.svg', }, 'icon.container-16': { - '_original': { - '$value': '/icon/container-16.svg', + _original: { + $value: '/icon/container-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.container-16', - '$type': 'link', - '$value': '/icon/container-16.svg', + $type: 'link', + $value: '/icon/container-16.svg', }, 'icon.container-24': { - '_original': { - '$value': '/icon/container-24.svg', + _original: { + $value: '/icon/container-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.container-24', - '$type': 'link', - '$value': '/icon/container-24.svg', + $type: 'link', + $value: '/icon/container-24.svg', }, 'icon.copy-16': { - '_original': { - '$value': '/icon/copy-16.svg', + _original: { + $value: '/icon/copy-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.copy-16', - '$type': 'link', - '$value': '/icon/copy-16.svg', + $type: 'link', + $value: '/icon/copy-16.svg', }, 'icon.copy-24': { - '_original': { - '$value': '/icon/copy-24.svg', + _original: { + $value: '/icon/copy-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.copy-24', - '$type': 'link', - '$value': '/icon/copy-24.svg', + $type: 'link', + $value: '/icon/copy-24.svg', }, 'icon.cpu-16': { - '_original': { - '$value': '/icon/cpu-16.svg', + _original: { + $value: '/icon/cpu-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.cpu-16', - '$type': 'link', - '$value': '/icon/cpu-16.svg', + $type: 'link', + $value: '/icon/cpu-16.svg', }, 'icon.cpu-24': { - '_original': { - '$value': '/icon/cpu-24.svg', + _original: { + $value: '/icon/cpu-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.cpu-24', - '$type': 'link', - '$value': '/icon/cpu-24.svg', + $type: 'link', + $value: '/icon/cpu-24.svg', }, 'icon.credit-card-16': { - '_original': { - '$value': '/icon/credit-card-16.svg', + _original: { + $value: '/icon/credit-card-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.credit-card-16', - '$type': 'link', - '$value': '/icon/credit-card-16.svg', + $type: 'link', + $value: '/icon/credit-card-16.svg', }, 'icon.credit-card-24': { - '_original': { - '$value': '/icon/credit-card-24.svg', + _original: { + $value: '/icon/credit-card-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.credit-card-24', - '$type': 'link', - '$value': '/icon/credit-card-24.svg', + $type: 'link', + $value: '/icon/credit-card-24.svg', }, 'icon.cross-reference-16': { - '_original': { - '$value': '/icon/cross-reference-16.svg', + _original: { + $value: '/icon/cross-reference-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.cross-reference-16', - '$type': 'link', - '$value': '/icon/cross-reference-16.svg', + $type: 'link', + $value: '/icon/cross-reference-16.svg', }, 'icon.cross-reference-24': { - '_original': { - '$value': '/icon/cross-reference-24.svg', + _original: { + $value: '/icon/cross-reference-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.cross-reference-24', - '$type': 'link', - '$value': '/icon/cross-reference-24.svg', + $type: 'link', + $value: '/icon/cross-reference-24.svg', }, 'icon.dash-16': { - '_original': { - '$value': '/icon/dash-16.svg', + _original: { + $value: '/icon/dash-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dash-16', - '$type': 'link', - '$value': '/icon/dash-16.svg', + $type: 'link', + $value: '/icon/dash-16.svg', }, 'icon.dash-24': { - '_original': { - '$value': '/icon/dash-24.svg', + _original: { + $value: '/icon/dash-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dash-24', - '$type': 'link', - '$value': '/icon/dash-24.svg', + $type: 'link', + $value: '/icon/dash-24.svg', }, 'icon.database-16': { - '_original': { - '$value': '/icon/database-16.svg', + _original: { + $value: '/icon/database-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.database-16', - '$type': 'link', - '$value': '/icon/database-16.svg', + $type: 'link', + $value: '/icon/database-16.svg', }, 'icon.database-24': { - '_original': { - '$value': '/icon/database-24.svg', + _original: { + $value: '/icon/database-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.database-24', - '$type': 'link', - '$value': '/icon/database-24.svg', + $type: 'link', + $value: '/icon/database-24.svg', }, 'icon.dependabot-16': { - '_original': { - '$value': '/icon/dependabot-16.svg', + _original: { + $value: '/icon/dependabot-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dependabot-16', - '$type': 'link', - '$value': '/icon/dependabot-16.svg', + $type: 'link', + $value: '/icon/dependabot-16.svg', }, 'icon.dependabot-24': { - '_original': { - '$value': '/icon/dependabot-24.svg', + _original: { + $value: '/icon/dependabot-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dependabot-24', - '$type': 'link', - '$value': '/icon/dependabot-24.svg', + $type: 'link', + $value: '/icon/dependabot-24.svg', }, 'icon.desktop-download-16': { - '_original': { - '$value': '/icon/desktop-download-16.svg', + _original: { + $value: '/icon/desktop-download-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.desktop-download-16', - '$type': 'link', - '$value': '/icon/desktop-download-16.svg', + $type: 'link', + $value: '/icon/desktop-download-16.svg', }, 'icon.desktop-download-24': { - '_original': { - '$value': '/icon/desktop-download-24.svg', + _original: { + $value: '/icon/desktop-download-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.desktop-download-24', - '$type': 'link', - '$value': '/icon/desktop-download-24.svg', + $type: 'link', + $value: '/icon/desktop-download-24.svg', }, 'icon.device-camera-16': { - '_original': { - '$value': '/icon/device-camera-16.svg', + _original: { + $value: '/icon/device-camera-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-camera-16', - '$type': 'link', - '$value': '/icon/device-camera-16.svg', + $type: 'link', + $value: '/icon/device-camera-16.svg', }, 'icon.device-camera-video-16': { - '_original': { - '$value': '/icon/device-camera-video-16.svg', + _original: { + $value: '/icon/device-camera-video-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-camera-video-16', - '$type': 'link', - '$value': '/icon/device-camera-video-16.svg', + $type: 'link', + $value: '/icon/device-camera-video-16.svg', }, 'icon.device-camera-video-24': { - '_original': { - '$value': '/icon/device-camera-video-24.svg', + _original: { + $value: '/icon/device-camera-video-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-camera-video-24', - '$type': 'link', - '$value': '/icon/device-camera-video-24.svg', + $type: 'link', + $value: '/icon/device-camera-video-24.svg', }, 'icon.device-desktop-16': { - '_original': { - '$value': '/icon/device-desktop-16.svg', + _original: { + $value: '/icon/device-desktop-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-desktop-16', - '$type': 'link', - '$value': '/icon/device-desktop-16.svg', + $type: 'link', + $value: '/icon/device-desktop-16.svg', }, 'icon.device-desktop-24': { - '_original': { - '$value': '/icon/device-desktop-24.svg', + _original: { + $value: '/icon/device-desktop-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-desktop-24', - '$type': 'link', - '$value': '/icon/device-desktop-24.svg', + $type: 'link', + $value: '/icon/device-desktop-24.svg', }, 'icon.device-mobile-16': { - '_original': { - '$value': '/icon/device-mobile-16.svg', + _original: { + $value: '/icon/device-mobile-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-mobile-16', - '$type': 'link', - '$value': '/icon/device-mobile-16.svg', + $type: 'link', + $value: '/icon/device-mobile-16.svg', }, 'icon.device-mobile-24': { - '_original': { - '$value': '/icon/device-mobile-24.svg', + _original: { + $value: '/icon/device-mobile-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.device-mobile-24', - '$type': 'link', - '$value': '/icon/device-mobile-24.svg', + $type: 'link', + $value: '/icon/device-mobile-24.svg', }, 'icon.diamond-16': { - '_original': { - '$value': '/icon/diamond-16.svg', + _original: { + $value: '/icon/diamond-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diamond-16', - '$type': 'link', - '$value': '/icon/diamond-16.svg', + $type: 'link', + $value: '/icon/diamond-16.svg', }, 'icon.diamond-24': { - '_original': { - '$value': '/icon/diamond-24.svg', + _original: { + $value: '/icon/diamond-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diamond-24', - '$type': 'link', - '$value': '/icon/diamond-24.svg', + $type: 'link', + $value: '/icon/diamond-24.svg', }, 'icon.diff-16': { - '_original': { - '$value': '/icon/diff-16.svg', + _original: { + $value: '/icon/diff-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-16', - '$type': 'link', - '$value': '/icon/diff-16.svg', + $type: 'link', + $value: '/icon/diff-16.svg', }, 'icon.diff-24': { - '_original': { - '$value': '/icon/diff-24.svg', + _original: { + $value: '/icon/diff-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-24', - '$type': 'link', - '$value': '/icon/diff-24.svg', + $type: 'link', + $value: '/icon/diff-24.svg', }, 'icon.diff-added-16': { - '_original': { - '$value': '/icon/diff-added-16.svg', + _original: { + $value: '/icon/diff-added-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-added-16', - '$type': 'link', - '$value': '/icon/diff-added-16.svg', + $type: 'link', + $value: '/icon/diff-added-16.svg', }, 'icon.diff-ignored-16': { - '_original': { - '$value': '/icon/diff-ignored-16.svg', + _original: { + $value: '/icon/diff-ignored-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-ignored-16', - '$type': 'link', - '$value': '/icon/diff-ignored-16.svg', + $type: 'link', + $value: '/icon/diff-ignored-16.svg', }, 'icon.diff-modified-16': { - '_original': { - '$value': '/icon/diff-modified-16.svg', + _original: { + $value: '/icon/diff-modified-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-modified-16', - '$type': 'link', - '$value': '/icon/diff-modified-16.svg', + $type: 'link', + $value: '/icon/diff-modified-16.svg', }, 'icon.diff-removed-16': { - '_original': { - '$value': '/icon/diff-removed-16.svg', + _original: { + $value: '/icon/diff-removed-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-removed-16', - '$type': 'link', - '$value': '/icon/diff-removed-16.svg', + $type: 'link', + $value: '/icon/diff-removed-16.svg', }, 'icon.diff-renamed-16': { - '_original': { - '$value': '/icon/diff-renamed-16.svg', + _original: { + $value: '/icon/diff-renamed-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.diff-renamed-16', - '$type': 'link', - '$value': '/icon/diff-renamed-16.svg', + $type: 'link', + $value: '/icon/diff-renamed-16.svg', }, 'icon.dot-16': { - '_original': { - '$value': '/icon/dot-16.svg', + _original: { + $value: '/icon/dot-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dot-16', - '$type': 'link', - '$value': '/icon/dot-16.svg', + $type: 'link', + $value: '/icon/dot-16.svg', }, 'icon.dot-24': { - '_original': { - '$value': '/icon/dot-24.svg', + _original: { + $value: '/icon/dot-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dot-24', - '$type': 'link', - '$value': '/icon/dot-24.svg', + $type: 'link', + $value: '/icon/dot-24.svg', }, 'icon.dot-fill-16': { - '_original': { - '$value': '/icon/dot-fill-16.svg', + _original: { + $value: '/icon/dot-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dot-fill-16', - '$type': 'link', - '$value': '/icon/dot-fill-16.svg', + $type: 'link', + $value: '/icon/dot-fill-16.svg', }, 'icon.dot-fill-24': { - '_original': { - '$value': '/icon/dot-fill-24.svg', + _original: { + $value: '/icon/dot-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.dot-fill-24', - '$type': 'link', - '$value': '/icon/dot-fill-24.svg', + $type: 'link', + $value: '/icon/dot-fill-24.svg', }, 'icon.download-16': { - '_original': { - '$value': '/icon/download-16.svg', + _original: { + $value: '/icon/download-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.download-16', - '$type': 'link', - '$value': '/icon/download-16.svg', + $type: 'link', + $value: '/icon/download-16.svg', }, 'icon.download-24': { - '_original': { - '$value': '/icon/download-24.svg', + _original: { + $value: '/icon/download-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.download-24', - '$type': 'link', - '$value': '/icon/download-24.svg', + $type: 'link', + $value: '/icon/download-24.svg', }, 'icon.duplicate-16': { - '_original': { - '$value': '/icon/duplicate-16.svg', + _original: { + $value: '/icon/duplicate-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.duplicate-16', - '$type': 'link', - '$value': '/icon/duplicate-16.svg', + $type: 'link', + $value: '/icon/duplicate-16.svg', }, 'icon.duplicate-24': { - '_original': { - '$value': '/icon/duplicate-24.svg', + _original: { + $value: '/icon/duplicate-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.duplicate-24', - '$type': 'link', - '$value': '/icon/duplicate-24.svg', + $type: 'link', + $value: '/icon/duplicate-24.svg', }, 'icon.ellipsis-16': { - '_original': { - '$value': '/icon/ellipsis-16.svg', + _original: { + $value: '/icon/ellipsis-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.ellipsis-16', - '$type': 'link', - '$value': '/icon/ellipsis-16.svg', + $type: 'link', + $value: '/icon/ellipsis-16.svg', }, 'icon.eye-16': { - '_original': { - '$value': '/icon/eye-16.svg', + _original: { + $value: '/icon/eye-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.eye-16', - '$type': 'link', - '$value': '/icon/eye-16.svg', + $type: 'link', + $value: '/icon/eye-16.svg', }, 'icon.eye-24': { - '_original': { - '$value': '/icon/eye-24.svg', + _original: { + $value: '/icon/eye-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.eye-24', - '$type': 'link', - '$value': '/icon/eye-24.svg', + $type: 'link', + $value: '/icon/eye-24.svg', }, 'icon.eye-closed-16': { - '_original': { - '$value': '/icon/eye-closed-16.svg', + _original: { + $value: '/icon/eye-closed-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.eye-closed-16', - '$type': 'link', - '$value': '/icon/eye-closed-16.svg', + $type: 'link', + $value: '/icon/eye-closed-16.svg', }, 'icon.eye-closed-24': { - '_original': { - '$value': '/icon/eye-closed-24.svg', + _original: { + $value: '/icon/eye-closed-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.eye-closed-24', - '$type': 'link', - '$value': '/icon/eye-closed-24.svg', + $type: 'link', + $value: '/icon/eye-closed-24.svg', }, 'icon.file-16': { - '_original': { - '$value': '/icon/file-16.svg', + _original: { + $value: '/icon/file-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-16', - '$type': 'link', - '$value': '/icon/file-16.svg', + $type: 'link', + $value: '/icon/file-16.svg', }, 'icon.file-24': { - '_original': { - '$value': '/icon/file-24.svg', + _original: { + $value: '/icon/file-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-24', - '$type': 'link', - '$value': '/icon/file-24.svg', + $type: 'link', + $value: '/icon/file-24.svg', }, 'icon.file-badge-16': { - '_original': { - '$value': '/icon/file-badge-16.svg', + _original: { + $value: '/icon/file-badge-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-badge-16', - '$type': 'link', - '$value': '/icon/file-badge-16.svg', + $type: 'link', + $value: '/icon/file-badge-16.svg', }, 'icon.file-binary-16': { - '_original': { - '$value': '/icon/file-binary-16.svg', + _original: { + $value: '/icon/file-binary-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-binary-16', - '$type': 'link', - '$value': '/icon/file-binary-16.svg', + $type: 'link', + $value: '/icon/file-binary-16.svg', }, 'icon.file-binary-24': { - '_original': { - '$value': '/icon/file-binary-24.svg', + _original: { + $value: '/icon/file-binary-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-binary-24', - '$type': 'link', - '$value': '/icon/file-binary-24.svg', + $type: 'link', + $value: '/icon/file-binary-24.svg', }, 'icon.file-code-16': { - '_original': { - '$value': '/icon/file-code-16.svg', + _original: { + $value: '/icon/file-code-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-code-16', - '$type': 'link', - '$value': '/icon/file-code-16.svg', + $type: 'link', + $value: '/icon/file-code-16.svg', }, 'icon.file-code-24': { - '_original': { - '$value': '/icon/file-code-24.svg', + _original: { + $value: '/icon/file-code-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-code-24', - '$type': 'link', - '$value': '/icon/file-code-24.svg', + $type: 'link', + $value: '/icon/file-code-24.svg', }, 'icon.file-diff-16': { - '_original': { - '$value': '/icon/file-diff-16.svg', + _original: { + $value: '/icon/file-diff-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-diff-16', - '$type': 'link', - '$value': '/icon/file-diff-16.svg', + $type: 'link', + $value: '/icon/file-diff-16.svg', }, 'icon.file-diff-24': { - '_original': { - '$value': '/icon/file-diff-24.svg', + _original: { + $value: '/icon/file-diff-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-diff-24', - '$type': 'link', - '$value': '/icon/file-diff-24.svg', + $type: 'link', + $value: '/icon/file-diff-24.svg', }, 'icon.file-directory-16': { - '_original': { - '$value': '/icon/file-directory-16.svg', + _original: { + $value: '/icon/file-directory-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-directory-16', - '$type': 'link', - '$value': '/icon/file-directory-16.svg', + $type: 'link', + $value: '/icon/file-directory-16.svg', }, 'icon.file-directory-24': { - '_original': { - '$value': '/icon/file-directory-24.svg', + _original: { + $value: '/icon/file-directory-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-directory-24', - '$type': 'link', - '$value': '/icon/file-directory-24.svg', + $type: 'link', + $value: '/icon/file-directory-24.svg', }, 'icon.file-directory-fill-24': { - '_original': { - '$value': '/icon/file-directory-fill-24.svg', + _original: { + $value: '/icon/file-directory-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-directory-fill-24', - '$type': 'link', - '$value': '/icon/file-directory-fill-24.svg', + $type: 'link', + $value: '/icon/file-directory-fill-24.svg', }, 'icon.file-media-24': { - '_original': { - '$value': '/icon/file-media-24.svg', + _original: { + $value: '/icon/file-media-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-media-24', - '$type': 'link', - '$value': '/icon/file-media-24.svg', + $type: 'link', + $value: '/icon/file-media-24.svg', }, 'icon.file-submodule-16': { - '_original': { - '$value': '/icon/file-submodule-16.svg', + _original: { + $value: '/icon/file-submodule-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-submodule-16', - '$type': 'link', - '$value': '/icon/file-submodule-16.svg', + $type: 'link', + $value: '/icon/file-submodule-16.svg', }, 'icon.file-submodule-24': { - '_original': { - '$value': '/icon/file-submodule-24.svg', + _original: { + $value: '/icon/file-submodule-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-submodule-24', - '$type': 'link', - '$value': '/icon/file-submodule-24.svg', + $type: 'link', + $value: '/icon/file-submodule-24.svg', }, 'icon.file-symlink-file-16': { - '_original': { - '$value': '/icon/file-symlink-file-16.svg', + _original: { + $value: '/icon/file-symlink-file-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-symlink-file-16', - '$type': 'link', - '$value': '/icon/file-symlink-file-16.svg', + $type: 'link', + $value: '/icon/file-symlink-file-16.svg', }, 'icon.file-symlink-file-24': { - '_original': { - '$value': '/icon/file-symlink-file-24.svg', + _original: { + $value: '/icon/file-symlink-file-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-symlink-file-24', - '$type': 'link', - '$value': '/icon/file-symlink-file-24.svg', + $type: 'link', + $value: '/icon/file-symlink-file-24.svg', }, 'icon.file-zip-16': { - '_original': { - '$value': '/icon/file-zip-16.svg', + _original: { + $value: '/icon/file-zip-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-zip-16', - '$type': 'link', - '$value': '/icon/file-zip-16.svg', + $type: 'link', + $value: '/icon/file-zip-16.svg', }, 'icon.file-zip-24': { - '_original': { - '$value': '/icon/file-zip-24.svg', + _original: { + $value: '/icon/file-zip-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.file-zip-24', - '$type': 'link', - '$value': '/icon/file-zip-24.svg', + $type: 'link', + $value: '/icon/file-zip-24.svg', }, 'icon.filter-16': { - '_original': { - '$value': '/icon/filter-16.svg', + _original: { + $value: '/icon/filter-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.filter-16', - '$type': 'link', - '$value': '/icon/filter-16.svg', + $type: 'link', + $value: '/icon/filter-16.svg', }, 'icon.filter-24': { - '_original': { - '$value': '/icon/filter-24.svg', + _original: { + $value: '/icon/filter-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.filter-24', - '$type': 'link', - '$value': '/icon/filter-24.svg', + $type: 'link', + $value: '/icon/filter-24.svg', }, 'icon.flame-16': { - '_original': { - '$value': '/icon/flame-16.svg', + _original: { + $value: '/icon/flame-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.flame-16', - '$type': 'link', - '$value': '/icon/flame-16.svg', + $type: 'link', + $value: '/icon/flame-16.svg', }, 'icon.flame-24': { - '_original': { - '$value': '/icon/flame-24.svg', + _original: { + $value: '/icon/flame-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.flame-24', - '$type': 'link', - '$value': '/icon/flame-24.svg', + $type: 'link', + $value: '/icon/flame-24.svg', }, 'icon.fold-16': { - '_original': { - '$value': '/icon/fold-16.svg', + _original: { + $value: '/icon/fold-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.fold-16', - '$type': 'link', - '$value': '/icon/fold-16.svg', + $type: 'link', + $value: '/icon/fold-16.svg', }, 'icon.fold-24': { - '_original': { - '$value': '/icon/fold-24.svg', + _original: { + $value: '/icon/fold-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.fold-24', - '$type': 'link', - '$value': '/icon/fold-24.svg', + $type: 'link', + $value: '/icon/fold-24.svg', }, 'icon.fold-down-16': { - '_original': { - '$value': '/icon/fold-down-16.svg', + _original: { + $value: '/icon/fold-down-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.fold-down-16', - '$type': 'link', - '$value': '/icon/fold-down-16.svg', + $type: 'link', + $value: '/icon/fold-down-16.svg', }, 'icon.fold-down-24': { - '_original': { - '$value': '/icon/fold-down-24.svg', + _original: { + $value: '/icon/fold-down-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.fold-down-24', - '$type': 'link', - '$value': '/icon/fold-down-24.svg', + $type: 'link', + $value: '/icon/fold-down-24.svg', }, 'icon.fold-up-16': { - '_original': { - '$value': '/icon/fold-up-16.svg', + _original: { + $value: '/icon/fold-up-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.fold-up-16', - '$type': 'link', - '$value': '/icon/fold-up-16.svg', + $type: 'link', + $value: '/icon/fold-up-16.svg', }, 'icon.fold-up-24': { - '_original': { - '$value': '/icon/fold-up-24.svg', + _original: { + $value: '/icon/fold-up-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.fold-up-24', - '$type': 'link', - '$value': '/icon/fold-up-24.svg', + $type: 'link', + $value: '/icon/fold-up-24.svg', }, 'icon.gear-16': { - '_original': { - '$value': '/icon/gear-16.svg', + _original: { + $value: '/icon/gear-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.gear-16', - '$type': 'link', - '$value': '/icon/gear-16.svg', + $type: 'link', + $value: '/icon/gear-16.svg', }, 'icon.gear-24': { - '_original': { - '$value': '/icon/gear-24.svg', + _original: { + $value: '/icon/gear-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.gear-24', - '$type': 'link', - '$value': '/icon/gear-24.svg', + $type: 'link', + $value: '/icon/gear-24.svg', }, 'icon.gift-16': { - '_original': { - '$value': '/icon/gift-16.svg', + _original: { + $value: '/icon/gift-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.gift-16', - '$type': 'link', - '$value': '/icon/gift-16.svg', + $type: 'link', + $value: '/icon/gift-16.svg', }, 'icon.gift-24': { - '_original': { - '$value': '/icon/gift-24.svg', + _original: { + $value: '/icon/gift-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.gift-24', - '$type': 'link', - '$value': '/icon/gift-24.svg', + $type: 'link', + $value: '/icon/gift-24.svg', }, 'icon.git-branch-16': { - '_original': { - '$value': '/icon/git-branch-16.svg', + _original: { + $value: '/icon/git-branch-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-branch-16', - '$type': 'link', - '$value': '/icon/git-branch-16.svg', + $type: 'link', + $value: '/icon/git-branch-16.svg', }, 'icon.git-branch-24': { - '_original': { - '$value': '/icon/git-branch-24.svg', + _original: { + $value: '/icon/git-branch-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-branch-24', - '$type': 'link', - '$value': '/icon/git-branch-24.svg', + $type: 'link', + $value: '/icon/git-branch-24.svg', }, 'icon.git-commit-16': { - '_original': { - '$value': '/icon/git-commit-16.svg', + _original: { + $value: '/icon/git-commit-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-commit-16', - '$type': 'link', - '$value': '/icon/git-commit-16.svg', + $type: 'link', + $value: '/icon/git-commit-16.svg', }, 'icon.git-commit-24': { - '_original': { - '$value': '/icon/git-commit-24.svg', + _original: { + $value: '/icon/git-commit-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-commit-24', - '$type': 'link', - '$value': '/icon/git-commit-24.svg', + $type: 'link', + $value: '/icon/git-commit-24.svg', }, 'icon.git-compare-16': { - '_original': { - '$value': '/icon/git-compare-16.svg', + _original: { + $value: '/icon/git-compare-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-compare-16', - '$type': 'link', - '$value': '/icon/git-compare-16.svg', + $type: 'link', + $value: '/icon/git-compare-16.svg', }, 'icon.git-compare-24': { - '_original': { - '$value': '/icon/git-compare-24.svg', + _original: { + $value: '/icon/git-compare-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-compare-24', - '$type': 'link', - '$value': '/icon/git-compare-24.svg', + $type: 'link', + $value: '/icon/git-compare-24.svg', }, 'icon.git-merge-16': { - '_original': { - '$value': '/icon/git-merge-16.svg', + _original: { + $value: '/icon/git-merge-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-merge-16', - '$type': 'link', - '$value': '/icon/git-merge-16.svg', + $type: 'link', + $value: '/icon/git-merge-16.svg', }, 'icon.git-merge-24': { - '_original': { - '$value': '/icon/git-merge-24.svg', + _original: { + $value: '/icon/git-merge-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-merge-24', - '$type': 'link', - '$value': '/icon/git-merge-24.svg', + $type: 'link', + $value: '/icon/git-merge-24.svg', }, 'icon.git-pull-request-16': { - '_original': { - '$value': '/icon/git-pull-request-16.svg', + _original: { + $value: '/icon/git-pull-request-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-pull-request-16', - '$type': 'link', - '$value': '/icon/git-pull-request-16.svg', + $type: 'link', + $value: '/icon/git-pull-request-16.svg', }, 'icon.git-pull-request-24': { - '_original': { - '$value': '/icon/git-pull-request-24.svg', + _original: { + $value: '/icon/git-pull-request-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-pull-request-24', - '$type': 'link', - '$value': '/icon/git-pull-request-24.svg', + $type: 'link', + $value: '/icon/git-pull-request-24.svg', }, 'icon.git-pull-request-closed-16': { - '_original': { - '$value': '/icon/git-pull-request-closed-16.svg', + _original: { + $value: '/icon/git-pull-request-closed-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-pull-request-closed-16', - '$type': 'link', - '$value': '/icon/git-pull-request-closed-16.svg', + $type: 'link', + $value: '/icon/git-pull-request-closed-16.svg', }, 'icon.git-pull-request-closed-24': { - '_original': { - '$value': '/icon/git-pull-request-closed-24.svg', + _original: { + $value: '/icon/git-pull-request-closed-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-pull-request-closed-24', - '$type': 'link', - '$value': '/icon/git-pull-request-closed-24.svg', + $type: 'link', + $value: '/icon/git-pull-request-closed-24.svg', }, 'icon.git-pull-request-draft-16': { - '_original': { - '$value': '/icon/git-pull-request-draft-16.svg', + _original: { + $value: '/icon/git-pull-request-draft-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-pull-request-draft-16', - '$type': 'link', - '$value': '/icon/git-pull-request-draft-16.svg', + $type: 'link', + $value: '/icon/git-pull-request-draft-16.svg', }, 'icon.git-pull-request-draft-24': { - '_original': { - '$value': '/icon/git-pull-request-draft-24.svg', + _original: { + $value: '/icon/git-pull-request-draft-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.git-pull-request-draft-24', - '$type': 'link', - '$value': '/icon/git-pull-request-draft-24.svg', + $type: 'link', + $value: '/icon/git-pull-request-draft-24.svg', }, 'icon.globe-16': { - '_original': { - '$value': '/icon/globe-16.svg', + _original: { + $value: '/icon/globe-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.globe-16', - '$type': 'link', - '$value': '/icon/globe-16.svg', + $type: 'link', + $value: '/icon/globe-16.svg', }, 'icon.globe-24': { - '_original': { - '$value': '/icon/globe-24.svg', + _original: { + $value: '/icon/globe-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.globe-24', - '$type': 'link', - '$value': '/icon/globe-24.svg', + $type: 'link', + $value: '/icon/globe-24.svg', }, 'icon.grabber-16': { - '_original': { - '$value': '/icon/grabber-16.svg', + _original: { + $value: '/icon/grabber-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.grabber-16', - '$type': 'link', - '$value': '/icon/grabber-16.svg', + $type: 'link', + $value: '/icon/grabber-16.svg', }, 'icon.grabber-24': { - '_original': { - '$value': '/icon/grabber-24.svg', + _original: { + $value: '/icon/grabber-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.grabber-24', - '$type': 'link', - '$value': '/icon/grabber-24.svg', + $type: 'link', + $value: '/icon/grabber-24.svg', }, 'icon.graph-16': { - '_original': { - '$value': '/icon/graph-16.svg', + _original: { + $value: '/icon/graph-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.graph-16', - '$type': 'link', - '$value': '/icon/graph-16.svg', + $type: 'link', + $value: '/icon/graph-16.svg', }, 'icon.graph-24': { - '_original': { - '$value': '/icon/graph-24.svg', + _original: { + $value: '/icon/graph-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.graph-24', - '$type': 'link', - '$value': '/icon/graph-24.svg', + $type: 'link', + $value: '/icon/graph-24.svg', }, 'icon.hash-16': { - '_original': { - '$value': '/icon/hash-16.svg', + _original: { + $value: '/icon/hash-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.hash-16', - '$type': 'link', - '$value': '/icon/hash-16.svg', + $type: 'link', + $value: '/icon/hash-16.svg', }, 'icon.hash-24': { - '_original': { - '$value': '/icon/hash-24.svg', + _original: { + $value: '/icon/hash-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.hash-24', - '$type': 'link', - '$value': '/icon/hash-24.svg', + $type: 'link', + $value: '/icon/hash-24.svg', }, 'icon.heading-16': { - '_original': { - '$value': '/icon/heading-16.svg', + _original: { + $value: '/icon/heading-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.heading-16', - '$type': 'link', - '$value': '/icon/heading-16.svg', + $type: 'link', + $value: '/icon/heading-16.svg', }, 'icon.heading-24': { - '_original': { - '$value': '/icon/heading-24.svg', + _original: { + $value: '/icon/heading-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.heading-24', - '$type': 'link', - '$value': '/icon/heading-24.svg', + $type: 'link', + $value: '/icon/heading-24.svg', }, 'icon.heart-16': { - '_original': { - '$value': '/icon/heart-16.svg', + _original: { + $value: '/icon/heart-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.heart-16', - '$type': 'link', - '$value': '/icon/heart-16.svg', + $type: 'link', + $value: '/icon/heart-16.svg', }, 'icon.heart-24': { - '_original': { - '$value': '/icon/heart-24.svg', + _original: { + $value: '/icon/heart-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.heart-24', - '$type': 'link', - '$value': '/icon/heart-24.svg', + $type: 'link', + $value: '/icon/heart-24.svg', }, 'icon.heart-fill-16': { - '_original': { - '$value': '/icon/heart-fill-16.svg', + _original: { + $value: '/icon/heart-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.heart-fill-16', - '$type': 'link', - '$value': '/icon/heart-fill-16.svg', + $type: 'link', + $value: '/icon/heart-fill-16.svg', }, 'icon.heart-fill-24': { - '_original': { - '$value': '/icon/heart-fill-24.svg', + _original: { + $value: '/icon/heart-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.heart-fill-24', - '$type': 'link', - '$value': '/icon/heart-fill-24.svg', + $type: 'link', + $value: '/icon/heart-fill-24.svg', }, 'icon.history-16': { - '_original': { - '$value': '/icon/history-16.svg', + _original: { + $value: '/icon/history-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.history-16', - '$type': 'link', - '$value': '/icon/history-16.svg', + $type: 'link', + $value: '/icon/history-16.svg', }, 'icon.history-24': { - '_original': { - '$value': '/icon/history-24.svg', + _original: { + $value: '/icon/history-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.history-24', - '$type': 'link', - '$value': '/icon/history-24.svg', + $type: 'link', + $value: '/icon/history-24.svg', }, 'icon.home-16': { - '_original': { - '$value': '/icon/home-16.svg', + _original: { + $value: '/icon/home-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.home-16', - '$type': 'link', - '$value': '/icon/home-16.svg', + $type: 'link', + $value: '/icon/home-16.svg', }, 'icon.home-24': { - '_original': { - '$value': '/icon/home-24.svg', + _original: { + $value: '/icon/home-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.home-24', - '$type': 'link', - '$value': '/icon/home-24.svg', + $type: 'link', + $value: '/icon/home-24.svg', }, 'icon.home-fill-24': { - '_original': { - '$value': '/icon/home-fill-24.svg', + _original: { + $value: '/icon/home-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.home-fill-24', - '$type': 'link', - '$value': '/icon/home-fill-24.svg', + $type: 'link', + $value: '/icon/home-fill-24.svg', }, 'icon.horizontal-rule-16': { - '_original': { - '$value': '/icon/horizontal-rule-16.svg', + _original: { + $value: '/icon/horizontal-rule-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.horizontal-rule-16', - '$type': 'link', - '$value': '/icon/horizontal-rule-16.svg', + $type: 'link', + $value: '/icon/horizontal-rule-16.svg', }, 'icon.horizontal-rule-24': { - '_original': { - '$value': '/icon/horizontal-rule-24.svg', + _original: { + $value: '/icon/horizontal-rule-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.horizontal-rule-24', - '$type': 'link', - '$value': '/icon/horizontal-rule-24.svg', + $type: 'link', + $value: '/icon/horizontal-rule-24.svg', }, 'icon.hourglass-16': { - '_original': { - '$value': '/icon/hourglass-16.svg', + _original: { + $value: '/icon/hourglass-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.hourglass-16', - '$type': 'link', - '$value': '/icon/hourglass-16.svg', + $type: 'link', + $value: '/icon/hourglass-16.svg', }, 'icon.hourglass-24': { - '_original': { - '$value': '/icon/hourglass-24.svg', + _original: { + $value: '/icon/hourglass-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.hourglass-24', - '$type': 'link', - '$value': '/icon/hourglass-24.svg', + $type: 'link', + $value: '/icon/hourglass-24.svg', }, 'icon.hubot-16': { - '_original': { - '$value': '/icon/hubot-16.svg', + _original: { + $value: '/icon/hubot-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.hubot-16', - '$type': 'link', - '$value': '/icon/hubot-16.svg', + $type: 'link', + $value: '/icon/hubot-16.svg', }, 'icon.hubot-24': { - '_original': { - '$value': '/icon/hubot-24.svg', + _original: { + $value: '/icon/hubot-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.hubot-24', - '$type': 'link', - '$value': '/icon/hubot-24.svg', + $type: 'link', + $value: '/icon/hubot-24.svg', }, 'icon.image-16': { - '_original': { - '$value': '/icon/image-16.svg', + _original: { + $value: '/icon/image-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.image-16', - '$type': 'link', - '$value': '/icon/image-16.svg', + $type: 'link', + $value: '/icon/image-16.svg', }, 'icon.image-24': { - '_original': { - '$value': '/icon/image-24.svg', + _original: { + $value: '/icon/image-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.image-24', - '$type': 'link', - '$value': '/icon/image-24.svg', + $type: 'link', + $value: '/icon/image-24.svg', }, 'icon.inbox-16': { - '_original': { - '$value': '/icon/inbox-16.svg', + _original: { + $value: '/icon/inbox-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.inbox-16', - '$type': 'link', - '$value': '/icon/inbox-16.svg', + $type: 'link', + $value: '/icon/inbox-16.svg', }, 'icon.inbox-24': { - '_original': { - '$value': '/icon/inbox-24.svg', + _original: { + $value: '/icon/inbox-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.inbox-24', - '$type': 'link', - '$value': '/icon/inbox-24.svg', + $type: 'link', + $value: '/icon/inbox-24.svg', }, 'icon.infinity-16': { - '_original': { - '$value': '/icon/infinity-16.svg', + _original: { + $value: '/icon/infinity-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.infinity-16', - '$type': 'link', - '$value': '/icon/infinity-16.svg', + $type: 'link', + $value: '/icon/infinity-16.svg', }, 'icon.infinity-24': { - '_original': { - '$value': '/icon/infinity-24.svg', + _original: { + $value: '/icon/infinity-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.infinity-24', - '$type': 'link', - '$value': '/icon/infinity-24.svg', + $type: 'link', + $value: '/icon/infinity-24.svg', }, 'icon.info-16': { - '_original': { - '$value': '/icon/info-16.svg', + _original: { + $value: '/icon/info-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.info-16', - '$type': 'link', - '$value': '/icon/info-16.svg', + $type: 'link', + $value: '/icon/info-16.svg', }, 'icon.info-24': { - '_original': { - '$value': '/icon/info-24.svg', + _original: { + $value: '/icon/info-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.info-24', - '$type': 'link', - '$value': '/icon/info-24.svg', + $type: 'link', + $value: '/icon/info-24.svg', }, 'icon.issue-closed-16': { - '_original': { - '$value': '/icon/issue-closed-16.svg', + _original: { + $value: '/icon/issue-closed-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-closed-16', - '$type': 'link', - '$value': '/icon/issue-closed-16.svg', + $type: 'link', + $value: '/icon/issue-closed-16.svg', }, 'icon.issue-closed-24': { - '_original': { - '$value': '/icon/issue-closed-24.svg', + _original: { + $value: '/icon/issue-closed-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-closed-24', - '$type': 'link', - '$value': '/icon/issue-closed-24.svg', + $type: 'link', + $value: '/icon/issue-closed-24.svg', }, 'icon.issue-draft-16': { - '_original': { - '$value': '/icon/issue-draft-16.svg', + _original: { + $value: '/icon/issue-draft-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-draft-16', - '$type': 'link', - '$value': '/icon/issue-draft-16.svg', + $type: 'link', + $value: '/icon/issue-draft-16.svg', }, 'icon.issue-draft-24': { - '_original': { - '$value': '/icon/issue-draft-24.svg', + _original: { + $value: '/icon/issue-draft-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-draft-24', - '$type': 'link', - '$value': '/icon/issue-draft-24.svg', + $type: 'link', + $value: '/icon/issue-draft-24.svg', }, 'icon.issue-opened-16': { - '_original': { - '$value': '/icon/issue-opened-16.svg', + _original: { + $value: '/icon/issue-opened-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-opened-16', - '$type': 'link', - '$value': '/icon/issue-opened-16.svg', + $type: 'link', + $value: '/icon/issue-opened-16.svg', }, 'icon.issue-opened-24': { - '_original': { - '$value': '/icon/issue-opened-24.svg', + _original: { + $value: '/icon/issue-opened-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-opened-24', - '$type': 'link', - '$value': '/icon/issue-opened-24.svg', + $type: 'link', + $value: '/icon/issue-opened-24.svg', }, 'icon.issue-reopened-16': { - '_original': { - '$value': '/icon/issue-reopened-16.svg', + _original: { + $value: '/icon/issue-reopened-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-reopened-16', - '$type': 'link', - '$value': '/icon/issue-reopened-16.svg', + $type: 'link', + $value: '/icon/issue-reopened-16.svg', }, 'icon.issue-reopened-24': { - '_original': { - '$value': '/icon/issue-reopened-24.svg', + _original: { + $value: '/icon/issue-reopened-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.issue-reopened-24', - '$type': 'link', - '$value': '/icon/issue-reopened-24.svg', + $type: 'link', + $value: '/icon/issue-reopened-24.svg', }, 'icon.italic-16': { - '_original': { - '$value': '/icon/italic-16.svg', + _original: { + $value: '/icon/italic-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.italic-16', - '$type': 'link', - '$value': '/icon/italic-16.svg', + $type: 'link', + $value: '/icon/italic-16.svg', }, 'icon.italic-24': { - '_original': { - '$value': '/icon/italic-24.svg', + _original: { + $value: '/icon/italic-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.italic-24', - '$type': 'link', - '$value': '/icon/italic-24.svg', + $type: 'link', + $value: '/icon/italic-24.svg', }, 'icon.iterations-16': { - '_original': { - '$value': '/icon/iterations-16.svg', + _original: { + $value: '/icon/iterations-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.iterations-16', - '$type': 'link', - '$value': '/icon/iterations-16.svg', + $type: 'link', + $value: '/icon/iterations-16.svg', }, 'icon.iterations-24': { - '_original': { - '$value': '/icon/iterations-24.svg', + _original: { + $value: '/icon/iterations-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.iterations-24', - '$type': 'link', - '$value': '/icon/iterations-24.svg', + $type: 'link', + $value: '/icon/iterations-24.svg', }, 'icon.kebab-horizontal-16': { - '_original': { - '$value': '/icon/kebab-horizontal-16.svg', + _original: { + $value: '/icon/kebab-horizontal-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.kebab-horizontal-16', - '$type': 'link', - '$value': '/icon/kebab-horizontal-16.svg', + $type: 'link', + $value: '/icon/kebab-horizontal-16.svg', }, 'icon.kebab-horizontal-24': { - '_original': { - '$value': '/icon/kebab-horizontal-24.svg', + _original: { + $value: '/icon/kebab-horizontal-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.kebab-horizontal-24', - '$type': 'link', - '$value': '/icon/kebab-horizontal-24.svg', + $type: 'link', + $value: '/icon/kebab-horizontal-24.svg', }, 'icon.key-16': { - '_original': { - '$value': '/icon/key-16.svg', + _original: { + $value: '/icon/key-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.key-16', - '$type': 'link', - '$value': '/icon/key-16.svg', + $type: 'link', + $value: '/icon/key-16.svg', }, 'icon.key-24': { - '_original': { - '$value': '/icon/key-24.svg', + _original: { + $value: '/icon/key-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.key-24', - '$type': 'link', - '$value': '/icon/key-24.svg', + $type: 'link', + $value: '/icon/key-24.svg', }, 'icon.key-asterisk-16': { - '_original': { - '$value': '/icon/key-asterisk-16.svg', + _original: { + $value: '/icon/key-asterisk-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.key-asterisk-16', - '$type': 'link', - '$value': '/icon/key-asterisk-16.svg', + $type: 'link', + $value: '/icon/key-asterisk-16.svg', }, 'icon.law-16': { - '_original': { - '$value': '/icon/law-16.svg', + _original: { + $value: '/icon/law-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.law-16', - '$type': 'link', - '$value': '/icon/law-16.svg', + $type: 'link', + $value: '/icon/law-16.svg', }, 'icon.law-24': { - '_original': { - '$value': '/icon/law-24.svg', + _original: { + $value: '/icon/law-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.law-24', - '$type': 'link', - '$value': '/icon/law-24.svg', + $type: 'link', + $value: '/icon/law-24.svg', }, 'icon.light-bulb-16': { - '_original': { - '$value': '/icon/light-bulb-16.svg', + _original: { + $value: '/icon/light-bulb-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.light-bulb-16', - '$type': 'link', - '$value': '/icon/light-bulb-16.svg', + $type: 'link', + $value: '/icon/light-bulb-16.svg', }, 'icon.light-bulb-24': { - '_original': { - '$value': '/icon/light-bulb-24.svg', + _original: { + $value: '/icon/light-bulb-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.light-bulb-24', - '$type': 'link', - '$value': '/icon/light-bulb-24.svg', + $type: 'link', + $value: '/icon/light-bulb-24.svg', }, 'icon.link-16': { - '_original': { - '$value': '/icon/link-16.svg', + _original: { + $value: '/icon/link-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.link-16', - '$type': 'link', - '$value': '/icon/link-16.svg', + $type: 'link', + $value: '/icon/link-16.svg', }, 'icon.link-24': { - '_original': { - '$value': '/icon/link-24.svg', + _original: { + $value: '/icon/link-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.link-24', - '$type': 'link', - '$value': '/icon/link-24.svg', + $type: 'link', + $value: '/icon/link-24.svg', }, 'icon.link-external-16': { - '_original': { - '$value': '/icon/link-external-16.svg', + _original: { + $value: '/icon/link-external-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.link-external-16', - '$type': 'link', - '$value': '/icon/link-external-16.svg', + $type: 'link', + $value: '/icon/link-external-16.svg', }, 'icon.link-external-24': { - '_original': { - '$value': '/icon/link-external-24.svg', + _original: { + $value: '/icon/link-external-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.link-external-24', - '$type': 'link', - '$value': '/icon/link-external-24.svg', + $type: 'link', + $value: '/icon/link-external-24.svg', }, 'icon.list-ordered-16': { - '_original': { - '$value': '/icon/list-ordered-16.svg', + _original: { + $value: '/icon/list-ordered-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.list-ordered-16', - '$type': 'link', - '$value': '/icon/list-ordered-16.svg', + $type: 'link', + $value: '/icon/list-ordered-16.svg', }, 'icon.list-ordered-24': { - '_original': { - '$value': '/icon/list-ordered-24.svg', + _original: { + $value: '/icon/list-ordered-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.list-ordered-24', - '$type': 'link', - '$value': '/icon/list-ordered-24.svg', + $type: 'link', + $value: '/icon/list-ordered-24.svg', }, 'icon.list-unordered-16': { - '_original': { - '$value': '/icon/list-unordered-16.svg', + _original: { + $value: '/icon/list-unordered-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.list-unordered-16', - '$type': 'link', - '$value': '/icon/list-unordered-16.svg', + $type: 'link', + $value: '/icon/list-unordered-16.svg', }, 'icon.list-unordered-24': { - '_original': { - '$value': '/icon/list-unordered-24.svg', + _original: { + $value: '/icon/list-unordered-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.list-unordered-24', - '$type': 'link', - '$value': '/icon/list-unordered-24.svg', + $type: 'link', + $value: '/icon/list-unordered-24.svg', }, 'icon.location-16': { - '_original': { - '$value': '/icon/location-16.svg', + _original: { + $value: '/icon/location-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.location-16', - '$type': 'link', - '$value': '/icon/location-16.svg', + $type: 'link', + $value: '/icon/location-16.svg', }, 'icon.location-24': { - '_original': { - '$value': '/icon/location-24.svg', + _original: { + $value: '/icon/location-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.location-24', - '$type': 'link', - '$value': '/icon/location-24.svg', + $type: 'link', + $value: '/icon/location-24.svg', }, 'icon.lock-16': { - '_original': { - '$value': '/icon/lock-16.svg', + _original: { + $value: '/icon/lock-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.lock-16', - '$type': 'link', - '$value': '/icon/lock-16.svg', + $type: 'link', + $value: '/icon/lock-16.svg', }, 'icon.lock-24': { - '_original': { - '$value': '/icon/lock-24.svg', + _original: { + $value: '/icon/lock-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.lock-24', - '$type': 'link', - '$value': '/icon/lock-24.svg', + $type: 'link', + $value: '/icon/lock-24.svg', }, 'icon.logo-gist-16': { - '_original': { - '$value': '/icon/logo-gist-16.svg', + _original: { + $value: '/icon/logo-gist-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.logo-gist-16', - '$type': 'link', - '$value': '/icon/logo-gist-16.svg', + $type: 'link', + $value: '/icon/logo-gist-16.svg', }, 'icon.logo-github-16': { - '_original': { - '$value': '/icon/logo-github-16.svg', + _original: { + $value: '/icon/logo-github-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.logo-github-16', - '$type': 'link', - '$value': '/icon/logo-github-16.svg', + $type: 'link', + $value: '/icon/logo-github-16.svg', }, 'icon.mail-16': { - '_original': { - '$value': '/icon/mail-16.svg', + _original: { + $value: '/icon/mail-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mail-16', - '$type': 'link', - '$value': '/icon/mail-16.svg', + $type: 'link', + $value: '/icon/mail-16.svg', }, 'icon.mail-24': { - '_original': { - '$value': '/icon/mail-24.svg', + _original: { + $value: '/icon/mail-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mail-24', - '$type': 'link', - '$value': '/icon/mail-24.svg', + $type: 'link', + $value: '/icon/mail-24.svg', }, 'icon.mark-github-16': { - '_original': { - '$value': '/icon/mark-github-16.svg', + _original: { + $value: '/icon/mark-github-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mark-github-16', - '$type': 'link', - '$value': '/icon/mark-github-16.svg', + $type: 'link', + $value: '/icon/mark-github-16.svg', }, 'icon.markdown-16': { - '_original': { - '$value': '/icon/markdown-16.svg', + _original: { + $value: '/icon/markdown-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.markdown-16', - '$type': 'link', - '$value': '/icon/markdown-16.svg', + $type: 'link', + $value: '/icon/markdown-16.svg', }, 'icon.megaphone-16': { - '_original': { - '$value': '/icon/megaphone-16.svg', + _original: { + $value: '/icon/megaphone-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.megaphone-16', - '$type': 'link', - '$value': '/icon/megaphone-16.svg', + $type: 'link', + $value: '/icon/megaphone-16.svg', }, 'icon.megaphone-24': { - '_original': { - '$value': '/icon/megaphone-24.svg', + _original: { + $value: '/icon/megaphone-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.megaphone-24', - '$type': 'link', - '$value': '/icon/megaphone-24.svg', + $type: 'link', + $value: '/icon/megaphone-24.svg', }, 'icon.mention-16': { - '_original': { - '$value': '/icon/mention-16.svg', + _original: { + $value: '/icon/mention-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mention-16', - '$type': 'link', - '$value': '/icon/mention-16.svg', + $type: 'link', + $value: '/icon/mention-16.svg', }, 'icon.mention-24': { - '_original': { - '$value': '/icon/mention-24.svg', + _original: { + $value: '/icon/mention-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mention-24', - '$type': 'link', - '$value': '/icon/mention-24.svg', + $type: 'link', + $value: '/icon/mention-24.svg', }, 'icon.meter-16': { - '_original': { - '$value': '/icon/meter-16.svg', + _original: { + $value: '/icon/meter-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.meter-16', - '$type': 'link', - '$value': '/icon/meter-16.svg', + $type: 'link', + $value: '/icon/meter-16.svg', }, 'icon.milestone-16': { - '_original': { - '$value': '/icon/milestone-16.svg', + _original: { + $value: '/icon/milestone-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.milestone-16', - '$type': 'link', - '$value': '/icon/milestone-16.svg', + $type: 'link', + $value: '/icon/milestone-16.svg', }, 'icon.milestone-24': { - '_original': { - '$value': '/icon/milestone-24.svg', + _original: { + $value: '/icon/milestone-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.milestone-24', - '$type': 'link', - '$value': '/icon/milestone-24.svg', + $type: 'link', + $value: '/icon/milestone-24.svg', }, 'icon.mirror-16': { - '_original': { - '$value': '/icon/mirror-16.svg', + _original: { + $value: '/icon/mirror-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mirror-16', - '$type': 'link', - '$value': '/icon/mirror-16.svg', + $type: 'link', + $value: '/icon/mirror-16.svg', }, 'icon.mirror-24': { - '_original': { - '$value': '/icon/mirror-24.svg', + _original: { + $value: '/icon/mirror-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mirror-24', - '$type': 'link', - '$value': '/icon/mirror-24.svg', + $type: 'link', + $value: '/icon/mirror-24.svg', }, 'icon.moon-16': { - '_original': { - '$value': '/icon/moon-16.svg', + _original: { + $value: '/icon/moon-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.moon-16', - '$type': 'link', - '$value': '/icon/moon-16.svg', + $type: 'link', + $value: '/icon/moon-16.svg', }, 'icon.moon-24': { - '_original': { - '$value': '/icon/moon-24.svg', + _original: { + $value: '/icon/moon-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.moon-24', - '$type': 'link', - '$value': '/icon/moon-24.svg', + $type: 'link', + $value: '/icon/moon-24.svg', }, 'icon.mortar-board-16': { - '_original': { - '$value': '/icon/mortar-board-16.svg', + _original: { + $value: '/icon/mortar-board-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mortar-board-16', - '$type': 'link', - '$value': '/icon/mortar-board-16.svg', + $type: 'link', + $value: '/icon/mortar-board-16.svg', }, 'icon.mortar-board-24': { - '_original': { - '$value': '/icon/mortar-board-24.svg', + _original: { + $value: '/icon/mortar-board-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mortar-board-24', - '$type': 'link', - '$value': '/icon/mortar-board-24.svg', + $type: 'link', + $value: '/icon/mortar-board-24.svg', }, 'icon.multi-select-16': { - '_original': { - '$value': '/icon/multi-select-16.svg', + _original: { + $value: '/icon/multi-select-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.multi-select-16', - '$type': 'link', - '$value': '/icon/multi-select-16.svg', + $type: 'link', + $value: '/icon/multi-select-16.svg', }, 'icon.multi-select-24': { - '_original': { - '$value': '/icon/multi-select-24.svg', + _original: { + $value: '/icon/multi-select-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.multi-select-24', - '$type': 'link', - '$value': '/icon/multi-select-24.svg', + $type: 'link', + $value: '/icon/multi-select-24.svg', }, 'icon.mute-16': { - '_original': { - '$value': '/icon/mute-16.svg', + _original: { + $value: '/icon/mute-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mute-16', - '$type': 'link', - '$value': '/icon/mute-16.svg', + $type: 'link', + $value: '/icon/mute-16.svg', }, 'icon.mute-24': { - '_original': { - '$value': '/icon/mute-24.svg', + _original: { + $value: '/icon/mute-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.mute-24', - '$type': 'link', - '$value': '/icon/mute-24.svg', + $type: 'link', + $value: '/icon/mute-24.svg', }, 'icon.no-entry-16': { - '_original': { - '$value': '/icon/no-entry-16.svg', + _original: { + $value: '/icon/no-entry-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.no-entry-16', - '$type': 'link', - '$value': '/icon/no-entry-16.svg', + $type: 'link', + $value: '/icon/no-entry-16.svg', }, 'icon.no-entry-24': { - '_original': { - '$value': '/icon/no-entry-24.svg', + _original: { + $value: '/icon/no-entry-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.no-entry-24', - '$type': 'link', - '$value': '/icon/no-entry-24.svg', + $type: 'link', + $value: '/icon/no-entry-24.svg', }, 'icon.no-entry-fill-12': { - '_original': { - '$value': '/icon/no-entry-fill-12.svg', + _original: { + $value: '/icon/no-entry-fill-12.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.no-entry-fill-12', - '$type': 'link', - '$value': '/icon/no-entry-fill-12.svg', + $type: 'link', + $value: '/icon/no-entry-fill-12.svg', }, 'icon.north-star-16': { - '_original': { - '$value': '/icon/north-star-16.svg', + _original: { + $value: '/icon/north-star-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.north-star-16', - '$type': 'link', - '$value': '/icon/north-star-16.svg', + $type: 'link', + $value: '/icon/north-star-16.svg', }, 'icon.north-star-24': { - '_original': { - '$value': '/icon/north-star-24.svg', + _original: { + $value: '/icon/north-star-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.north-star-24', - '$type': 'link', - '$value': '/icon/north-star-24.svg', + $type: 'link', + $value: '/icon/north-star-24.svg', }, 'icon.note-16': { - '_original': { - '$value': '/icon/note-16.svg', + _original: { + $value: '/icon/note-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.note-16', - '$type': 'link', - '$value': '/icon/note-16.svg', + $type: 'link', + $value: '/icon/note-16.svg', }, 'icon.note-24': { - '_original': { - '$value': '/icon/note-24.svg', + _original: { + $value: '/icon/note-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.note-24', - '$type': 'link', - '$value': '/icon/note-24.svg', + $type: 'link', + $value: '/icon/note-24.svg', }, 'icon.number-16': { - '_original': { - '$value': '/icon/number-16.svg', + _original: { + $value: '/icon/number-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.number-16', - '$type': 'link', - '$value': '/icon/number-16.svg', + $type: 'link', + $value: '/icon/number-16.svg', }, 'icon.number-24': { - '_original': { - '$value': '/icon/number-24.svg', + _original: { + $value: '/icon/number-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.number-24', - '$type': 'link', - '$value': '/icon/number-24.svg', + $type: 'link', + $value: '/icon/number-24.svg', }, 'icon.organization-16': { - '_original': { - '$value': '/icon/organization-16.svg', + _original: { + $value: '/icon/organization-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.organization-16', - '$type': 'link', - '$value': '/icon/organization-16.svg', + $type: 'link', + $value: '/icon/organization-16.svg', }, 'icon.organization-24': { - '_original': { - '$value': '/icon/organization-24.svg', + _original: { + $value: '/icon/organization-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.organization-24', - '$type': 'link', - '$value': '/icon/organization-24.svg', + $type: 'link', + $value: '/icon/organization-24.svg', }, 'icon.package-16': { - '_original': { - '$value': '/icon/package-16.svg', + _original: { + $value: '/icon/package-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.package-16', - '$type': 'link', - '$value': '/icon/package-16.svg', + $type: 'link', + $value: '/icon/package-16.svg', }, 'icon.package-24': { - '_original': { - '$value': '/icon/package-24.svg', + _original: { + $value: '/icon/package-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.package-24', - '$type': 'link', - '$value': '/icon/package-24.svg', + $type: 'link', + $value: '/icon/package-24.svg', }, 'icon.package-dependencies-16': { - '_original': { - '$value': '/icon/package-dependencies-16.svg', + _original: { + $value: '/icon/package-dependencies-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.package-dependencies-16', - '$type': 'link', - '$value': '/icon/package-dependencies-16.svg', + $type: 'link', + $value: '/icon/package-dependencies-16.svg', }, 'icon.package-dependencies-24': { - '_original': { - '$value': '/icon/package-dependencies-24.svg', + _original: { + $value: '/icon/package-dependencies-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.package-dependencies-24', - '$type': 'link', - '$value': '/icon/package-dependencies-24.svg', + $type: 'link', + $value: '/icon/package-dependencies-24.svg', }, 'icon.package-dependents-16': { - '_original': { - '$value': '/icon/package-dependents-16.svg', + _original: { + $value: '/icon/package-dependents-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.package-dependents-16', - '$type': 'link', - '$value': '/icon/package-dependents-16.svg', + $type: 'link', + $value: '/icon/package-dependents-16.svg', }, 'icon.package-dependents-24': { - '_original': { - '$value': '/icon/package-dependents-24.svg', + _original: { + $value: '/icon/package-dependents-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.package-dependents-24', - '$type': 'link', - '$value': '/icon/package-dependents-24.svg', + $type: 'link', + $value: '/icon/package-dependents-24.svg', }, 'icon.paintbrush-16': { - '_original': { - '$value': '/icon/paintbrush-16.svg', + _original: { + $value: '/icon/paintbrush-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.paintbrush-16', - '$type': 'link', - '$value': '/icon/paintbrush-16.svg', + $type: 'link', + $value: '/icon/paintbrush-16.svg', }, 'icon.paper-airplane-16': { - '_original': { - '$value': '/icon/paper-airplane-16.svg', + _original: { + $value: '/icon/paper-airplane-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.paper-airplane-16', - '$type': 'link', - '$value': '/icon/paper-airplane-16.svg', + $type: 'link', + $value: '/icon/paper-airplane-16.svg', }, 'icon.paper-airplane-24': { - '_original': { - '$value': '/icon/paper-airplane-24.svg', + _original: { + $value: '/icon/paper-airplane-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.paper-airplane-24', - '$type': 'link', - '$value': '/icon/paper-airplane-24.svg', + $type: 'link', + $value: '/icon/paper-airplane-24.svg', }, 'icon.paste-16': { - '_original': { - '$value': '/icon/paste-16.svg', + _original: { + $value: '/icon/paste-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.paste-16', - '$type': 'link', - '$value': '/icon/paste-16.svg', + $type: 'link', + $value: '/icon/paste-16.svg', }, 'icon.paste-24': { - '_original': { - '$value': '/icon/paste-24.svg', + _original: { + $value: '/icon/paste-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.paste-24', - '$type': 'link', - '$value': '/icon/paste-24.svg', + $type: 'link', + $value: '/icon/paste-24.svg', }, 'icon.pencil-16': { - '_original': { - '$value': '/icon/pencil-16.svg', + _original: { + $value: '/icon/pencil-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.pencil-16', - '$type': 'link', - '$value': '/icon/pencil-16.svg', + $type: 'link', + $value: '/icon/pencil-16.svg', }, 'icon.pencil-24': { - '_original': { - '$value': '/icon/pencil-24.svg', + _original: { + $value: '/icon/pencil-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.pencil-24', - '$type': 'link', - '$value': '/icon/pencil-24.svg', + $type: 'link', + $value: '/icon/pencil-24.svg', }, 'icon.people-16': { - '_original': { - '$value': '/icon/people-16.svg', + _original: { + $value: '/icon/people-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.people-16', - '$type': 'link', - '$value': '/icon/people-16.svg', + $type: 'link', + $value: '/icon/people-16.svg', }, 'icon.people-24': { - '_original': { - '$value': '/icon/people-24.svg', + _original: { + $value: '/icon/people-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.people-24', - '$type': 'link', - '$value': '/icon/people-24.svg', + $type: 'link', + $value: '/icon/people-24.svg', }, 'icon.person-16': { - '_original': { - '$value': '/icon/person-16.svg', + _original: { + $value: '/icon/person-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.person-16', - '$type': 'link', - '$value': '/icon/person-16.svg', + $type: 'link', + $value: '/icon/person-16.svg', }, 'icon.person-24': { - '_original': { - '$value': '/icon/person-24.svg', + _original: { + $value: '/icon/person-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.person-24', - '$type': 'link', - '$value': '/icon/person-24.svg', + $type: 'link', + $value: '/icon/person-24.svg', }, 'icon.person-add-16': { - '_original': { - '$value': '/icon/person-add-16.svg', + _original: { + $value: '/icon/person-add-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.person-add-16', - '$type': 'link', - '$value': '/icon/person-add-16.svg', + $type: 'link', + $value: '/icon/person-add-16.svg', }, 'icon.person-add-24': { - '_original': { - '$value': '/icon/person-add-24.svg', + _original: { + $value: '/icon/person-add-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.person-add-24', - '$type': 'link', - '$value': '/icon/person-add-24.svg', + $type: 'link', + $value: '/icon/person-add-24.svg', }, 'icon.person-fill-16': { - '_original': { - '$value': '/icon/person-fill-16.svg', + _original: { + $value: '/icon/person-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.person-fill-16', - '$type': 'link', - '$value': '/icon/person-fill-16.svg', + $type: 'link', + $value: '/icon/person-fill-16.svg', }, 'icon.person-fill-24': { - '_original': { - '$value': '/icon/person-fill-24.svg', + _original: { + $value: '/icon/person-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.person-fill-24', - '$type': 'link', - '$value': '/icon/person-fill-24.svg', + $type: 'link', + $value: '/icon/person-fill-24.svg', }, 'icon.pin-16': { - '_original': { - '$value': '/icon/pin-16.svg', + _original: { + $value: '/icon/pin-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.pin-16', - '$type': 'link', - '$value': '/icon/pin-16.svg', + $type: 'link', + $value: '/icon/pin-16.svg', }, 'icon.pin-24': { - '_original': { - '$value': '/icon/pin-24.svg', + _original: { + $value: '/icon/pin-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.pin-24', - '$type': 'link', - '$value': '/icon/pin-24.svg', + $type: 'link', + $value: '/icon/pin-24.svg', }, 'icon.play-16': { - '_original': { - '$value': '/icon/play-16.svg', + _original: { + $value: '/icon/play-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.play-16', - '$type': 'link', - '$value': '/icon/play-16.svg', + $type: 'link', + $value: '/icon/play-16.svg', }, 'icon.play-24': { - '_original': { - '$value': '/icon/play-24.svg', + _original: { + $value: '/icon/play-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.play-24', - '$type': 'link', - '$value': '/icon/play-24.svg', + $type: 'link', + $value: '/icon/play-24.svg', }, 'icon.plug-16': { - '_original': { - '$value': '/icon/plug-16.svg', + _original: { + $value: '/icon/plug-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.plug-16', - '$type': 'link', - '$value': '/icon/plug-16.svg', + $type: 'link', + $value: '/icon/plug-16.svg', }, 'icon.plug-24': { - '_original': { - '$value': '/icon/plug-24.svg', + _original: { + $value: '/icon/plug-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.plug-24', - '$type': 'link', - '$value': '/icon/plug-24.svg', + $type: 'link', + $value: '/icon/plug-24.svg', }, 'icon.plus-16': { - '_original': { - '$value': '/icon/plus-16.svg', + _original: { + $value: '/icon/plus-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.plus-16', - '$type': 'link', - '$value': '/icon/plus-16.svg', + $type: 'link', + $value: '/icon/plus-16.svg', }, 'icon.plus-24': { - '_original': { - '$value': '/icon/plus-24.svg', + _original: { + $value: '/icon/plus-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.plus-24', - '$type': 'link', - '$value': '/icon/plus-24.svg', + $type: 'link', + $value: '/icon/plus-24.svg', }, 'icon.plus-circle-16': { - '_original': { - '$value': '/icon/plus-circle-16.svg', + _original: { + $value: '/icon/plus-circle-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.plus-circle-16', - '$type': 'link', - '$value': '/icon/plus-circle-16.svg', + $type: 'link', + $value: '/icon/plus-circle-16.svg', }, 'icon.plus-circle-24': { - '_original': { - '$value': '/icon/plus-circle-24.svg', + _original: { + $value: '/icon/plus-circle-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.plus-circle-24', - '$type': 'link', - '$value': '/icon/plus-circle-24.svg', + $type: 'link', + $value: '/icon/plus-circle-24.svg', }, 'icon.project-16': { - '_original': { - '$value': '/icon/project-16.svg', + _original: { + $value: '/icon/project-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.project-16', - '$type': 'link', - '$value': '/icon/project-16.svg', + $type: 'link', + $value: '/icon/project-16.svg', }, 'icon.project-24': { - '_original': { - '$value': '/icon/project-24.svg', + _original: { + $value: '/icon/project-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.project-24', - '$type': 'link', - '$value': '/icon/project-24.svg', + $type: 'link', + $value: '/icon/project-24.svg', }, 'icon.pulse-16': { - '_original': { - '$value': '/icon/pulse-16.svg', + _original: { + $value: '/icon/pulse-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.pulse-16', - '$type': 'link', - '$value': '/icon/pulse-16.svg', + $type: 'link', + $value: '/icon/pulse-16.svg', }, 'icon.pulse-24': { - '_original': { - '$value': '/icon/pulse-24.svg', + _original: { + $value: '/icon/pulse-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.pulse-24', - '$type': 'link', - '$value': '/icon/pulse-24.svg', + $type: 'link', + $value: '/icon/pulse-24.svg', }, 'icon.question-16': { - '_original': { - '$value': '/icon/question-16.svg', + _original: { + $value: '/icon/question-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.question-16', - '$type': 'link', - '$value': '/icon/question-16.svg', + $type: 'link', + $value: '/icon/question-16.svg', }, 'icon.question-24': { - '_original': { - '$value': '/icon/question-24.svg', + _original: { + $value: '/icon/question-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.question-24', - '$type': 'link', - '$value': '/icon/question-24.svg', + $type: 'link', + $value: '/icon/question-24.svg', }, 'icon.quote-16': { - '_original': { - '$value': '/icon/quote-16.svg', + _original: { + $value: '/icon/quote-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.quote-16', - '$type': 'link', - '$value': '/icon/quote-16.svg', + $type: 'link', + $value: '/icon/quote-16.svg', }, 'icon.quote-24': { - '_original': { - '$value': '/icon/quote-24.svg', + _original: { + $value: '/icon/quote-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.quote-24', - '$type': 'link', - '$value': '/icon/quote-24.svg', + $type: 'link', + $value: '/icon/quote-24.svg', }, 'icon.reply-16': { - '_original': { - '$value': '/icon/reply-16.svg', + _original: { + $value: '/icon/reply-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.reply-16', - '$type': 'link', - '$value': '/icon/reply-16.svg', + $type: 'link', + $value: '/icon/reply-16.svg', }, 'icon.reply-24': { - '_original': { - '$value': '/icon/reply-24.svg', + _original: { + $value: '/icon/reply-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.reply-24', - '$type': 'link', - '$value': '/icon/reply-24.svg', + $type: 'link', + $value: '/icon/reply-24.svg', }, 'icon.repo-16': { - '_original': { - '$value': '/icon/repo-16.svg', + _original: { + $value: '/icon/repo-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-16', - '$type': 'link', - '$value': '/icon/repo-16.svg', + $type: 'link', + $value: '/icon/repo-16.svg', }, 'icon.repo-24': { - '_original': { - '$value': '/icon/repo-24.svg', + _original: { + $value: '/icon/repo-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-24', - '$type': 'link', - '$value': '/icon/repo-24.svg', + $type: 'link', + $value: '/icon/repo-24.svg', }, 'icon.repo-clone-16': { - '_original': { - '$value': '/icon/repo-clone-16.svg', + _original: { + $value: '/icon/repo-clone-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-clone-16', - '$type': 'link', - '$value': '/icon/repo-clone-16.svg', + $type: 'link', + $value: '/icon/repo-clone-16.svg', }, 'icon.repo-forked-16': { - '_original': { - '$value': '/icon/repo-forked-16.svg', + _original: { + $value: '/icon/repo-forked-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-forked-16', - '$type': 'link', - '$value': '/icon/repo-forked-16.svg', + $type: 'link', + $value: '/icon/repo-forked-16.svg', }, 'icon.repo-forked-24': { - '_original': { - '$value': '/icon/repo-forked-24.svg', + _original: { + $value: '/icon/repo-forked-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-forked-24', - '$type': 'link', - '$value': '/icon/repo-forked-24.svg', + $type: 'link', + $value: '/icon/repo-forked-24.svg', }, 'icon.repo-pull-16': { - '_original': { - '$value': '/icon/repo-pull-16.svg', + _original: { + $value: '/icon/repo-pull-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-pull-16', - '$type': 'link', - '$value': '/icon/repo-pull-16.svg', + $type: 'link', + $value: '/icon/repo-pull-16.svg', }, 'icon.repo-push-16': { - '_original': { - '$value': '/icon/repo-push-16.svg', + _original: { + $value: '/icon/repo-push-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-push-16', - '$type': 'link', - '$value': '/icon/repo-push-16.svg', + $type: 'link', + $value: '/icon/repo-push-16.svg', }, 'icon.repo-push-24': { - '_original': { - '$value': '/icon/repo-push-24.svg', + _original: { + $value: '/icon/repo-push-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-push-24', - '$type': 'link', - '$value': '/icon/repo-push-24.svg', + $type: 'link', + $value: '/icon/repo-push-24.svg', }, 'icon.repo-template-16': { - '_original': { - '$value': '/icon/repo-template-16.svg', + _original: { + $value: '/icon/repo-template-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-template-16', - '$type': 'link', - '$value': '/icon/repo-template-16.svg', + $type: 'link', + $value: '/icon/repo-template-16.svg', }, 'icon.repo-template-24': { - '_original': { - '$value': '/icon/repo-template-24.svg', + _original: { + $value: '/icon/repo-template-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.repo-template-24', - '$type': 'link', - '$value': '/icon/repo-template-24.svg', + $type: 'link', + $value: '/icon/repo-template-24.svg', }, 'icon.report-16': { - '_original': { - '$value': '/icon/report-16.svg', + _original: { + $value: '/icon/report-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.report-16', - '$type': 'link', - '$value': '/icon/report-16.svg', + $type: 'link', + $value: '/icon/report-16.svg', }, 'icon.report-24': { - '_original': { - '$value': '/icon/report-24.svg', + _original: { + $value: '/icon/report-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.report-24', - '$type': 'link', - '$value': '/icon/report-24.svg', + $type: 'link', + $value: '/icon/report-24.svg', }, 'icon.rocket-16': { - '_original': { - '$value': '/icon/rocket-16.svg', + _original: { + $value: '/icon/rocket-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.rocket-16', - '$type': 'link', - '$value': '/icon/rocket-16.svg', + $type: 'link', + $value: '/icon/rocket-16.svg', }, 'icon.rocket-24': { - '_original': { - '$value': '/icon/rocket-24.svg', + _original: { + $value: '/icon/rocket-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.rocket-24', - '$type': 'link', - '$value': '/icon/rocket-24.svg', + $type: 'link', + $value: '/icon/rocket-24.svg', }, 'icon.rows-16': { - '_original': { - '$value': '/icon/rows-16.svg', + _original: { + $value: '/icon/rows-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.rows-16', - '$type': 'link', - '$value': '/icon/rows-16.svg', + $type: 'link', + $value: '/icon/rows-16.svg', }, 'icon.rows-24': { - '_original': { - '$value': '/icon/rows-24.svg', + _original: { + $value: '/icon/rows-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.rows-24', - '$type': 'link', - '$value': '/icon/rows-24.svg', + $type: 'link', + $value: '/icon/rows-24.svg', }, 'icon.rss-16': { - '_original': { - '$value': '/icon/rss-16.svg', + _original: { + $value: '/icon/rss-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.rss-16', - '$type': 'link', - '$value': '/icon/rss-16.svg', + $type: 'link', + $value: '/icon/rss-16.svg', }, 'icon.rss-24': { - '_original': { - '$value': '/icon/rss-24.svg', + _original: { + $value: '/icon/rss-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.rss-24', - '$type': 'link', - '$value': '/icon/rss-24.svg', + $type: 'link', + $value: '/icon/rss-24.svg', }, 'icon.ruby-16': { - '_original': { - '$value': '/icon/ruby-16.svg', + _original: { + $value: '/icon/ruby-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.ruby-16', - '$type': 'link', - '$value': '/icon/ruby-16.svg', + $type: 'link', + $value: '/icon/ruby-16.svg', }, 'icon.ruby-24': { - '_original': { - '$value': '/icon/ruby-24.svg', + _original: { + $value: '/icon/ruby-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.ruby-24', - '$type': 'link', - '$value': '/icon/ruby-24.svg', + $type: 'link', + $value: '/icon/ruby-24.svg', }, 'icon.screen-full-16': { - '_original': { - '$value': '/icon/screen-full-16.svg', + _original: { + $value: '/icon/screen-full-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.screen-full-16', - '$type': 'link', - '$value': '/icon/screen-full-16.svg', + $type: 'link', + $value: '/icon/screen-full-16.svg', }, 'icon.screen-full-24': { - '_original': { - '$value': '/icon/screen-full-24.svg', + _original: { + $value: '/icon/screen-full-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.screen-full-24', - '$type': 'link', - '$value': '/icon/screen-full-24.svg', + $type: 'link', + $value: '/icon/screen-full-24.svg', }, 'icon.screen-normal-16': { - '_original': { - '$value': '/icon/screen-normal-16.svg', + _original: { + $value: '/icon/screen-normal-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.screen-normal-16', - '$type': 'link', - '$value': '/icon/screen-normal-16.svg', + $type: 'link', + $value: '/icon/screen-normal-16.svg', }, 'icon.screen-normal-24': { - '_original': { - '$value': '/icon/screen-normal-24.svg', + _original: { + $value: '/icon/screen-normal-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.screen-normal-24', - '$type': 'link', - '$value': '/icon/screen-normal-24.svg', + $type: 'link', + $value: '/icon/screen-normal-24.svg', }, 'icon.search-16': { - '_original': { - '$value': '/icon/search-16.svg', + _original: { + $value: '/icon/search-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.search-16', - '$type': 'link', - '$value': '/icon/search-16.svg', + $type: 'link', + $value: '/icon/search-16.svg', }, 'icon.search-24': { - '_original': { - '$value': '/icon/search-24.svg', + _original: { + $value: '/icon/search-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.search-24', - '$type': 'link', - '$value': '/icon/search-24.svg', + $type: 'link', + $value: '/icon/search-24.svg', }, 'icon.server-16': { - '_original': { - '$value': '/icon/server-16.svg', + _original: { + $value: '/icon/server-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.server-16', - '$type': 'link', - '$value': '/icon/server-16.svg', + $type: 'link', + $value: '/icon/server-16.svg', }, 'icon.server-24': { - '_original': { - '$value': '/icon/server-24.svg', + _original: { + $value: '/icon/server-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.server-24', - '$type': 'link', - '$value': '/icon/server-24.svg', + $type: 'link', + $value: '/icon/server-24.svg', }, 'icon.share-16': { - '_original': { - '$value': '/icon/share-16.svg', + _original: { + $value: '/icon/share-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.share-16', - '$type': 'link', - '$value': '/icon/share-16.svg', + $type: 'link', + $value: '/icon/share-16.svg', }, 'icon.share-24': { - '_original': { - '$value': '/icon/share-24.svg', + _original: { + $value: '/icon/share-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.share-24', - '$type': 'link', - '$value': '/icon/share-24.svg', + $type: 'link', + $value: '/icon/share-24.svg', }, 'icon.share-android-16': { - '_original': { - '$value': '/icon/share-android-16.svg', + _original: { + $value: '/icon/share-android-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.share-android-16', - '$type': 'link', - '$value': '/icon/share-android-16.svg', + $type: 'link', + $value: '/icon/share-android-16.svg', }, 'icon.share-android-24': { - '_original': { - '$value': '/icon/share-android-24.svg', + _original: { + $value: '/icon/share-android-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.share-android-24', - '$type': 'link', - '$value': '/icon/share-android-24.svg', + $type: 'link', + $value: '/icon/share-android-24.svg', }, 'icon.shield-16': { - '_original': { - '$value': '/icon/shield-16.svg', + _original: { + $value: '/icon/shield-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-16', - '$type': 'link', - '$value': '/icon/shield-16.svg', + $type: 'link', + $value: '/icon/shield-16.svg', }, 'icon.shield-24': { - '_original': { - '$value': '/icon/shield-24.svg', + _original: { + $value: '/icon/shield-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-24', - '$type': 'link', - '$value': '/icon/shield-24.svg', + $type: 'link', + $value: '/icon/shield-24.svg', }, 'icon.shield-check-16': { - '_original': { - '$value': '/icon/shield-check-16.svg', + _original: { + $value: '/icon/shield-check-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-check-16', - '$type': 'link', - '$value': '/icon/shield-check-16.svg', + $type: 'link', + $value: '/icon/shield-check-16.svg', }, 'icon.shield-check-24': { - '_original': { - '$value': '/icon/shield-check-24.svg', + _original: { + $value: '/icon/shield-check-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-check-24', - '$type': 'link', - '$value': '/icon/shield-check-24.svg', + $type: 'link', + $value: '/icon/shield-check-24.svg', }, 'icon.shield-lock-16': { - '_original': { - '$value': '/icon/shield-lock-16.svg', + _original: { + $value: '/icon/shield-lock-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-lock-16', - '$type': 'link', - '$value': '/icon/shield-lock-16.svg', + $type: 'link', + $value: '/icon/shield-lock-16.svg', }, 'icon.shield-lock-24': { - '_original': { - '$value': '/icon/shield-lock-24.svg', + _original: { + $value: '/icon/shield-lock-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-lock-24', - '$type': 'link', - '$value': '/icon/shield-lock-24.svg', + $type: 'link', + $value: '/icon/shield-lock-24.svg', }, 'icon.shield-x-16': { - '_original': { - '$value': '/icon/shield-x-16.svg', + _original: { + $value: '/icon/shield-x-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-x-16', - '$type': 'link', - '$value': '/icon/shield-x-16.svg', + $type: 'link', + $value: '/icon/shield-x-16.svg', }, 'icon.shield-x-24': { - '_original': { - '$value': '/icon/shield-x-24.svg', + _original: { + $value: '/icon/shield-x-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.shield-x-24', - '$type': 'link', - '$value': '/icon/shield-x-24.svg', + $type: 'link', + $value: '/icon/shield-x-24.svg', }, 'icon.sidebar-collapse-16': { - '_original': { - '$value': '/icon/sidebar-collapse-16.svg', + _original: { + $value: '/icon/sidebar-collapse-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sidebar-collapse-16', - '$type': 'link', - '$value': '/icon/sidebar-collapse-16.svg', + $type: 'link', + $value: '/icon/sidebar-collapse-16.svg', }, 'icon.sidebar-collapse-24': { - '_original': { - '$value': '/icon/sidebar-collapse-24.svg', + _original: { + $value: '/icon/sidebar-collapse-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sidebar-collapse-24', - '$type': 'link', - '$value': '/icon/sidebar-collapse-24.svg', + $type: 'link', + $value: '/icon/sidebar-collapse-24.svg', }, 'icon.sidebar-expand-16': { - '_original': { - '$value': '/icon/sidebar-expand-16.svg', + _original: { + $value: '/icon/sidebar-expand-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sidebar-expand-16', - '$type': 'link', - '$value': '/icon/sidebar-expand-16.svg', + $type: 'link', + $value: '/icon/sidebar-expand-16.svg', }, 'icon.sidebar-expand-24': { - '_original': { - '$value': '/icon/sidebar-expand-24.svg', + _original: { + $value: '/icon/sidebar-expand-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sidebar-expand-24', - '$type': 'link', - '$value': '/icon/sidebar-expand-24.svg', + $type: 'link', + $value: '/icon/sidebar-expand-24.svg', }, 'icon.sign-in-16': { - '_original': { - '$value': '/icon/sign-in-16.svg', + _original: { + $value: '/icon/sign-in-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sign-in-16', - '$type': 'link', - '$value': '/icon/sign-in-16.svg', + $type: 'link', + $value: '/icon/sign-in-16.svg', }, 'icon.sign-in-24': { - '_original': { - '$value': '/icon/sign-in-24.svg', + _original: { + $value: '/icon/sign-in-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sign-in-24', - '$type': 'link', - '$value': '/icon/sign-in-24.svg', + $type: 'link', + $value: '/icon/sign-in-24.svg', }, 'icon.sign-out-16': { - '_original': { - '$value': '/icon/sign-out-16.svg', + _original: { + $value: '/icon/sign-out-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sign-out-16', - '$type': 'link', - '$value': '/icon/sign-out-16.svg', + $type: 'link', + $value: '/icon/sign-out-16.svg', }, 'icon.sign-out-24': { - '_original': { - '$value': '/icon/sign-out-24.svg', + _original: { + $value: '/icon/sign-out-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sign-out-24', - '$type': 'link', - '$value': '/icon/sign-out-24.svg', + $type: 'link', + $value: '/icon/sign-out-24.svg', }, 'icon.single-select-16': { - '_original': { - '$value': '/icon/single-select-16.svg', + _original: { + $value: '/icon/single-select-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.single-select-16', - '$type': 'link', - '$value': '/icon/single-select-16.svg', + $type: 'link', + $value: '/icon/single-select-16.svg', }, 'icon.single-select-24': { - '_original': { - '$value': '/icon/single-select-24.svg', + _original: { + $value: '/icon/single-select-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.single-select-24', - '$type': 'link', - '$value': '/icon/single-select-24.svg', + $type: 'link', + $value: '/icon/single-select-24.svg', }, 'icon.skip-16': { - '_original': { - '$value': '/icon/skip-16.svg', + _original: { + $value: '/icon/skip-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.skip-16', - '$type': 'link', - '$value': '/icon/skip-16.svg', + $type: 'link', + $value: '/icon/skip-16.svg', }, 'icon.skip-24': { - '_original': { - '$value': '/icon/skip-24.svg', + _original: { + $value: '/icon/skip-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.skip-24', - '$type': 'link', - '$value': '/icon/skip-24.svg', + $type: 'link', + $value: '/icon/skip-24.svg', }, 'icon.smiley-16': { - '_original': { - '$value': '/icon/smiley-16.svg', + _original: { + $value: '/icon/smiley-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.smiley-16', - '$type': 'link', - '$value': '/icon/smiley-16.svg', + $type: 'link', + $value: '/icon/smiley-16.svg', }, 'icon.smiley-24': { - '_original': { - '$value': '/icon/smiley-24.svg', + _original: { + $value: '/icon/smiley-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.smiley-24', - '$type': 'link', - '$value': '/icon/smiley-24.svg', + $type: 'link', + $value: '/icon/smiley-24.svg', }, 'icon.sort-asc-16': { - '_original': { - '$value': '/icon/sort-asc-16.svg', + _original: { + $value: '/icon/sort-asc-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sort-asc-16', - '$type': 'link', - '$value': '/icon/sort-asc-16.svg', + $type: 'link', + $value: '/icon/sort-asc-16.svg', }, 'icon.sort-asc-24': { - '_original': { - '$value': '/icon/sort-asc-24.svg', + _original: { + $value: '/icon/sort-asc-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sort-asc-24', - '$type': 'link', - '$value': '/icon/sort-asc-24.svg', + $type: 'link', + $value: '/icon/sort-asc-24.svg', }, 'icon.sort-desc-16': { - '_original': { - '$value': '/icon/sort-desc-16.svg', + _original: { + $value: '/icon/sort-desc-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sort-desc-16', - '$type': 'link', - '$value': '/icon/sort-desc-16.svg', + $type: 'link', + $value: '/icon/sort-desc-16.svg', }, 'icon.sort-desc-24': { - '_original': { - '$value': '/icon/sort-desc-24.svg', + _original: { + $value: '/icon/sort-desc-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sort-desc-24', - '$type': 'link', - '$value': '/icon/sort-desc-24.svg', + $type: 'link', + $value: '/icon/sort-desc-24.svg', }, 'icon.square-16': { - '_original': { - '$value': '/icon/square-16.svg', + _original: { + $value: '/icon/square-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.square-16', - '$type': 'link', - '$value': '/icon/square-16.svg', + $type: 'link', + $value: '/icon/square-16.svg', }, 'icon.square-24': { - '_original': { - '$value': '/icon/square-24.svg', + _original: { + $value: '/icon/square-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.square-24', - '$type': 'link', - '$value': '/icon/square-24.svg', + $type: 'link', + $value: '/icon/square-24.svg', }, 'icon.square-fill-16': { - '_original': { - '$value': '/icon/square-fill-16.svg', + _original: { + $value: '/icon/square-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.square-fill-16', - '$type': 'link', - '$value': '/icon/square-fill-16.svg', + $type: 'link', + $value: '/icon/square-fill-16.svg', }, 'icon.square-fill-24': { - '_original': { - '$value': '/icon/square-fill-24.svg', + _original: { + $value: '/icon/square-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.square-fill-24', - '$type': 'link', - '$value': '/icon/square-fill-24.svg', + $type: 'link', + $value: '/icon/square-fill-24.svg', }, 'icon.squirrel-16': { - '_original': { - '$value': '/icon/squirrel-16.svg', + _original: { + $value: '/icon/squirrel-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.squirrel-16', - '$type': 'link', - '$value': '/icon/squirrel-16.svg', + $type: 'link', + $value: '/icon/squirrel-16.svg', }, 'icon.squirrel-24': { - '_original': { - '$value': '/icon/squirrel-24.svg', + _original: { + $value: '/icon/squirrel-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.squirrel-24', - '$type': 'link', - '$value': '/icon/squirrel-24.svg', + $type: 'link', + $value: '/icon/squirrel-24.svg', }, 'icon.stack-16': { - '_original': { - '$value': '/icon/stack-16.svg', + _original: { + $value: '/icon/stack-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.stack-16', - '$type': 'link', - '$value': '/icon/stack-16.svg', + $type: 'link', + $value: '/icon/stack-16.svg', }, 'icon.stack-24': { - '_original': { - '$value': '/icon/stack-24.svg', + _original: { + $value: '/icon/stack-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.stack-24', - '$type': 'link', - '$value': '/icon/stack-24.svg', + $type: 'link', + $value: '/icon/stack-24.svg', }, 'icon.star-16': { - '_original': { - '$value': '/icon/star-16.svg', + _original: { + $value: '/icon/star-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.star-16', - '$type': 'link', - '$value': '/icon/star-16.svg', + $type: 'link', + $value: '/icon/star-16.svg', }, 'icon.star-24': { - '_original': { - '$value': '/icon/star-24.svg', + _original: { + $value: '/icon/star-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.star-24', - '$type': 'link', - '$value': '/icon/star-24.svg', + $type: 'link', + $value: '/icon/star-24.svg', }, 'icon.star-fill-16': { - '_original': { - '$value': '/icon/star-fill-16.svg', + _original: { + $value: '/icon/star-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.star-fill-16', - '$type': 'link', - '$value': '/icon/star-fill-16.svg', + $type: 'link', + $value: '/icon/star-fill-16.svg', }, 'icon.star-fill-24': { - '_original': { - '$value': '/icon/star-fill-24.svg', + _original: { + $value: '/icon/star-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.star-fill-24', - '$type': 'link', - '$value': '/icon/star-fill-24.svg', + $type: 'link', + $value: '/icon/star-fill-24.svg', }, 'icon.stop-16': { - '_original': { - '$value': '/icon/stop-16.svg', + _original: { + $value: '/icon/stop-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.stop-16', - '$type': 'link', - '$value': '/icon/stop-16.svg', + $type: 'link', + $value: '/icon/stop-16.svg', }, 'icon.stop-24': { - '_original': { - '$value': '/icon/stop-24.svg', + _original: { + $value: '/icon/stop-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.stop-24', - '$type': 'link', - '$value': '/icon/stop-24.svg', + $type: 'link', + $value: '/icon/stop-24.svg', }, 'icon.stopwatch-16': { - '_original': { - '$value': '/icon/stopwatch-16.svg', + _original: { + $value: '/icon/stopwatch-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.stopwatch-16', - '$type': 'link', - '$value': '/icon/stopwatch-16.svg', + $type: 'link', + $value: '/icon/stopwatch-16.svg', }, 'icon.stopwatch-24': { - '_original': { - '$value': '/icon/stopwatch-24.svg', + _original: { + $value: '/icon/stopwatch-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.stopwatch-24', - '$type': 'link', - '$value': '/icon/stopwatch-24.svg', + $type: 'link', + $value: '/icon/stopwatch-24.svg', }, 'icon.strikethrough-16': { - '_original': { - '$value': '/icon/strikethrough-16.svg', + _original: { + $value: '/icon/strikethrough-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.strikethrough-16', - '$type': 'link', - '$value': '/icon/strikethrough-16.svg', + $type: 'link', + $value: '/icon/strikethrough-16.svg', }, 'icon.strikethrough-24': { - '_original': { - '$value': '/icon/strikethrough-24.svg', + _original: { + $value: '/icon/strikethrough-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.strikethrough-24', - '$type': 'link', - '$value': '/icon/strikethrough-24.svg', + $type: 'link', + $value: '/icon/strikethrough-24.svg', }, 'icon.sun-16': { - '_original': { - '$value': '/icon/sun-16.svg', + _original: { + $value: '/icon/sun-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sun-16', - '$type': 'link', - '$value': '/icon/sun-16.svg', + $type: 'link', + $value: '/icon/sun-16.svg', }, 'icon.sun-24': { - '_original': { - '$value': '/icon/sun-24.svg', + _original: { + $value: '/icon/sun-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sun-24', - '$type': 'link', - '$value': '/icon/sun-24.svg', + $type: 'link', + $value: '/icon/sun-24.svg', }, 'icon.sync-16': { - '_original': { - '$value': '/icon/sync-16.svg', + _original: { + $value: '/icon/sync-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sync-16', - '$type': 'link', - '$value': '/icon/sync-16.svg', + $type: 'link', + $value: '/icon/sync-16.svg', }, 'icon.sync-24': { - '_original': { - '$value': '/icon/sync-24.svg', + _original: { + $value: '/icon/sync-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.sync-24', - '$type': 'link', - '$value': '/icon/sync-24.svg', + $type: 'link', + $value: '/icon/sync-24.svg', }, 'icon.tab-24': { - '_original': { - '$value': '/icon/tab-24.svg', + _original: { + $value: '/icon/tab-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tab-24', - '$type': 'link', - '$value': '/icon/tab-24.svg', + $type: 'link', + $value: '/icon/tab-24.svg', }, 'icon.table-16': { - '_original': { - '$value': '/icon/table-16.svg', + _original: { + $value: '/icon/table-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.table-16', - '$type': 'link', - '$value': '/icon/table-16.svg', + $type: 'link', + $value: '/icon/table-16.svg', }, 'icon.table-24': { - '_original': { - '$value': '/icon/table-24.svg', + _original: { + $value: '/icon/table-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.table-24', - '$type': 'link', - '$value': '/icon/table-24.svg', + $type: 'link', + $value: '/icon/table-24.svg', }, 'icon.tag-16': { - '_original': { - '$value': '/icon/tag-16.svg', + _original: { + $value: '/icon/tag-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tag-16', - '$type': 'link', - '$value': '/icon/tag-16.svg', + $type: 'link', + $value: '/icon/tag-16.svg', }, 'icon.tag-24': { - '_original': { - '$value': '/icon/tag-24.svg', + _original: { + $value: '/icon/tag-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tag-24', - '$type': 'link', - '$value': '/icon/tag-24.svg', + $type: 'link', + $value: '/icon/tag-24.svg', }, 'icon.tasklist-16': { - '_original': { - '$value': '/icon/tasklist-16.svg', + _original: { + $value: '/icon/tasklist-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tasklist-16', - '$type': 'link', - '$value': '/icon/tasklist-16.svg', + $type: 'link', + $value: '/icon/tasklist-16.svg', }, 'icon.tasklist-24': { - '_original': { - '$value': '/icon/tasklist-24.svg', + _original: { + $value: '/icon/tasklist-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tasklist-24', - '$type': 'link', - '$value': '/icon/tasklist-24.svg', + $type: 'link', + $value: '/icon/tasklist-24.svg', }, 'icon.telescope-16': { - '_original': { - '$value': '/icon/telescope-16.svg', + _original: { + $value: '/icon/telescope-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.telescope-16', - '$type': 'link', - '$value': '/icon/telescope-16.svg', + $type: 'link', + $value: '/icon/telescope-16.svg', }, 'icon.telescope-24': { - '_original': { - '$value': '/icon/telescope-24.svg', + _original: { + $value: '/icon/telescope-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.telescope-24', - '$type': 'link', - '$value': '/icon/telescope-24.svg', + $type: 'link', + $value: '/icon/telescope-24.svg', }, 'icon.telescope-fill-16': { - '_original': { - '$value': '/icon/telescope-fill-16.svg', + _original: { + $value: '/icon/telescope-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.telescope-fill-16', - '$type': 'link', - '$value': '/icon/telescope-fill-16.svg', + $type: 'link', + $value: '/icon/telescope-fill-16.svg', }, 'icon.telescope-fill-24': { - '_original': { - '$value': '/icon/telescope-fill-24.svg', + _original: { + $value: '/icon/telescope-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.telescope-fill-24', - '$type': 'link', - '$value': '/icon/telescope-fill-24.svg', + $type: 'link', + $value: '/icon/telescope-fill-24.svg', }, 'icon.terminal-16': { - '_original': { - '$value': '/icon/terminal-16.svg', + _original: { + $value: '/icon/terminal-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.terminal-16', - '$type': 'link', - '$value': '/icon/terminal-16.svg', + $type: 'link', + $value: '/icon/terminal-16.svg', }, 'icon.terminal-24': { - '_original': { - '$value': '/icon/terminal-24.svg', + _original: { + $value: '/icon/terminal-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.terminal-24', - '$type': 'link', - '$value': '/icon/terminal-24.svg', + $type: 'link', + $value: '/icon/terminal-24.svg', }, 'icon.three-bars-16': { - '_original': { - '$value': '/icon/three-bars-16.svg', + _original: { + $value: '/icon/three-bars-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.three-bars-16', - '$type': 'link', - '$value': '/icon/three-bars-16.svg', + $type: 'link', + $value: '/icon/three-bars-16.svg', }, 'icon.thumbsdown-16': { - '_original': { - '$value': '/icon/thumbsdown-16.svg', + _original: { + $value: '/icon/thumbsdown-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.thumbsdown-16', - '$type': 'link', - '$value': '/icon/thumbsdown-16.svg', + $type: 'link', + $value: '/icon/thumbsdown-16.svg', }, 'icon.thumbsdown-24': { - '_original': { - '$value': '/icon/thumbsdown-24.svg', + _original: { + $value: '/icon/thumbsdown-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.thumbsdown-24', - '$type': 'link', - '$value': '/icon/thumbsdown-24.svg', + $type: 'link', + $value: '/icon/thumbsdown-24.svg', }, 'icon.thumbsup-16': { - '_original': { - '$value': '/icon/thumbsup-16.svg', + _original: { + $value: '/icon/thumbsup-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.thumbsup-16', - '$type': 'link', - '$value': '/icon/thumbsup-16.svg', + $type: 'link', + $value: '/icon/thumbsup-16.svg', }, 'icon.thumbsup-24': { - '_original': { - '$value': '/icon/thumbsup-24.svg', + _original: { + $value: '/icon/thumbsup-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.thumbsup-24', - '$type': 'link', - '$value': '/icon/thumbsup-24.svg', + $type: 'link', + $value: '/icon/thumbsup-24.svg', }, 'icon.tools-16': { - '_original': { - '$value': '/icon/tools-16.svg', + _original: { + $value: '/icon/tools-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tools-16', - '$type': 'link', - '$value': '/icon/tools-16.svg', + $type: 'link', + $value: '/icon/tools-16.svg', }, 'icon.tools-24': { - '_original': { - '$value': '/icon/tools-24.svg', + _original: { + $value: '/icon/tools-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.tools-24', - '$type': 'link', - '$value': '/icon/tools-24.svg', + $type: 'link', + $value: '/icon/tools-24.svg', }, 'icon.trash-16': { - '_original': { - '$value': '/icon/trash-16.svg', + _original: { + $value: '/icon/trash-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.trash-16', - '$type': 'link', - '$value': '/icon/trash-16.svg', + $type: 'link', + $value: '/icon/trash-16.svg', }, 'icon.trash-24': { - '_original': { - '$value': '/icon/trash-24.svg', + _original: { + $value: '/icon/trash-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.trash-24', - '$type': 'link', - '$value': '/icon/trash-24.svg', + $type: 'link', + $value: '/icon/trash-24.svg', }, 'icon.triangle-down-16': { - '_original': { - '$value': '/icon/triangle-down-16.svg', + _original: { + $value: '/icon/triangle-down-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-down-16', - '$type': 'link', - '$value': '/icon/triangle-down-16.svg', + $type: 'link', + $value: '/icon/triangle-down-16.svg', }, 'icon.triangle-down-24': { - '_original': { - '$value': '/icon/triangle-down-24.svg', + _original: { + $value: '/icon/triangle-down-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-down-24', - '$type': 'link', - '$value': '/icon/triangle-down-24.svg', + $type: 'link', + $value: '/icon/triangle-down-24.svg', }, 'icon.triangle-left-16': { - '_original': { - '$value': '/icon/triangle-left-16.svg', + _original: { + $value: '/icon/triangle-left-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-left-16', - '$type': 'link', - '$value': '/icon/triangle-left-16.svg', + $type: 'link', + $value: '/icon/triangle-left-16.svg', }, 'icon.triangle-left-24': { - '_original': { - '$value': '/icon/triangle-left-24.svg', + _original: { + $value: '/icon/triangle-left-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-left-24', - '$type': 'link', - '$value': '/icon/triangle-left-24.svg', + $type: 'link', + $value: '/icon/triangle-left-24.svg', }, 'icon.triangle-right-16': { - '_original': { - '$value': '/icon/triangle-right-16.svg', + _original: { + $value: '/icon/triangle-right-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-right-16', - '$type': 'link', - '$value': '/icon/triangle-right-16.svg', + $type: 'link', + $value: '/icon/triangle-right-16.svg', }, 'icon.triangle-right-24': { - '_original': { - '$value': '/icon/triangle-right-24.svg', + _original: { + $value: '/icon/triangle-right-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-right-24', - '$type': 'link', - '$value': '/icon/triangle-right-24.svg', + $type: 'link', + $value: '/icon/triangle-right-24.svg', }, 'icon.triangle-up-16': { - '_original': { - '$value': '/icon/triangle-up-16.svg', + _original: { + $value: '/icon/triangle-up-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-up-16', - '$type': 'link', - '$value': '/icon/triangle-up-16.svg', + $type: 'link', + $value: '/icon/triangle-up-16.svg', }, 'icon.triangle-up-24': { - '_original': { - '$value': '/icon/triangle-up-24.svg', + _original: { + $value: '/icon/triangle-up-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.triangle-up-24', - '$type': 'link', - '$value': '/icon/triangle-up-24.svg', + $type: 'link', + $value: '/icon/triangle-up-24.svg', }, 'icon.typography-16': { - '_original': { - '$value': '/icon/typography-16.svg', + _original: { + $value: '/icon/typography-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.typography-16', - '$type': 'link', - '$value': '/icon/typography-16.svg', + $type: 'link', + $value: '/icon/typography-16.svg', }, 'icon.typography-24': { - '_original': { - '$value': '/icon/typography-24.svg', + _original: { + $value: '/icon/typography-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.typography-24', - '$type': 'link', - '$value': '/icon/typography-24.svg', + $type: 'link', + $value: '/icon/typography-24.svg', }, 'icon.unfold-16': { - '_original': { - '$value': '/icon/unfold-16.svg', + _original: { + $value: '/icon/unfold-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unfold-16', - '$type': 'link', - '$value': '/icon/unfold-16.svg', + $type: 'link', + $value: '/icon/unfold-16.svg', }, 'icon.unfold-24': { - '_original': { - '$value': '/icon/unfold-24.svg', + _original: { + $value: '/icon/unfold-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unfold-24', - '$type': 'link', - '$value': '/icon/unfold-24.svg', + $type: 'link', + $value: '/icon/unfold-24.svg', }, 'icon.unlock-16': { - '_original': { - '$value': '/icon/unlock-16.svg', + _original: { + $value: '/icon/unlock-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unlock-16', - '$type': 'link', - '$value': '/icon/unlock-16.svg', + $type: 'link', + $value: '/icon/unlock-16.svg', }, 'icon.unlock-24': { - '_original': { - '$value': '/icon/unlock-24.svg', + _original: { + $value: '/icon/unlock-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unlock-24', - '$type': 'link', - '$value': '/icon/unlock-24.svg', + $type: 'link', + $value: '/icon/unlock-24.svg', }, 'icon.unmute-16': { - '_original': { - '$value': '/icon/unmute-16.svg', + _original: { + $value: '/icon/unmute-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unmute-16', - '$type': 'link', - '$value': '/icon/unmute-16.svg', + $type: 'link', + $value: '/icon/unmute-16.svg', }, 'icon.unmute-24': { - '_original': { - '$value': '/icon/unmute-24.svg', + _original: { + $value: '/icon/unmute-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unmute-24', - '$type': 'link', - '$value': '/icon/unmute-24.svg', + $type: 'link', + $value: '/icon/unmute-24.svg', }, 'icon.unverified-16': { - '_original': { - '$value': '/icon/unverified-16.svg', + _original: { + $value: '/icon/unverified-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unverified-16', - '$type': 'link', - '$value': '/icon/unverified-16.svg', + $type: 'link', + $value: '/icon/unverified-16.svg', }, 'icon.unverified-24': { - '_original': { - '$value': '/icon/unverified-24.svg', + _original: { + $value: '/icon/unverified-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.unverified-24', - '$type': 'link', - '$value': '/icon/unverified-24.svg', + $type: 'link', + $value: '/icon/unverified-24.svg', }, 'icon.upload-16': { - '_original': { - '$value': '/icon/upload-16.svg', + _original: { + $value: '/icon/upload-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.upload-16', - '$type': 'link', - '$value': '/icon/upload-16.svg', + $type: 'link', + $value: '/icon/upload-16.svg', }, 'icon.upload-24': { - '_original': { - '$value': '/icon/upload-24.svg', + _original: { + $value: '/icon/upload-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.upload-24', - '$type': 'link', - '$value': '/icon/upload-24.svg', + $type: 'link', + $value: '/icon/upload-24.svg', }, 'icon.verified-16': { - '_original': { - '$value': '/icon/verified-16.svg', + _original: { + $value: '/icon/verified-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.verified-16', - '$type': 'link', - '$value': '/icon/verified-16.svg', + $type: 'link', + $value: '/icon/verified-16.svg', }, 'icon.verified-24': { - '_original': { - '$value': '/icon/verified-24.svg', + _original: { + $value: '/icon/verified-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.verified-24', - '$type': 'link', - '$value': '/icon/verified-24.svg', + $type: 'link', + $value: '/icon/verified-24.svg', }, 'icon.versions-16': { - '_original': { - '$value': '/icon/versions-16.svg', + _original: { + $value: '/icon/versions-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.versions-16', - '$type': 'link', - '$value': '/icon/versions-16.svg', + $type: 'link', + $value: '/icon/versions-16.svg', }, 'icon.versions-24': { - '_original': { - '$value': '/icon/versions-24.svg', + _original: { + $value: '/icon/versions-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.versions-24', - '$type': 'link', - '$value': '/icon/versions-24.svg', + $type: 'link', + $value: '/icon/versions-24.svg', }, 'icon.video-16': { - '_original': { - '$value': '/icon/video-16.svg', + _original: { + $value: '/icon/video-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.video-16', - '$type': 'link', - '$value': '/icon/video-16.svg', + $type: 'link', + $value: '/icon/video-16.svg', }, 'icon.video-24': { - '_original': { - '$value': '/icon/video-24.svg', + _original: { + $value: '/icon/video-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.video-24', - '$type': 'link', - '$value': '/icon/video-24.svg', + $type: 'link', + $value: '/icon/video-24.svg', }, 'icon.workflow-16': { - '_original': { - '$value': '/icon/workflow-16.svg', + _original: { + $value: '/icon/workflow-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.workflow-16', - '$type': 'link', - '$value': '/icon/workflow-16.svg', + $type: 'link', + $value: '/icon/workflow-16.svg', }, 'icon.workflow-24': { - '_original': { - '$value': '/icon/workflow-24.svg', + _original: { + $value: '/icon/workflow-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.workflow-24', - '$type': 'link', - '$value': '/icon/workflow-24.svg', + $type: 'link', + $value: '/icon/workflow-24.svg', }, 'icon.x-16': { - '_original': { - '$value': '/icon/x-16.svg', + _original: { + $value: '/icon/x-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-16', - '$type': 'link', - '$value': '/icon/x-16.svg', + $type: 'link', + $value: '/icon/x-16.svg', }, 'icon.x-24': { - '_original': { - '$value': '/icon/x-24.svg', + _original: { + $value: '/icon/x-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-24', - '$type': 'link', - '$value': '/icon/x-24.svg', + $type: 'link', + $value: '/icon/x-24.svg', }, 'icon.x-circle-16': { - '_original': { - '$value': '/icon/x-circle-16.svg', + _original: { + $value: '/icon/x-circle-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-circle-16', - '$type': 'link', - '$value': '/icon/x-circle-16.svg', + $type: 'link', + $value: '/icon/x-circle-16.svg', }, 'icon.x-circle-24': { - '_original': { - '$value': '/icon/x-circle-24.svg', + _original: { + $value: '/icon/x-circle-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-circle-24', - '$type': 'link', - '$value': '/icon/x-circle-24.svg', + $type: 'link', + $value: '/icon/x-circle-24.svg', }, 'icon.x-circle-fill-12': { - '_original': { - '$value': '/icon/x-circle-fill-12.svg', + _original: { + $value: '/icon/x-circle-fill-12.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-circle-fill-12', - '$type': 'link', - '$value': '/icon/x-circle-fill-12.svg', + $type: 'link', + $value: '/icon/x-circle-fill-12.svg', }, 'icon.x-circle-fill-16': { - '_original': { - '$value': '/icon/x-circle-fill-16.svg', + _original: { + $value: '/icon/x-circle-fill-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-circle-fill-16', - '$type': 'link', - '$value': '/icon/x-circle-fill-16.svg', + $type: 'link', + $value: '/icon/x-circle-fill-16.svg', }, 'icon.x-circle-fill-24': { - '_original': { - '$value': '/icon/x-circle-fill-24.svg', + _original: { + $value: '/icon/x-circle-fill-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.x-circle-fill-24', - '$type': 'link', - '$value': '/icon/x-circle-fill-24.svg', + $type: 'link', + $value: '/icon/x-circle-fill-24.svg', }, 'icon.zap-16': { - '_original': { - '$value': '/icon/zap-16.svg', + _original: { + $value: '/icon/zap-16.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.zap-16', - '$type': 'link', - '$value': '/icon/zap-16.svg', + $type: 'link', + $value: '/icon/zap-16.svg', }, 'icon.zap-24': { - '_original': { - '$value': '/icon/zap-24.svg', + _original: { + $value: '/icon/zap-24.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'link', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'link', }, id: 'icon.zap-24', - '$type': 'link', - '$value': '/icon/zap-24.svg', + $type: 'link', + $value: '/icon/zap-24.svg', }, 'spacing.spacer0': { - '_original': { - '$value': '0px', + _original: { + $value: '0px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, id: 'spacing.spacer0', - '$type': 'dimension', - '$value': '0', + $type: 'dimension', + $value: '0', }, - 'spacing.spacerXs': { - '_original': { - '$value': '4px', + 'spacing.spacerM': { + _original: { + $value: '16px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, - id: 'spacing.spacerXs', - '$type': 'dimension', - '$value': '4px', + id: 'spacing.spacerM', + $type: 'dimension', + $value: '16px', }, 'spacing.spacerS': { - '_original': { - '$value': '8px', + _original: { + $value: '8px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, id: 'spacing.spacerS', - '$type': 'dimension', - '$value': '8px', - }, - 'spacing.spacerM': { - '_original': { - '$value': '16px', - }, - '_group': { - id: 'spacing', - '$extensions': { - requiredModes: [], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'spacing.spacerM', - '$type': 'dimension', - '$value': '16px', + $type: 'dimension', + $value: '8px', }, 'spacing.spacerX': { - '_original': { - '$value': '24px', + _original: { + $value: '24px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, id: 'spacing.spacerX', - '$type': 'dimension', - '$value': '24px', + $type: 'dimension', + $value: '24px', }, 'spacing.spacerXl': { - '_original': { - '$value': '32px', + _original: { + $value: '32px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, id: 'spacing.spacerXl', - '$type': 'dimension', - '$value': '32px', + $type: 'dimension', + $value: '32px', }, - 'spacing.spacerXxl': { - '_original': { - '$value': '40px', + 'spacing.spacerXs': { + _original: { + $value: '4px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { - requiredModes: [], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'spacing.spacerXxl', - '$type': 'dimension', - '$value': '40px', - }, - 'font.family.system': { - '_original': { - '$value': ['-apple-system,', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji'], - }, - '_group': { - id: 'font.family', - '$extensions': { - requiredModes: [], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'fontFamily', - }, - id: 'font.family.system', - '$type': 'fontFamily', - '$value': ['-apple-system,', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji'], - }, - 'font.family.monospace': { - '_original': { - '$value': ['SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'], - }, - '_group': { - id: 'font.family', - '$extensions': { - requiredModes: [], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'fontFamily', - }, - id: 'font.family.monospace', - '$type': 'fontFamily', - '$value': ['SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'], - }, - 'font.family.display': { - '_original': { - '$value': ['InterUI', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'sans-serif'], - }, - '_group': { - id: 'font.family', - '$extensions': { - requiredModes: [], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'fontFamily', - }, - id: 'font.family.display', - '$type': 'fontFamily', - '$value': ['InterUI', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'sans-serif'], - }, - 'font.family.size.f00': { - '_original': { - '$value': '32px', - '$extensions': { - mode: { - mobile: '32px', - desktop: '48px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f00', - '$type': 'dimension', - '$value': '32px', - '$extensions': { - mode: { - mobile: '32px', - desktop: '48px', - }, - }, - }, - 'font.family.size.f0': { - '_original': { - '$value': '32px', - '$extensions': { - mode: { - mobile: '32px', - desktop: '40px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f0', - '$type': 'dimension', - '$value': '32px', - '$extensions': { - mode: { - mobile: '32px', - desktop: '40px', - }, - }, - }, - 'font.family.size.f1': { - '_original': { - '$value': '26px', - '$extensions': { - mode: { - mobile: '26px', - desktop: '32px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f1', - '$type': 'dimension', - '$value': '26px', - '$extensions': { - mode: { - mobile: '26px', - desktop: '32px', - }, - }, - }, - 'font.family.size.f2': { - '_original': { - '$value': '22px', - '$extensions': { - mode: { - mobile: '22px', - desktop: '24px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f2', - '$type': 'dimension', - '$value': '22px', - '$extensions': { - mode: { - mobile: '22px', - desktop: '24px', - }, - }, - }, - 'font.family.size.f3': { - '_original': { - '$value': '16px', - '$extensions': { - mode: { - mobile: '16px', - desktop: '20px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f3', - '$type': 'dimension', - '$value': '16px', - '$extensions': { - mode: { - mobile: '16px', - desktop: '20px', - }, - }, - }, - 'font.family.size.f4': { - '_original': { - '$value': '16px', - '$extensions': { - mode: { - mobile: '16px', - desktop: '16px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f4', - '$type': 'dimension', - '$value': '16px', - '$extensions': { - mode: { - mobile: '16px', - desktop: '16px', - }, - }, - }, - 'font.family.size.f5': { - '_original': { - '$value': '14px', - '$extensions': { - mode: { - mobile: '14px', - desktop: '14px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f5', - '$type': 'dimension', - '$value': '14px', - '$extensions': { - mode: { - mobile: '14px', - desktop: '14px', - }, - }, - }, - 'font.family.size.f6': { - '_original': { - '$value': '12px', - '$extensions': { - mode: { - mobile: '12px', - desktop: '12px', - }, - }, - }, - '_group': { - id: 'font.family.size', - '$extensions': { - requiredModes: [], - modes: ['mobile', 'desktop'], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.size.f6', - '$type': 'dimension', - '$value': '12px', - '$extensions': { - mode: { - mobile: '12px', - desktop: '12px', - }, - }, - }, - 'font.family.lineHeight.default': { - '_original': { - '$value': '1.5', - }, - '_group': { - id: 'font.family.lineHeight', - '$extensions': { - requiredModes: [], - }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', - }, - id: 'font.family.lineHeight.default', - '$type': 'dimension', - '$value': '1.5', - }, - 'font.family.lineHeight.condensed': { - '_original': { - '$value': '1.25', - }, - '_group': { - id: 'font.family.lineHeight', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, - id: 'font.family.lineHeight.condensed', - '$type': 'dimension', - '$value': '1.25', + id: 'spacing.spacerXs', + $type: 'dimension', + $value: '4px', }, - 'font.family.lineHeight.condensedUltra': { - '_original': { - '$value': '1', + 'spacing.spacerXxl': { + _original: { + $value: '40px', }, - '_group': { - id: 'font.family.lineHeight', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'GitHub Primer Design System', - '$description': 'GitHub’s design system', - '$type': 'dimension', + $name: 'GitHub Primer Design System', + $description: 'GitHub’s design system', + $type: 'dimension', }, - id: 'font.family.lineHeight.condensedUltra', - '$type': 'dimension', - '$value': '1', + id: 'spacing.spacerXxl', + $type: 'dimension', + $value: '40px', }, }; @@ -13439,6 +13439,15 @@ export const modes = { 'dark-high-contrast': '#ad0116', 'dark-colorblind': '#292100', }, + 'color.white': { + light: '#ffffff', + 'light-colorblind': '#ffffff', + 'light-high-contrast': '#ffffff', + dark: '#f0f6fc', + 'dark-dimmed': '#cdd9e5', + 'dark-high-contrast': '#ffffff', + 'dark-colorblind': '#f0f6fc', + }, 'color.yellow0': { light: '#fff8c5', 'light-colorblind': '#fff8c5', @@ -13529,15 +13538,6 @@ export const modes = { 'dark-high-contrast': '#7b4900', 'dark-colorblind': '#341a00', }, - 'color.white': { - light: '#ffffff', - 'light-colorblind': '#ffffff', - 'light-high-contrast': '#ffffff', - dark: '#f0f6fc', - 'dark-dimmed': '#cdd9e5', - 'dark-high-contrast': '#ffffff', - 'dark-colorblind': '#f0f6fc', - }, 'font.family.size.f00': { mobile: '32px', desktop: '48px', diff --git a/examples/github/tokens/index.scss b/examples/github/tokens/index.scss index bc0ff588..da9fd1e3 100644 --- a/examples/github/tokens/index.scss +++ b/examples/github/tokens/index.scss @@ -819,6 +819,16 @@ $__token-values: ( "dark-high-contrast": (#ad0116), "dark-colorblind": (#292100), ), + "color.white": ( + default: (#ffffff), + "light": (#ffffff), + "light-colorblind": (#ffffff), + "light-high-contrast": (#ffffff), + "dark": (#f0f6fc), + "dark-dimmed": (#cdd9e5), + "dark-high-contrast": (#ffffff), + "dark-colorblind": (#f0f6fc), + ), "color.yellow0": ( default: (#fff8c5), "light": (#fff8c5), @@ -919,15 +929,63 @@ $__token-values: ( "dark-high-contrast": (#7b4900), "dark-colorblind": (#341a00), ), - "color.white": ( - default: (#ffffff), - "light": (#ffffff), - "light-colorblind": (#ffffff), - "light-high-contrast": (#ffffff), - "dark": (#f0f6fc), - "dark-dimmed": (#cdd9e5), - "dark-high-contrast": (#ffffff), - "dark-colorblind": (#f0f6fc), + "font.family.display": ( + default: (InterUI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif), + ), + "font.family.lineHeight.condensed": ( + default: (1.25), + ), + "font.family.lineHeight.condensedUltra": ( + default: (1), + ), + "font.family.lineHeight.default": ( + default: (1.5), + ), + "font.family.monospace": ( + default: (SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace), + ), + "font.family.size.f00": ( + default: (32px), + "mobile": (32px), + "desktop": (48px), + ), + "font.family.size.f0": ( + default: (32px), + "mobile": (32px), + "desktop": (40px), + ), + "font.family.size.f1": ( + default: (26px), + "mobile": (26px), + "desktop": (32px), + ), + "font.family.size.f2": ( + default: (22px), + "mobile": (22px), + "desktop": (24px), + ), + "font.family.size.f3": ( + default: (16px), + "mobile": (16px), + "desktop": (20px), + ), + "font.family.size.f4": ( + default: (16px), + "mobile": (16px), + "desktop": (16px), + ), + "font.family.size.f5": ( + default: (14px), + "mobile": (14px), + "desktop": (14px), + ), + "font.family.size.f6": ( + default: (12px), + "mobile": (12px), + "desktop": (12px), + ), + "font.family.system": ( + default: (-apple-system,, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"), ), "icon.alert-16": ( default: (url('/icon/alert-16.svg')), @@ -935,6 +993,9 @@ $__token-values: ( "icon.alert-24": ( default: (url('/icon/alert-24.svg')), ), + "icon.alert-fill-12": ( + default: (url('/icon/alert-fill-12.svg')), + ), "icon.archive-16": ( default: (url('/icon/archive-16.svg')), ), @@ -944,9 +1005,6 @@ $__token-values: ( "icon.arrow-both-16": ( default: (url('/icon/arrow-both-16.svg')), ), - "icon.alert-fill-12": ( - default: (url('/icon/alert-fill-12.svg')), - ), "icon.arrow-both-24": ( default: (url('/icon/arrow-both-24.svg')), ), @@ -2339,82 +2397,24 @@ $__token-values: ( "spacing.spacer0": ( default: (0), ), - "spacing.spacerXs": ( - default: (4px), + "spacing.spacerM": ( + default: (16px), ), "spacing.spacerS": ( default: (8px), ), - "spacing.spacerM": ( - default: (16px), - ), "spacing.spacerX": ( default: (24px), ), "spacing.spacerXl": ( default: (32px), ), + "spacing.spacerXs": ( + default: (4px), + ), "spacing.spacerXxl": ( default: (40px), ), - "font.family.system": ( - default: (-apple-system,, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"), - ), - "font.family.monospace": ( - default: (SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace), - ), - "font.family.display": ( - default: (InterUI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif), - ), - "font.family.size.f00": ( - default: (32px), - "mobile": (32px), - "desktop": (48px), - ), - "font.family.size.f0": ( - default: (32px), - "mobile": (32px), - "desktop": (40px), - ), - "font.family.size.f1": ( - default: (26px), - "mobile": (26px), - "desktop": (32px), - ), - "font.family.size.f2": ( - default: (22px), - "mobile": (22px), - "desktop": (24px), - ), - "font.family.size.f3": ( - default: (16px), - "mobile": (16px), - "desktop": (20px), - ), - "font.family.size.f4": ( - default: (16px), - "mobile": (16px), - "desktop": (16px), - ), - "font.family.size.f5": ( - default: (14px), - "mobile": (14px), - "desktop": (14px), - ), - "font.family.size.f6": ( - default: (12px), - "mobile": (12px), - "desktop": (12px), - ), - "font.family.lineHeight.default": ( - default: (1.5), - ), - "font.family.lineHeight.condensed": ( - default: (1.25), - ), - "font.family.lineHeight.condensedUltra": ( - default: (1), - ), ); $__token-typography-mixins: ( diff --git a/examples/github/tokens/tokens.css b/examples/github/tokens/tokens.css index f3f9de23..77ec1cd3 100644 --- a/examples/github/tokens/tokens.css +++ b/examples/github/tokens/tokens.css @@ -86,6 +86,7 @@ --color-red7: #82071e; --color-red8: #660018; --color-red9: #4c0014; + --color-white: #ffffff; --color-yellow0: #fff8c5; --color-yellow1: #fae17d; --color-yellow2: #eac54f; @@ -96,13 +97,26 @@ --color-yellow7: #633c01; --color-yellow8: #4d2d00; --color-yellow9: #3b2300; - --color-white: #ffffff; + --font-family-display: InterUI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif; + --font-family-lineHeight-condensed: 1.25; + --font-family-lineHeight-condensedUltra: 1; + --font-family-lineHeight-default: 1.5; + --font-family-monospace: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; + --font-family-size-f00: 32px; + --font-family-size-f0: 32px; + --font-family-size-f1: 26px; + --font-family-size-f2: 22px; + --font-family-size-f3: 16px; + --font-family-size-f4: 16px; + --font-family-size-f5: 14px; + --font-family-size-f6: 12px; + --font-family-system: -apple-system,, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; --icon-alert-16: url('/icon/alert-16.svg'); --icon-alert-24: url('/icon/alert-24.svg'); + --icon-alert-fill-12: url('/icon/alert-fill-12.svg'); --icon-archive-16: url('/icon/archive-16.svg'); --icon-archive-24: url('/icon/archive-24.svg'); --icon-arrow-both-16: url('/icon/arrow-both-16.svg'); - --icon-alert-fill-12: url('/icon/alert-fill-12.svg'); --icon-arrow-both-24: url('/icon/arrow-both-24.svg'); --icon-arrow-down-16: url('/icon/arrow-down-16.svg'); --icon-arrow-down-24: url('/icon/arrow-down-24.svg'); @@ -567,26 +581,12 @@ --icon-zap-16: url('/icon/zap-16.svg'); --icon-zap-24: url('/icon/zap-24.svg'); --spacing-spacer0: 0; - --spacing-spacerXs: 4px; - --spacing-spacerS: 8px; --spacing-spacerM: 16px; + --spacing-spacerS: 8px; --spacing-spacerX: 24px; --spacing-spacerXl: 32px; + --spacing-spacerXs: 4px; --spacing-spacerXxl: 40px; - --font-family-system: -apple-system,, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; - --font-family-monospace: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; - --font-family-display: InterUI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif; - --font-family-size-f00: 32px; - --font-family-size-f0: 32px; - --font-family-size-f1: 26px; - --font-family-size-f2: 22px; - --font-family-size-f3: 16px; - --font-family-size-f4: 16px; - --font-family-size-f5: 14px; - --font-family-size-f6: 12px; - --font-family-lineHeight-default: 1.5; - --font-family-lineHeight-condensed: 1.25; - --font-family-lineHeight-condensedUltra: 1; } [data-color-theme="light"] { @@ -671,6 +671,7 @@ --color-red7: #82071e; --color-red8: #660018; --color-red9: #4c0014; + --color-white: #ffffff; --color-yellow0: #fff8c5; --color-yellow1: #fae17d; --color-yellow2: #eac54f; @@ -681,197 +682,196 @@ --color-yellow7: #633c01; --color-yellow8: #4d2d00; --color-yellow9: #3b2300; - --color-white: #ffffff; } @supports (color: color(display-p3 1 1 1)) { :root { - --color-black: color(display-p3 0.105882 0.121569 0.141176); - --color-blue0: color(display-p3 0.866667 0.956863 1); - --color-blue1: color(display-p3 0.713725 0.890196 1); - --color-blue2: color(display-p3 0.501961 0.8 1); - --color-blue3: color(display-p3 0.329412 0.682353 1); - --color-blue4: color(display-p3 0.129412 0.545098 1); - --color-blue5: color(display-p3 0.035294 0.411765 0.854902); - --color-blue6: color(display-p3 0.019608 0.313725 0.682353); - --color-blue7: color(display-p3 0.011765 0.239216 0.545098); - --color-blue8: color(display-p3 0.039216 0.188235 0.411765); - --color-blue9: color(display-p3 0 0.129412 0.333333); - --color-coral0: color(display-p3 1 0.941176 0.921569); - --color-coral1: color(display-p3 1 0.839216 0.8); - --color-coral2: color(display-p3 1 0.705882 0.631373); - --color-coral3: color(display-p3 0.992157 0.54902 0.45098); - --color-coral4: color(display-p3 0.92549 0.396078 0.278431); - --color-coral5: color(display-p3 0.768627 0.262745 0.168627); - --color-coral6: color(display-p3 0.619608 0.184314 0.109804); - --color-coral7: color(display-p3 0.501961 0.121569 0.058824); - --color-coral8: color(display-p3 0.411765 0.066667 0.019608); - --color-coral9: color(display-p3 0.317647 0.035294 0.003922); - --color-gray0: color(display-p3 0.964706 0.972549 0.980392); - --color-gray1: color(display-p3 0.917647 0.933333 0.94902); - --color-gray2: color(display-p3 0.815686 0.843137 0.870588); - --color-gray3: color(display-p3 0.686275 0.721569 0.756863); - --color-gray4: color(display-p3 0.54902 0.584314 0.623529); - --color-gray5: color(display-p3 0.431373 0.466667 0.505882); - --color-gray6: color(display-p3 0.341176 0.376471 0.415686); - --color-gray7: color(display-p3 0.258824 0.290196 0.32549); - --color-gray8: color(display-p3 0.196078 0.219608 0.247059); - --color-gray9: color(display-p3 0.141176 0.160784 0.184314); - --color-green0: color(display-p3 0.854902 0.984314 0.882353); - --color-green1: color(display-p3 0.67451 0.933333 0.733333); - --color-green2: color(display-p3 0.435294 0.866667 0.545098); - --color-green3: color(display-p3 0.290196 0.760784 0.419608); - --color-green4: color(display-p3 0.176471 0.643137 0.305882); - --color-green5: color(display-p3 0.101961 0.498039 0.215686); - --color-green6: color(display-p3 0.066667 0.388235 0.160784); - --color-green7: color(display-p3 0.015686 0.309804 0.117647); - --color-green8: color(display-p3 0 0.239216 0.086275); - --color-green9: color(display-p3 0 0.176471 0.066667); - --color-orange0: color(display-p3 1 0.945098 0.898039); - --color-orange1: color(display-p3 1 0.847059 0.709804); - --color-orange2: color(display-p3 1 0.717647 0.486275); - --color-orange3: color(display-p3 0.984314 0.560784 0.266667); - --color-orange4: color(display-p3 0.882353 0.435294 0.141176); - --color-orange5: color(display-p3 0.737255 0.298039 0); - --color-orange6: color(display-p3 0.584314 0.219608 0); - --color-orange7: color(display-p3 0.462745 0.172549 0); - --color-orange8: color(display-p3 0.360784 0.133333 0); - --color-orange9: color(display-p3 0.278431 0.090196 0); - --color-pink0: color(display-p3 1 0.937255 0.968627); - --color-pink1: color(display-p3 1 0.827451 0.921569); - --color-pink2: color(display-p3 1 0.678431 0.854902); - --color-pink3: color(display-p3 1 0.501961 0.784314); - --color-pink4: color(display-p3 0.909804 0.352941 0.678431); - --color-pink5: color(display-p3 0.74902 0.223529 0.537255); - --color-pink6: color(display-p3 0.6 0.156863 0.431373); - --color-pink7: color(display-p3 0.466667 0.12549 0.341176); - --color-pink8: color(display-p3 0.380392 0.07451 0.278431); - --color-pink9: color(display-p3 0.301961 0.011765 0.211765); - --color-purple0: color(display-p3 0.984314 0.937255 1); - --color-purple1: color(display-p3 0.92549 0.847059 1); - --color-purple2: color(display-p3 0.847059 0.72549 1); - --color-purple3: color(display-p3 0.760784 0.592157 1); - --color-purple4: color(display-p3 0.643137 0.458824 0.976471); - --color-purple5: color(display-p3 0.509804 0.313725 0.87451); - --color-purple6: color(display-p3 0.4 0.223529 0.729412); - --color-purple7: color(display-p3 0.317647 0.164706 0.592157); - --color-purple8: color(display-p3 0.243137 0.121569 0.47451); - --color-purple9: color(display-p3 0.180392 0.078431 0.380392); - --color-red0: color(display-p3 1 0.921569 0.913725); - --color-red1: color(display-p3 1 0.807843 0.796078); - --color-red2: color(display-p3 1 0.670588 0.658824); - --color-red3: color(display-p3 1 0.505882 0.509804); - --color-red4: color(display-p3 0.980392 0.270588 0.286275); - --color-red5: color(display-p3 0.811765 0.133333 0.180392); - --color-red6: color(display-p3 0.643137 0.054902 0.14902); - --color-red7: color(display-p3 0.509804 0.027451 0.117647); - --color-red8: color(display-p3 0.4 0 0.094118); - --color-red9: color(display-p3 0.298039 0 0.078431); - --color-yellow0: color(display-p3 1 0.972549 0.772549); - --color-yellow1: color(display-p3 0.980392 0.882353 0.490196); - --color-yellow2: color(display-p3 0.917647 0.772549 0.309804); - --color-yellow3: color(display-p3 0.831373 0.654902 0.172549); - --color-yellow4: color(display-p3 0.74902 0.529412 0); - --color-yellow5: color(display-p3 0.603922 0.403922 0); - --color-yellow6: color(display-p3 0.490196 0.305882 0); - --color-yellow7: color(display-p3 0.388235 0.235294 0.003922); - --color-yellow8: color(display-p3 0.301961 0.176471 0); - --color-yellow9: color(display-p3 0.231373 0.137255 0); + --color-black: color(display-p3 0.10588235294117647 0.12156862745098039 0.1411764705882353); + --color-blue0: color(display-p3 0.8666666666666667 0.9568627450980393 1); + --color-blue1: color(display-p3 0.7137254901960784 0.8901960784313725 1); + --color-blue2: color(display-p3 0.5019607843137255 0.8 1); + --color-blue3: color(display-p3 0.32941176470588235 0.6823529411764706 1); + --color-blue4: color(display-p3 0.12941176470588237 0.5450980392156862 1); + --color-blue5: color(display-p3 0.03529411764705882 0.4117647058823529 0.8549019607843137); + --color-blue6: color(display-p3 0.0196078431372549 0.3137254901960784 0.6823529411764706); + --color-blue7: color(display-p3 0.011764705882352941 0.23921568627450981 0.5450980392156862); + --color-blue8: color(display-p3 0.0392156862745098 0.18823529411764706 0.4117647058823529); + --color-blue9: color(display-p3 0 0.12941176470588237 0.3333333333333333); + --color-coral0: color(display-p3 1 0.9411764705882353 0.9215686274509803); + --color-coral1: color(display-p3 1 0.8392156862745098 0.8); + --color-coral2: color(display-p3 1 0.7058823529411765 0.6313725490196078); + --color-coral3: color(display-p3 0.9921568627450981 0.5490196078431373 0.45098039215686275); + --color-coral4: color(display-p3 0.9254901960784314 0.396078431372549 0.2784313725490196); + --color-coral5: color(display-p3 0.7686274509803922 0.2627450980392157 0.16862745098039217); + --color-coral6: color(display-p3 0.6196078431372549 0.1843137254901961 0.10980392156862745); + --color-coral7: color(display-p3 0.5019607843137255 0.12156862745098039 0.058823529411764705); + --color-coral8: color(display-p3 0.4117647058823529 0.06666666666666667 0.0196078431372549); + --color-coral9: color(display-p3 0.3176470588235294 0.03529411764705882 0.00392156862745098); + --color-gray0: color(display-p3 0.9647058823529412 0.9725490196078431 0.9803921568627451); + --color-gray1: color(display-p3 0.9176470588235294 0.9333333333333333 0.9490196078431372); + --color-gray2: color(display-p3 0.8156862745098039 0.8431372549019608 0.8705882352941177); + --color-gray3: color(display-p3 0.6862745098039216 0.7215686274509804 0.7568627450980392); + --color-gray4: color(display-p3 0.5490196078431373 0.5843137254901961 0.6235294117647059); + --color-gray5: color(display-p3 0.43137254901960786 0.4666666666666667 0.5058823529411764); + --color-gray6: color(display-p3 0.3411764705882353 0.3764705882352941 0.41568627450980394); + --color-gray7: color(display-p3 0.25882352941176473 0.2901960784313726 0.3254901960784314); + --color-gray8: color(display-p3 0.19607843137254902 0.2196078431372549 0.24705882352941178); + --color-gray9: color(display-p3 0.1411764705882353 0.1607843137254902 0.1843137254901961); + --color-green0: color(display-p3 0.8549019607843137 0.984313725490196 0.8823529411764706); + --color-green1: color(display-p3 0.6745098039215687 0.9333333333333333 0.7333333333333333); + --color-green2: color(display-p3 0.43529411764705883 0.8666666666666667 0.5450980392156862); + --color-green3: color(display-p3 0.2901960784313726 0.7607843137254902 0.4196078431372549); + --color-green4: color(display-p3 0.17647058823529413 0.6431372549019608 0.3058823529411765); + --color-green5: color(display-p3 0.10196078431372549 0.4980392156862745 0.21568627450980393); + --color-green6: color(display-p3 0.06666666666666667 0.38823529411764707 0.1607843137254902); + --color-green7: color(display-p3 0.01568627450980392 0.30980392156862746 0.11764705882352941); + --color-green8: color(display-p3 0 0.23921568627450981 0.08627450980392157); + --color-green9: color(display-p3 0 0.17647058823529413 0.06666666666666667); + --color-orange0: color(display-p3 1 0.9450980392156862 0.8980392156862745); + --color-orange1: color(display-p3 1 0.8470588235294118 0.7098039215686275); + --color-orange2: color(display-p3 1 0.7176470588235294 0.48627450980392156); + --color-orange3: color(display-p3 0.984313725490196 0.5607843137254902 0.26666666666666666); + --color-orange4: color(display-p3 0.8823529411764706 0.43529411764705883 0.1411764705882353); + --color-orange5: color(display-p3 0.7372549019607844 0.2980392156862745 0); + --color-orange6: color(display-p3 0.5843137254901961 0.2196078431372549 0); + --color-orange7: color(display-p3 0.4627450980392157 0.17254901960784313 0); + --color-orange8: color(display-p3 0.3607843137254902 0.13333333333333333 0); + --color-orange9: color(display-p3 0.2784313725490196 0.09019607843137255 0); + --color-pink0: color(display-p3 1 0.9372549019607843 0.9686274509803922); + --color-pink1: color(display-p3 1 0.8274509803921568 0.9215686274509803); + --color-pink2: color(display-p3 1 0.6784313725490196 0.8549019607843137); + --color-pink3: color(display-p3 1 0.5019607843137255 0.7843137254901961); + --color-pink4: color(display-p3 0.9098039215686274 0.35294117647058826 0.6784313725490196); + --color-pink5: color(display-p3 0.7490196078431373 0.2235294117647059 0.5372549019607843); + --color-pink6: color(display-p3 0.6 0.1568627450980392 0.43137254901960786); + --color-pink7: color(display-p3 0.4666666666666667 0.12549019607843137 0.3411764705882353); + --color-pink8: color(display-p3 0.3803921568627451 0.07450980392156863 0.2784313725490196); + --color-pink9: color(display-p3 0.30196078431372547 0.011764705882352941 0.21176470588235294); + --color-purple0: color(display-p3 0.984313725490196 0.9372549019607843 1); + --color-purple1: color(display-p3 0.9254901960784314 0.8470588235294118 1); + --color-purple2: color(display-p3 0.8470588235294118 0.7254901960784313 1); + --color-purple3: color(display-p3 0.7607843137254902 0.592156862745098 1); + --color-purple4: color(display-p3 0.6431372549019608 0.4588235294117647 0.9764705882352941); + --color-purple5: color(display-p3 0.5098039215686274 0.3137254901960784 0.8745098039215686); + --color-purple6: color(display-p3 0.4 0.2235294117647059 0.7294117647058823); + --color-purple7: color(display-p3 0.3176470588235294 0.16470588235294117 0.592156862745098); + --color-purple8: color(display-p3 0.24313725490196078 0.12156862745098039 0.4745098039215686); + --color-purple9: color(display-p3 0.1803921568627451 0.0784313725490196 0.3803921568627451); + --color-red0: color(display-p3 1 0.9215686274509803 0.9137254901960784); + --color-red1: color(display-p3 1 0.807843137254902 0.796078431372549); + --color-red2: color(display-p3 1 0.6705882352941176 0.6588235294117647); + --color-red3: color(display-p3 1 0.5058823529411764 0.5098039215686274); + --color-red4: color(display-p3 0.9803921568627451 0.27058823529411763 0.28627450980392155); + --color-red5: color(display-p3 0.8117647058823529 0.13333333333333333 0.1803921568627451); + --color-red6: color(display-p3 0.6431372549019608 0.054901960784313725 0.14901960784313725); + --color-red7: color(display-p3 0.5098039215686274 0.027450980392156862 0.11764705882352941); + --color-red8: color(display-p3 0.4 0 0.09411764705882353); + --color-red9: color(display-p3 0.2980392156862745 0 0.0784313725490196); --color-white: color(display-p3 1 1 1); + --color-yellow0: color(display-p3 1 0.9725490196078431 0.7725490196078432); + --color-yellow1: color(display-p3 0.9803921568627451 0.8823529411764706 0.49019607843137253); + --color-yellow2: color(display-p3 0.9176470588235294 0.7725490196078432 0.30980392156862746); + --color-yellow3: color(display-p3 0.8313725490196079 0.6549019607843137 0.17254901960784313); + --color-yellow4: color(display-p3 0.7490196078431373 0.5294117647058824 0); + --color-yellow5: color(display-p3 0.6039215686274509 0.403921568627451 0); + --color-yellow6: color(display-p3 0.49019607843137253 0.3058823529411765 0); + --color-yellow7: color(display-p3 0.38823529411764707 0.23529411764705882 0.00392156862745098); + --color-yellow8: color(display-p3 0.30196078431372547 0.17647058823529413 0); + --color-yellow9: color(display-p3 0.23137254901960785 0.13725490196078433 0); } [data-color-theme="light"] { - --color-black: color(display-p3 0.105882 0.121569 0.141176); - --color-blue0: color(display-p3 0.866667 0.956863 1); - --color-blue1: color(display-p3 0.713725 0.890196 1); - --color-blue2: color(display-p3 0.501961 0.8 1); - --color-blue3: color(display-p3 0.329412 0.682353 1); - --color-blue4: color(display-p3 0.129412 0.545098 1); - --color-blue5: color(display-p3 0.035294 0.411765 0.854902); - --color-blue6: color(display-p3 0.019608 0.313725 0.682353); - --color-blue7: color(display-p3 0.011765 0.239216 0.545098); - --color-blue8: color(display-p3 0.039216 0.188235 0.411765); - --color-blue9: color(display-p3 0 0.129412 0.333333); - --color-coral0: color(display-p3 1 0.941176 0.921569); - --color-coral1: color(display-p3 1 0.839216 0.8); - --color-coral2: color(display-p3 1 0.705882 0.631373); - --color-coral3: color(display-p3 0.992157 0.54902 0.45098); - --color-coral4: color(display-p3 0.92549 0.396078 0.278431); - --color-coral5: color(display-p3 0.768627 0.262745 0.168627); - --color-coral6: color(display-p3 0.619608 0.184314 0.109804); - --color-coral7: color(display-p3 0.501961 0.121569 0.058824); - --color-coral8: color(display-p3 0.411765 0.066667 0.019608); - --color-coral9: color(display-p3 0.317647 0.035294 0.003922); - --color-gray0: color(display-p3 0.964706 0.972549 0.980392); - --color-gray1: color(display-p3 0.917647 0.933333 0.94902); - --color-gray2: color(display-p3 0.815686 0.843137 0.870588); - --color-gray3: color(display-p3 0.686275 0.721569 0.756863); - --color-gray4: color(display-p3 0.54902 0.584314 0.623529); - --color-gray5: color(display-p3 0.431373 0.466667 0.505882); - --color-gray6: color(display-p3 0.341176 0.376471 0.415686); - --color-gray7: color(display-p3 0.258824 0.290196 0.32549); - --color-gray8: color(display-p3 0.196078 0.219608 0.247059); - --color-gray9: color(display-p3 0.141176 0.160784 0.184314); - --color-green0: color(display-p3 0.854902 0.984314 0.882353); - --color-green1: color(display-p3 0.67451 0.933333 0.733333); - --color-green2: color(display-p3 0.435294 0.866667 0.545098); - --color-green3: color(display-p3 0.290196 0.760784 0.419608); - --color-green4: color(display-p3 0.176471 0.643137 0.305882); - --color-green5: color(display-p3 0.101961 0.498039 0.215686); - --color-green6: color(display-p3 0.066667 0.388235 0.160784); - --color-green7: color(display-p3 0.015686 0.309804 0.117647); - --color-green8: color(display-p3 0 0.239216 0.086275); - --color-green9: color(display-p3 0 0.176471 0.066667); - --color-orange0: color(display-p3 1 0.945098 0.898039); - --color-orange1: color(display-p3 1 0.847059 0.709804); - --color-orange2: color(display-p3 1 0.717647 0.486275); - --color-orange3: color(display-p3 0.984314 0.560784 0.266667); - --color-orange4: color(display-p3 0.882353 0.435294 0.141176); - --color-orange5: color(display-p3 0.737255 0.298039 0); - --color-orange6: color(display-p3 0.584314 0.219608 0); - --color-orange7: color(display-p3 0.462745 0.172549 0); - --color-orange8: color(display-p3 0.360784 0.133333 0); - --color-orange9: color(display-p3 0.278431 0.090196 0); - --color-pink0: color(display-p3 1 0.937255 0.968627); - --color-pink1: color(display-p3 1 0.827451 0.921569); - --color-pink2: color(display-p3 1 0.678431 0.854902); - --color-pink3: color(display-p3 1 0.501961 0.784314); - --color-pink4: color(display-p3 0.909804 0.352941 0.678431); - --color-pink5: color(display-p3 0.74902 0.223529 0.537255); - --color-pink6: color(display-p3 0.6 0.156863 0.431373); - --color-pink7: color(display-p3 0.466667 0.12549 0.341176); - --color-pink8: color(display-p3 0.380392 0.07451 0.278431); - --color-pink9: color(display-p3 0.301961 0.011765 0.211765); - --color-purple0: color(display-p3 0.984314 0.937255 1); - --color-purple1: color(display-p3 0.92549 0.847059 1); - --color-purple2: color(display-p3 0.847059 0.72549 1); - --color-purple3: color(display-p3 0.760784 0.592157 1); - --color-purple4: color(display-p3 0.643137 0.458824 0.976471); - --color-purple5: color(display-p3 0.509804 0.313725 0.87451); - --color-purple6: color(display-p3 0.4 0.223529 0.729412); - --color-purple7: color(display-p3 0.317647 0.164706 0.592157); - --color-purple8: color(display-p3 0.243137 0.121569 0.47451); - --color-purple9: color(display-p3 0.180392 0.078431 0.380392); - --color-red0: color(display-p3 1 0.921569 0.913725); - --color-red1: color(display-p3 1 0.807843 0.796078); - --color-red2: color(display-p3 1 0.670588 0.658824); - --color-red3: color(display-p3 1 0.505882 0.509804); - --color-red4: color(display-p3 0.980392 0.270588 0.286275); - --color-red5: color(display-p3 0.811765 0.133333 0.180392); - --color-red6: color(display-p3 0.643137 0.054902 0.14902); - --color-red7: color(display-p3 0.509804 0.027451 0.117647); - --color-red8: color(display-p3 0.4 0 0.094118); - --color-red9: color(display-p3 0.298039 0 0.078431); - --color-yellow0: color(display-p3 1 0.972549 0.772549); - --color-yellow1: color(display-p3 0.980392 0.882353 0.490196); - --color-yellow2: color(display-p3 0.917647 0.772549 0.309804); - --color-yellow3: color(display-p3 0.831373 0.654902 0.172549); - --color-yellow4: color(display-p3 0.74902 0.529412 0); - --color-yellow5: color(display-p3 0.603922 0.403922 0); - --color-yellow6: color(display-p3 0.490196 0.305882 0); - --color-yellow7: color(display-p3 0.388235 0.235294 0.003922); - --color-yellow8: color(display-p3 0.301961 0.176471 0); - --color-yellow9: color(display-p3 0.231373 0.137255 0); + --color-black: color(display-p3 0.10588235294117647 0.12156862745098039 0.1411764705882353); + --color-blue0: color(display-p3 0.8666666666666667 0.9568627450980393 1); + --color-blue1: color(display-p3 0.7137254901960784 0.8901960784313725 1); + --color-blue2: color(display-p3 0.5019607843137255 0.8 1); + --color-blue3: color(display-p3 0.32941176470588235 0.6823529411764706 1); + --color-blue4: color(display-p3 0.12941176470588237 0.5450980392156862 1); + --color-blue5: color(display-p3 0.03529411764705882 0.4117647058823529 0.8549019607843137); + --color-blue6: color(display-p3 0.0196078431372549 0.3137254901960784 0.6823529411764706); + --color-blue7: color(display-p3 0.011764705882352941 0.23921568627450981 0.5450980392156862); + --color-blue8: color(display-p3 0.0392156862745098 0.18823529411764706 0.4117647058823529); + --color-blue9: color(display-p3 0 0.12941176470588237 0.3333333333333333); + --color-coral0: color(display-p3 1 0.9411764705882353 0.9215686274509803); + --color-coral1: color(display-p3 1 0.8392156862745098 0.8); + --color-coral2: color(display-p3 1 0.7058823529411765 0.6313725490196078); + --color-coral3: color(display-p3 0.9921568627450981 0.5490196078431373 0.45098039215686275); + --color-coral4: color(display-p3 0.9254901960784314 0.396078431372549 0.2784313725490196); + --color-coral5: color(display-p3 0.7686274509803922 0.2627450980392157 0.16862745098039217); + --color-coral6: color(display-p3 0.6196078431372549 0.1843137254901961 0.10980392156862745); + --color-coral7: color(display-p3 0.5019607843137255 0.12156862745098039 0.058823529411764705); + --color-coral8: color(display-p3 0.4117647058823529 0.06666666666666667 0.0196078431372549); + --color-coral9: color(display-p3 0.3176470588235294 0.03529411764705882 0.00392156862745098); + --color-gray0: color(display-p3 0.9647058823529412 0.9725490196078431 0.9803921568627451); + --color-gray1: color(display-p3 0.9176470588235294 0.9333333333333333 0.9490196078431372); + --color-gray2: color(display-p3 0.8156862745098039 0.8431372549019608 0.8705882352941177); + --color-gray3: color(display-p3 0.6862745098039216 0.7215686274509804 0.7568627450980392); + --color-gray4: color(display-p3 0.5490196078431373 0.5843137254901961 0.6235294117647059); + --color-gray5: color(display-p3 0.43137254901960786 0.4666666666666667 0.5058823529411764); + --color-gray6: color(display-p3 0.3411764705882353 0.3764705882352941 0.41568627450980394); + --color-gray7: color(display-p3 0.25882352941176473 0.2901960784313726 0.3254901960784314); + --color-gray8: color(display-p3 0.19607843137254902 0.2196078431372549 0.24705882352941178); + --color-gray9: color(display-p3 0.1411764705882353 0.1607843137254902 0.1843137254901961); + --color-green0: color(display-p3 0.8549019607843137 0.984313725490196 0.8823529411764706); + --color-green1: color(display-p3 0.6745098039215687 0.9333333333333333 0.7333333333333333); + --color-green2: color(display-p3 0.43529411764705883 0.8666666666666667 0.5450980392156862); + --color-green3: color(display-p3 0.2901960784313726 0.7607843137254902 0.4196078431372549); + --color-green4: color(display-p3 0.17647058823529413 0.6431372549019608 0.3058823529411765); + --color-green5: color(display-p3 0.10196078431372549 0.4980392156862745 0.21568627450980393); + --color-green6: color(display-p3 0.06666666666666667 0.38823529411764707 0.1607843137254902); + --color-green7: color(display-p3 0.01568627450980392 0.30980392156862746 0.11764705882352941); + --color-green8: color(display-p3 0 0.23921568627450981 0.08627450980392157); + --color-green9: color(display-p3 0 0.17647058823529413 0.06666666666666667); + --color-orange0: color(display-p3 1 0.9450980392156862 0.8980392156862745); + --color-orange1: color(display-p3 1 0.8470588235294118 0.7098039215686275); + --color-orange2: color(display-p3 1 0.7176470588235294 0.48627450980392156); + --color-orange3: color(display-p3 0.984313725490196 0.5607843137254902 0.26666666666666666); + --color-orange4: color(display-p3 0.8823529411764706 0.43529411764705883 0.1411764705882353); + --color-orange5: color(display-p3 0.7372549019607844 0.2980392156862745 0); + --color-orange6: color(display-p3 0.5843137254901961 0.2196078431372549 0); + --color-orange7: color(display-p3 0.4627450980392157 0.17254901960784313 0); + --color-orange8: color(display-p3 0.3607843137254902 0.13333333333333333 0); + --color-orange9: color(display-p3 0.2784313725490196 0.09019607843137255 0); + --color-pink0: color(display-p3 1 0.9372549019607843 0.9686274509803922); + --color-pink1: color(display-p3 1 0.8274509803921568 0.9215686274509803); + --color-pink2: color(display-p3 1 0.6784313725490196 0.8549019607843137); + --color-pink3: color(display-p3 1 0.5019607843137255 0.7843137254901961); + --color-pink4: color(display-p3 0.9098039215686274 0.35294117647058826 0.6784313725490196); + --color-pink5: color(display-p3 0.7490196078431373 0.2235294117647059 0.5372549019607843); + --color-pink6: color(display-p3 0.6 0.1568627450980392 0.43137254901960786); + --color-pink7: color(display-p3 0.4666666666666667 0.12549019607843137 0.3411764705882353); + --color-pink8: color(display-p3 0.3803921568627451 0.07450980392156863 0.2784313725490196); + --color-pink9: color(display-p3 0.30196078431372547 0.011764705882352941 0.21176470588235294); + --color-purple0: color(display-p3 0.984313725490196 0.9372549019607843 1); + --color-purple1: color(display-p3 0.9254901960784314 0.8470588235294118 1); + --color-purple2: color(display-p3 0.8470588235294118 0.7254901960784313 1); + --color-purple3: color(display-p3 0.7607843137254902 0.592156862745098 1); + --color-purple4: color(display-p3 0.6431372549019608 0.4588235294117647 0.9764705882352941); + --color-purple5: color(display-p3 0.5098039215686274 0.3137254901960784 0.8745098039215686); + --color-purple6: color(display-p3 0.4 0.2235294117647059 0.7294117647058823); + --color-purple7: color(display-p3 0.3176470588235294 0.16470588235294117 0.592156862745098); + --color-purple8: color(display-p3 0.24313725490196078 0.12156862745098039 0.4745098039215686); + --color-purple9: color(display-p3 0.1803921568627451 0.0784313725490196 0.3803921568627451); + --color-red0: color(display-p3 1 0.9215686274509803 0.9137254901960784); + --color-red1: color(display-p3 1 0.807843137254902 0.796078431372549); + --color-red2: color(display-p3 1 0.6705882352941176 0.6588235294117647); + --color-red3: color(display-p3 1 0.5058823529411764 0.5098039215686274); + --color-red4: color(display-p3 0.9803921568627451 0.27058823529411763 0.28627450980392155); + --color-red5: color(display-p3 0.8117647058823529 0.13333333333333333 0.1803921568627451); + --color-red6: color(display-p3 0.6431372549019608 0.054901960784313725 0.14901960784313725); + --color-red7: color(display-p3 0.5098039215686274 0.027450980392156862 0.11764705882352941); + --color-red8: color(display-p3 0.4 0 0.09411764705882353); + --color-red9: color(display-p3 0.2980392156862745 0 0.0784313725490196); --color-white: color(display-p3 1 1 1); + --color-yellow0: color(display-p3 1 0.9725490196078431 0.7725490196078432); + --color-yellow1: color(display-p3 0.9803921568627451 0.8823529411764706 0.49019607843137253); + --color-yellow2: color(display-p3 0.9176470588235294 0.7725490196078432 0.30980392156862746); + --color-yellow3: color(display-p3 0.8313725490196079 0.6549019607843137 0.17254901960784313); + --color-yellow4: color(display-p3 0.7490196078431373 0.5294117647058824 0); + --color-yellow5: color(display-p3 0.6039215686274509 0.403921568627451 0); + --color-yellow6: color(display-p3 0.49019607843137253 0.3058823529411765 0); + --color-yellow7: color(display-p3 0.38823529411764707 0.23529411764705882 0.00392156862745098); + --color-yellow8: color(display-p3 0.30196078431372547 0.17647058823529413 0); + --color-yellow9: color(display-p3 0.23137254901960785 0.13725490196078433 0); } } diff --git a/examples/ibm/tokens/index.d.ts b/examples/ibm/tokens/index.d.ts index b07ec1b4..f784e19e 100644 --- a/examples/ibm/tokens/index.d.ts +++ b/examples/ibm/tokens/index.d.ts @@ -24,250 +24,321 @@ export declare const tokens: { 'color.black100': ColorToken['$value']; 'color.blackHover': ColorToken['$value']; 'color.blue10': ColorToken['$value']; - 'color.blue20': ColorToken['$value']; - 'color.blue30': ColorToken['$value']; - 'color.blue40': ColorToken['$value']; - 'color.blue50': ColorToken['$value']; - 'color.blue60': ColorToken['$value']; - 'color.blue70': ColorToken['$value']; - 'color.blue80': ColorToken['$value']; - 'color.blue90': ColorToken['$value']; - 'color.blue100': ColorToken['$value']; 'color.blue10Hover': ColorToken['$value']; + 'color.blue20': ColorToken['$value']; 'color.blue20Hover': ColorToken['$value']; + 'color.blue30': ColorToken['$value']; 'color.blue30Hover': ColorToken['$value']; + 'color.blue40': ColorToken['$value']; 'color.blue40Hover': ColorToken['$value']; + 'color.blue50': ColorToken['$value']; 'color.blue50Hover': ColorToken['$value']; + 'color.blue60': ColorToken['$value']; 'color.blue60Hover': ColorToken['$value']; + 'color.blue70': ColorToken['$value']; 'color.blue70Hover': ColorToken['$value']; + 'color.blue80': ColorToken['$value']; 'color.blue80Hover': ColorToken['$value']; + 'color.blue90': ColorToken['$value']; 'color.blue90Hover': ColorToken['$value']; + 'color.blue100': ColorToken['$value']; 'color.blue100Hover': ColorToken['$value']; 'color.coolGray10': ColorToken['$value']; - 'color.coolGray20': ColorToken['$value']; - 'color.coolGray30': ColorToken['$value']; - 'color.coolGray40': ColorToken['$value']; - 'color.coolGray50': ColorToken['$value']; - 'color.coolGray60': ColorToken['$value']; - 'color.coolGray70': ColorToken['$value']; - 'color.coolGray80': ColorToken['$value']; - 'color.coolGray90': ColorToken['$value']; - 'color.coolGray100': ColorToken['$value']; 'color.coolGray10Hover': ColorToken['$value']; + 'color.coolGray20': ColorToken['$value']; 'color.coolGray20Hover': ColorToken['$value']; + 'color.coolGray30': ColorToken['$value']; 'color.coolGray30Hover': ColorToken['$value']; + 'color.coolGray40': ColorToken['$value']; 'color.coolGray40Hover': ColorToken['$value']; + 'color.coolGray50': ColorToken['$value']; 'color.coolGray50Hover': ColorToken['$value']; + 'color.coolGray60': ColorToken['$value']; 'color.coolGray60Hover': ColorToken['$value']; + 'color.coolGray70': ColorToken['$value']; 'color.coolGray70Hover': ColorToken['$value']; + 'color.coolGray80': ColorToken['$value']; 'color.coolGray80Hover': ColorToken['$value']; + 'color.coolGray90': ColorToken['$value']; 'color.coolGray90Hover': ColorToken['$value']; + 'color.coolGray100': ColorToken['$value']; 'color.coolGray100Hover': ColorToken['$value']; 'color.cyan10': ColorToken['$value']; - 'color.cyan20': ColorToken['$value']; - 'color.cyan30': ColorToken['$value']; - 'color.cyan40': ColorToken['$value']; - 'color.cyan50': ColorToken['$value']; - 'color.cyan60': ColorToken['$value']; - 'color.cyan70': ColorToken['$value']; - 'color.cyan80': ColorToken['$value']; - 'color.cyan90': ColorToken['$value']; - 'color.cyan100': ColorToken['$value']; 'color.cyan10Hover': ColorToken['$value']; + 'color.cyan20': ColorToken['$value']; 'color.cyan20Hover': ColorToken['$value']; + 'color.cyan30': ColorToken['$value']; 'color.cyan30Hover': ColorToken['$value']; + 'color.cyan40': ColorToken['$value']; 'color.cyan40Hover': ColorToken['$value']; + 'color.cyan50': ColorToken['$value']; 'color.cyan50Hover': ColorToken['$value']; + 'color.cyan60': ColorToken['$value']; 'color.cyan60Hover': ColorToken['$value']; + 'color.cyan70': ColorToken['$value']; 'color.cyan70Hover': ColorToken['$value']; + 'color.cyan80': ColorToken['$value']; 'color.cyan80Hover': ColorToken['$value']; + 'color.cyan90': ColorToken['$value']; 'color.cyan90Hover': ColorToken['$value']; + 'color.cyan100': ColorToken['$value']; 'color.cyan100Hover': ColorToken['$value']; 'color.gray10': ColorToken['$value']; - 'color.gray20': ColorToken['$value']; - 'color.gray30': ColorToken['$value']; - 'color.gray40': ColorToken['$value']; - 'color.gray50': ColorToken['$value']; - 'color.gray60': ColorToken['$value']; - 'color.gray70': ColorToken['$value']; - 'color.gray80': ColorToken['$value']; - 'color.gray90': ColorToken['$value']; - 'color.gray100': ColorToken['$value']; 'color.gray10Hover': ColorToken['$value']; + 'color.gray20': ColorToken['$value']; 'color.gray20Hover': ColorToken['$value']; + 'color.gray30': ColorToken['$value']; 'color.gray30Hover': ColorToken['$value']; + 'color.gray40': ColorToken['$value']; 'color.gray40Hover': ColorToken['$value']; + 'color.gray50': ColorToken['$value']; 'color.gray50Hover': ColorToken['$value']; + 'color.gray60': ColorToken['$value']; 'color.gray60Hover': ColorToken['$value']; + 'color.gray70': ColorToken['$value']; 'color.gray70Hover': ColorToken['$value']; + 'color.gray80': ColorToken['$value']; 'color.gray80Hover': ColorToken['$value']; + 'color.gray90': ColorToken['$value']; 'color.gray90Hover': ColorToken['$value']; + 'color.gray100': ColorToken['$value']; 'color.gray100Hover': ColorToken['$value']; 'color.green10': ColorToken['$value']; - 'color.green20': ColorToken['$value']; - 'color.green30': ColorToken['$value']; - 'color.green40': ColorToken['$value']; - 'color.green50': ColorToken['$value']; - 'color.green60': ColorToken['$value']; - 'color.green70': ColorToken['$value']; - 'color.green80': ColorToken['$value']; - 'color.green90': ColorToken['$value']; - 'color.green100': ColorToken['$value']; 'color.green10Hover': ColorToken['$value']; + 'color.green20': ColorToken['$value']; 'color.green20Hover': ColorToken['$value']; + 'color.green30': ColorToken['$value']; 'color.green30Hover': ColorToken['$value']; + 'color.green40': ColorToken['$value']; 'color.green40Hover': ColorToken['$value']; + 'color.green50': ColorToken['$value']; 'color.green50Hover': ColorToken['$value']; + 'color.green60': ColorToken['$value']; 'color.green60Hover': ColorToken['$value']; + 'color.green70': ColorToken['$value']; 'color.green70Hover': ColorToken['$value']; + 'color.green80': ColorToken['$value']; 'color.green80Hover': ColorToken['$value']; + 'color.green90': ColorToken['$value']; 'color.green90Hover': ColorToken['$value']; + 'color.green100': ColorToken['$value']; 'color.green100Hover': ColorToken['$value']; 'color.magenta10': ColorToken['$value']; - 'color.magenta20': ColorToken['$value']; - 'color.magenta30': ColorToken['$value']; - 'color.magenta40': ColorToken['$value']; - 'color.magenta50': ColorToken['$value']; - 'color.magenta60': ColorToken['$value']; - 'color.magenta70': ColorToken['$value']; - 'color.magenta80': ColorToken['$value']; - 'color.magenta90': ColorToken['$value']; - 'color.magenta100': ColorToken['$value']; 'color.magenta10Hover': ColorToken['$value']; + 'color.magenta20': ColorToken['$value']; 'color.magenta20Hover': ColorToken['$value']; + 'color.magenta30': ColorToken['$value']; 'color.magenta30Hover': ColorToken['$value']; + 'color.magenta40': ColorToken['$value']; 'color.magenta40Hover': ColorToken['$value']; + 'color.magenta50': ColorToken['$value']; 'color.magenta50Hover': ColorToken['$value']; + 'color.magenta60': ColorToken['$value']; 'color.magenta60Hover': ColorToken['$value']; + 'color.magenta70': ColorToken['$value']; 'color.magenta70Hover': ColorToken['$value']; + 'color.magenta80': ColorToken['$value']; 'color.magenta80Hover': ColorToken['$value']; + 'color.magenta90': ColorToken['$value']; 'color.magenta90Hover': ColorToken['$value']; + 'color.magenta100': ColorToken['$value']; 'color.magenta100Hover': ColorToken['$value']; 'color.orange': ColorToken['$value']; 'color.orange10': ColorToken['$value']; - 'color.orange20': ColorToken['$value']; - 'color.orange30': ColorToken['$value']; - 'color.orange40': ColorToken['$value']; - 'color.orange50': ColorToken['$value']; - 'color.orange60': ColorToken['$value']; - 'color.orange70': ColorToken['$value']; - 'color.orange80': ColorToken['$value']; - 'color.orange90': ColorToken['$value']; - 'color.orange100': ColorToken['$value']; 'color.orange10Hover': ColorToken['$value']; + 'color.orange20': ColorToken['$value']; 'color.orange20Hover': ColorToken['$value']; + 'color.orange30': ColorToken['$value']; 'color.orange30Hover': ColorToken['$value']; + 'color.orange40': ColorToken['$value']; 'color.orange40Hover': ColorToken['$value']; + 'color.orange50': ColorToken['$value']; 'color.orange50Hover': ColorToken['$value']; + 'color.orange60': ColorToken['$value']; 'color.orange60Hover': ColorToken['$value']; + 'color.orange70': ColorToken['$value']; 'color.orange70Hover': ColorToken['$value']; + 'color.orange80': ColorToken['$value']; 'color.orange80Hover': ColorToken['$value']; + 'color.orange90': ColorToken['$value']; 'color.orange90Hover': ColorToken['$value']; + 'color.orange100': ColorToken['$value']; 'color.orange100Hover': ColorToken['$value']; 'color.purple10': ColorToken['$value']; - 'color.purple20': ColorToken['$value']; - 'color.purple30': ColorToken['$value']; - 'color.purple40': ColorToken['$value']; - 'color.purple50': ColorToken['$value']; - 'color.purple60': ColorToken['$value']; - 'color.purple70': ColorToken['$value']; - 'color.purple80': ColorToken['$value']; - 'color.purple90': ColorToken['$value']; - 'color.purple100': ColorToken['$value']; 'color.purple10Hover': ColorToken['$value']; + 'color.purple20': ColorToken['$value']; 'color.purple20Hover': ColorToken['$value']; + 'color.purple30': ColorToken['$value']; 'color.purple30Hover': ColorToken['$value']; + 'color.purple40': ColorToken['$value']; 'color.purple40Hover': ColorToken['$value']; + 'color.purple50': ColorToken['$value']; 'color.purple50Hover': ColorToken['$value']; + 'color.purple60': ColorToken['$value']; 'color.purple60Hover': ColorToken['$value']; + 'color.purple70': ColorToken['$value']; 'color.purple70Hover': ColorToken['$value']; + 'color.purple80': ColorToken['$value']; 'color.purple80Hover': ColorToken['$value']; + 'color.purple90': ColorToken['$value']; 'color.purple90Hover': ColorToken['$value']; + 'color.purple100': ColorToken['$value']; 'color.purple100Hover': ColorToken['$value']; 'color.red10': ColorToken['$value']; - 'color.red20': ColorToken['$value']; - 'color.red30': ColorToken['$value']; - 'color.red40': ColorToken['$value']; - 'color.red50': ColorToken['$value']; - 'color.red60': ColorToken['$value']; - 'color.red70': ColorToken['$value']; - 'color.red80': ColorToken['$value']; - 'color.red90': ColorToken['$value']; - 'color.red100': ColorToken['$value']; 'color.red10Hover': ColorToken['$value']; + 'color.red20': ColorToken['$value']; 'color.red20Hover': ColorToken['$value']; + 'color.red30': ColorToken['$value']; 'color.red30Hover': ColorToken['$value']; + 'color.red40': ColorToken['$value']; 'color.red40Hover': ColorToken['$value']; + 'color.red50': ColorToken['$value']; 'color.red50Hover': ColorToken['$value']; + 'color.red60': ColorToken['$value']; 'color.red60Hover': ColorToken['$value']; + 'color.red70': ColorToken['$value']; 'color.red70Hover': ColorToken['$value']; + 'color.red80': ColorToken['$value']; 'color.red80Hover': ColorToken['$value']; + 'color.red90': ColorToken['$value']; 'color.red90Hover': ColorToken['$value']; + 'color.red100': ColorToken['$value']; 'color.red100Hover': ColorToken['$value']; 'color.teal10': ColorToken['$value']; - 'color.teal20': ColorToken['$value']; - 'color.teal30': ColorToken['$value']; - 'color.teal40': ColorToken['$value']; - 'color.teal50': ColorToken['$value']; - 'color.teal60': ColorToken['$value']; - 'color.teal70': ColorToken['$value']; - 'color.teal80': ColorToken['$value']; - 'color.teal90': ColorToken['$value']; - 'color.teal100': ColorToken['$value']; 'color.teal10Hover': ColorToken['$value']; + 'color.teal20': ColorToken['$value']; 'color.teal20Hover': ColorToken['$value']; + 'color.teal30': ColorToken['$value']; 'color.teal30Hover': ColorToken['$value']; + 'color.teal40': ColorToken['$value']; 'color.teal40Hover': ColorToken['$value']; + 'color.teal50': ColorToken['$value']; 'color.teal50Hover': ColorToken['$value']; + 'color.teal60': ColorToken['$value']; 'color.teal60Hover': ColorToken['$value']; + 'color.teal70': ColorToken['$value']; 'color.teal70Hover': ColorToken['$value']; + 'color.teal80': ColorToken['$value']; 'color.teal80Hover': ColorToken['$value']; + 'color.teal90': ColorToken['$value']; 'color.teal90Hover': ColorToken['$value']; + 'color.teal100': ColorToken['$value']; 'color.teal100Hover': ColorToken['$value']; 'color.warmGray10': ColorToken['$value']; - 'color.warmGray20': ColorToken['$value']; - 'color.warmGray30': ColorToken['$value']; - 'color.warmGray40': ColorToken['$value']; - 'color.warmGray50': ColorToken['$value']; - 'color.warmGray60': ColorToken['$value']; - 'color.warmGray70': ColorToken['$value']; - 'color.warmGray80': ColorToken['$value']; - 'color.warmGray90': ColorToken['$value']; - 'color.warmGray100': ColorToken['$value']; 'color.warmGray10Hover': ColorToken['$value']; + 'color.warmGray20': ColorToken['$value']; 'color.warmGray20Hover': ColorToken['$value']; + 'color.warmGray30': ColorToken['$value']; 'color.warmGray30Hover': ColorToken['$value']; + 'color.warmGray40': ColorToken['$value']; 'color.warmGray40Hover': ColorToken['$value']; + 'color.warmGray50': ColorToken['$value']; 'color.warmGray50Hover': ColorToken['$value']; + 'color.warmGray60': ColorToken['$value']; 'color.warmGray60Hover': ColorToken['$value']; + 'color.warmGray70': ColorToken['$value']; 'color.warmGray70Hover': ColorToken['$value']; + 'color.warmGray80': ColorToken['$value']; 'color.warmGray80Hover': ColorToken['$value']; + 'color.warmGray90': ColorToken['$value']; 'color.warmGray90Hover': ColorToken['$value']; + 'color.warmGray100': ColorToken['$value']; 'color.warmGray100Hover': ColorToken['$value']; 'color.white': ColorToken['$value']; 'color.white0': ColorToken['$value']; 'color.whiteHover': ColorToken['$value']; 'color.yellow': ColorToken['$value']; 'color.yellow10': ColorToken['$value']; - 'color.yellow20': ColorToken['$value']; - 'color.yellow30': ColorToken['$value']; - 'color.yellow40': ColorToken['$value']; - 'color.yellow50': ColorToken['$value']; - 'color.yellow60': ColorToken['$value']; - 'color.yellow70': ColorToken['$value']; - 'color.yellow80': ColorToken['$value']; - 'color.yellow90': ColorToken['$value']; - 'color.yellow100': ColorToken['$value']; 'color.yellow10Hover': ColorToken['$value']; + 'color.yellow20': ColorToken['$value']; 'color.yellow20Hover': ColorToken['$value']; + 'color.yellow30': ColorToken['$value']; 'color.yellow30Hover': ColorToken['$value']; + 'color.yellow40': ColorToken['$value']; 'color.yellow40Hover': ColorToken['$value']; + 'color.yellow50': ColorToken['$value']; 'color.yellow50Hover': ColorToken['$value']; + 'color.yellow60': ColorToken['$value']; 'color.yellow60Hover': ColorToken['$value']; + 'color.yellow70': ColorToken['$value']; 'color.yellow70Hover': ColorToken['$value']; + 'color.yellow80': ColorToken['$value']; 'color.yellow80Hover': ColorToken['$value']; + 'color.yellow90': ColorToken['$value']; 'color.yellow90Hover': ColorToken['$value']; + 'color.yellow100': ColorToken['$value']; 'color.yellow100Hover': ColorToken['$value']; + 'easing.easeIn': CubicBezierToken['$value']; + 'easing.easeOut': CubicBezierToken['$value']; + 'easing.entrance': CubicBezierToken['$value']; + 'easing.entrance--expressive': CubicBezierToken['$value']; + 'easing.exit': CubicBezierToken['$value']; + 'easing.exit--expressive': CubicBezierToken['$value']; + 'easing.standard': CubicBezierToken['$value']; + 'easing.standard--expressive': CubicBezierToken['$value']; + 'font.family.mono': FontFamilyToken['$value']; + 'font.family.sans': FontFamilyToken['$value']; + 'font.family.sansCondensed': FontFamilyToken['$value']; + 'font.family.sansHebrew': FontFamilyToken['$value']; + 'font.family.serif': FontFamilyToken['$value']; + 'font.size.body01': DimensionToken['$value']; + 'font.size.body02': DimensionToken['$value']; + 'font.size.bodyCompact01': DimensionToken['$value']; + 'font.size.bodyCompact02': DimensionToken['$value']; + 'font.size.bodyLong01': DimensionToken['$value']; + 'font.size.bodyLong02': DimensionToken['$value']; + 'font.size.bodyShort01': DimensionToken['$value']; + 'font.size.bodyShort02': DimensionToken['$value']; + 'font.size.caption01': DimensionToken['$value']; + 'font.size.caption02': DimensionToken['$value']; + 'font.size.code01': DimensionToken['$value']; + 'font.size.code02': DimensionToken['$value']; + 'font.size.display01': DimensionToken['$value']; + 'font.size.display02': DimensionToken['$value']; + 'font.size.display03': DimensionToken['$value']; + 'font.size.display04': DimensionToken['$value']; + 'font.size.expressiveHeading01': DimensionToken['$value']; + 'font.size.expressiveHeading02': DimensionToken['$value']; + 'font.size.expressiveHeading03': DimensionToken['$value']; + 'font.size.expressiveHeading04': DimensionToken['$value']; + 'font.size.expressiveHeading05': DimensionToken['$value']; + 'font.size.expressiveHeading06': DimensionToken['$value']; + 'font.size.expressiveParagraph01': DimensionToken['$value']; + 'font.size.fluidDisplay01': DimensionToken['$value']; + 'font.size.fluidDisplay02': DimensionToken['$value']; + 'font.size.fluidDisplay03': DimensionToken['$value']; + 'font.size.fluidDisplay04': DimensionToken['$value']; + 'font.size.fluidHeading03': DimensionToken['$value']; + 'font.size.fluidHeading04': DimensionToken['$value']; + 'font.size.fluidHeading05': DimensionToken['$value']; + 'font.size.fluidHeading06': DimensionToken['$value']; + 'font.size.fluidParagraph01': DimensionToken['$value']; + 'font.size.fluidQuotation01': DimensionToken['$value']; + 'font.size.fluidQuotation02': DimensionToken['$value']; + 'font.size.heading01': DimensionToken['$value']; + 'font.size.heading02': DimensionToken['$value']; + 'font.size.heading03': DimensionToken['$value']; + 'font.size.heading04': DimensionToken['$value']; + 'font.size.heading05': DimensionToken['$value']; + 'font.size.heading06': DimensionToken['$value']; + 'font.size.heading07': DimensionToken['$value']; + 'font.size.headingCompact01': DimensionToken['$value']; + 'font.size.headingCompact02': DimensionToken['$value']; + 'font.size.helperText01': DimensionToken['$value']; + 'font.size.helperText02': DimensionToken['$value']; + 'font.size.label01': DimensionToken['$value']; + 'font.size.label02': DimensionToken['$value']; + 'font.size.legal01': DimensionToken['$value']; + 'font.size.legal02': DimensionToken['$value']; + 'font.size.productiveHeading01': DimensionToken['$value']; + 'font.size.productiveHeading02': DimensionToken['$value']; + 'font.size.productiveHeading03': DimensionToken['$value']; + 'font.size.productiveHeading04': DimensionToken['$value']; + 'font.size.productiveHeading05': DimensionToken['$value']; + 'font.size.productiveHeading06': DimensionToken['$value']; + 'font.size.productiveHeading07': DimensionToken['$value']; + 'font.size.quotation01': DimensionToken['$value']; + 'font.size.quotation02': DimensionToken['$value']; 'icon.3D-Cursor': LinkToken['$value']; 'icon.3D-cursor--alt': LinkToken['$value']; 'icon.3D-curve--auto-colon': LinkToken['$value']; @@ -1017,9 +1088,9 @@ export declare const tokens: { 'icon.forecast--lightning-30': LinkToken['$value']; 'icon.fork': LinkToken['$value']; 'icon.forum': LinkToken['$value']; + 'icon.forward--5': LinkToken['$value']; 'icon.forward--10': LinkToken['$value']; 'icon.forward--30': LinkToken['$value']; - 'icon.forward--5': LinkToken['$value']; 'icon.fragile': LinkToken['$value']; 'icon.friendship': LinkToken['$value']; 'icon.fruit-bowl': LinkToken['$value']; @@ -1636,9 +1707,9 @@ export declare const tokens: { 'icon.result--old': LinkToken['$value']; 'icon.retry--failed': LinkToken['$value']; 'icon.review': LinkToken['$value']; + 'icon.rewind--5': LinkToken['$value']; 'icon.rewind--10': LinkToken['$value']; 'icon.rewind--30': LinkToken['$value']; - 'icon.rewind--5': LinkToken['$value']; 'icon.road': LinkToken['$value']; 'icon.road--weather': LinkToken['$value']; 'icon.roadmap': LinkToken['$value']; @@ -2182,94 +2253,23 @@ export declare const tokens: { 'icon.zoom--out-area': LinkToken['$value']; 'icon.zoom--reset': LinkToken['$value']; 'icon.zoom-pan': LinkToken['$value']; - 'font.family.mono': FontFamilyToken['$value']; - 'font.family.sans': FontFamilyToken['$value']; - 'font.family.sansCondensed': FontFamilyToken['$value']; - 'font.family.sansHebrew': FontFamilyToken['$value']; - 'font.family.serif': FontFamilyToken['$value']; - 'font.size.body01': DimensionToken['$value']; - 'font.size.body02': DimensionToken['$value']; - 'font.size.bodyCompact01': DimensionToken['$value']; - 'font.size.bodyCompact02': DimensionToken['$value']; - 'font.size.bodyLong01': DimensionToken['$value']; - 'font.size.bodyLong02': DimensionToken['$value']; - 'font.size.bodyShort01': DimensionToken['$value']; - 'font.size.bodyShort02': DimensionToken['$value']; - 'font.size.caption01': DimensionToken['$value']; - 'font.size.caption02': DimensionToken['$value']; - 'font.size.code01': DimensionToken['$value']; - 'font.size.code02': DimensionToken['$value']; - 'font.size.display01': DimensionToken['$value']; - 'font.size.display02': DimensionToken['$value']; - 'font.size.display03': DimensionToken['$value']; - 'font.size.display04': DimensionToken['$value']; - 'font.size.expressiveHeading01': DimensionToken['$value']; - 'font.size.expressiveHeading02': DimensionToken['$value']; - 'font.size.expressiveHeading03': DimensionToken['$value']; - 'font.size.expressiveHeading04': DimensionToken['$value']; - 'font.size.expressiveHeading05': DimensionToken['$value']; - 'font.size.expressiveHeading06': DimensionToken['$value']; - 'font.size.expressiveParagraph01': DimensionToken['$value']; - 'font.size.fluidDisplay01': DimensionToken['$value']; - 'font.size.fluidDisplay02': DimensionToken['$value']; - 'font.size.fluidDisplay03': DimensionToken['$value']; - 'font.size.fluidDisplay04': DimensionToken['$value']; - 'font.size.fluidHeading03': DimensionToken['$value']; - 'font.size.fluidHeading04': DimensionToken['$value']; - 'font.size.fluidHeading05': DimensionToken['$value']; - 'font.size.fluidHeading06': DimensionToken['$value']; - 'font.size.fluidParagraph01': DimensionToken['$value']; - 'font.size.fluidQuotation01': DimensionToken['$value']; - 'font.size.fluidQuotation02': DimensionToken['$value']; - 'font.size.heading01': DimensionToken['$value']; - 'font.size.heading02': DimensionToken['$value']; - 'font.size.heading03': DimensionToken['$value']; - 'font.size.heading04': DimensionToken['$value']; - 'font.size.heading05': DimensionToken['$value']; - 'font.size.heading06': DimensionToken['$value']; - 'font.size.heading07': DimensionToken['$value']; - 'font.size.headingCompact01': DimensionToken['$value']; - 'font.size.headingCompact02': DimensionToken['$value']; - 'font.size.helperText01': DimensionToken['$value']; - 'font.size.helperText02': DimensionToken['$value']; - 'font.size.label01': DimensionToken['$value']; - 'font.size.label02': DimensionToken['$value']; - 'font.size.legal01': DimensionToken['$value']; - 'font.size.legal02': DimensionToken['$value']; - 'font.size.productiveHeading01': DimensionToken['$value']; - 'font.size.productiveHeading02': DimensionToken['$value']; - 'font.size.productiveHeading03': DimensionToken['$value']; - 'font.size.productiveHeading04': DimensionToken['$value']; - 'font.size.productiveHeading05': DimensionToken['$value']; - 'font.size.productiveHeading06': DimensionToken['$value']; - 'font.size.productiveHeading07': DimensionToken['$value']; - 'font.size.quotation01': DimensionToken['$value']; - 'font.size.quotation02': DimensionToken['$value']; - 'spacing.4xs': DimensionToken['$value']; - 'spacing.3xs': DimensionToken['$value']; - 'spacing.2xs': DimensionToken['$value']; - 'spacing.xs': DimensionToken['$value']; - 'spacing.sm': DimensionToken['$value']; - 'spacing.md': DimensionToken['$value']; - 'spacing.lg': DimensionToken['$value']; - 'spacing.xl': DimensionToken['$value']; 'spacing.2xl': DimensionToken['$value']; + 'spacing.2xs': DimensionToken['$value']; 'spacing.3xl': DimensionToken['$value']; + 'spacing.3xs': DimensionToken['$value']; + 'spacing.4xs': DimensionToken['$value']; + 'spacing.layout.2xl': DimensionToken['$value']; 'spacing.layout.2xs': DimensionToken['$value']; - 'spacing.layout.xs': DimensionToken['$value']; - 'spacing.layout.sm': DimensionToken['$value']; - 'spacing.layout.md': DimensionToken['$value']; 'spacing.layout.lg': DimensionToken['$value']; + 'spacing.layout.md': DimensionToken['$value']; + 'spacing.layout.sm': DimensionToken['$value']; 'spacing.layout.xl': DimensionToken['$value']; - 'spacing.layout.2xl': DimensionToken['$value']; - 'easing.easeIn': CubicBezierToken['$value']; - 'easing.easeOut': CubicBezierToken['$value']; - 'easing.standard': CubicBezierToken['$value']; - 'easing.standard--expressive': CubicBezierToken['$value']; - 'easing.entrance': CubicBezierToken['$value']; - 'easing.entrance--expressive': CubicBezierToken['$value']; - 'easing.exit': CubicBezierToken['$value']; - 'easing.exit--expressive': CubicBezierToken['$value']; + 'spacing.layout.xs': DimensionToken['$value']; + 'spacing.lg': DimensionToken['$value']; + 'spacing.md': DimensionToken['$value']; + 'spacing.sm': DimensionToken['$value']; + 'spacing.xl': DimensionToken['$value']; + 'spacing.xs': DimensionToken['$value']; 'transition.base': DurationToken['$value']; 'transition.expansion': DurationToken['$value']; 'transition.fast01': DurationToken['$value']; @@ -2285,250 +2285,321 @@ export declare const meta: { 'color.black100': ParsedColorToken; 'color.blackHover': ParsedColorToken; 'color.blue10': ParsedColorToken; - 'color.blue20': ParsedColorToken; - 'color.blue30': ParsedColorToken; - 'color.blue40': ParsedColorToken; - 'color.blue50': ParsedColorToken; - 'color.blue60': ParsedColorToken; - 'color.blue70': ParsedColorToken; - 'color.blue80': ParsedColorToken; - 'color.blue90': ParsedColorToken; - 'color.blue100': ParsedColorToken; 'color.blue10Hover': ParsedColorToken; + 'color.blue20': ParsedColorToken; 'color.blue20Hover': ParsedColorToken; + 'color.blue30': ParsedColorToken; 'color.blue30Hover': ParsedColorToken; + 'color.blue40': ParsedColorToken; 'color.blue40Hover': ParsedColorToken; + 'color.blue50': ParsedColorToken; 'color.blue50Hover': ParsedColorToken; + 'color.blue60': ParsedColorToken; 'color.blue60Hover': ParsedColorToken; + 'color.blue70': ParsedColorToken; 'color.blue70Hover': ParsedColorToken; + 'color.blue80': ParsedColorToken; 'color.blue80Hover': ParsedColorToken; + 'color.blue90': ParsedColorToken; 'color.blue90Hover': ParsedColorToken; + 'color.blue100': ParsedColorToken; 'color.blue100Hover': ParsedColorToken; 'color.coolGray10': ParsedColorToken; - 'color.coolGray20': ParsedColorToken; - 'color.coolGray30': ParsedColorToken; - 'color.coolGray40': ParsedColorToken; - 'color.coolGray50': ParsedColorToken; - 'color.coolGray60': ParsedColorToken; - 'color.coolGray70': ParsedColorToken; - 'color.coolGray80': ParsedColorToken; - 'color.coolGray90': ParsedColorToken; - 'color.coolGray100': ParsedColorToken; 'color.coolGray10Hover': ParsedColorToken; + 'color.coolGray20': ParsedColorToken; 'color.coolGray20Hover': ParsedColorToken; + 'color.coolGray30': ParsedColorToken; 'color.coolGray30Hover': ParsedColorToken; + 'color.coolGray40': ParsedColorToken; 'color.coolGray40Hover': ParsedColorToken; + 'color.coolGray50': ParsedColorToken; 'color.coolGray50Hover': ParsedColorToken; + 'color.coolGray60': ParsedColorToken; 'color.coolGray60Hover': ParsedColorToken; + 'color.coolGray70': ParsedColorToken; 'color.coolGray70Hover': ParsedColorToken; + 'color.coolGray80': ParsedColorToken; 'color.coolGray80Hover': ParsedColorToken; + 'color.coolGray90': ParsedColorToken; 'color.coolGray90Hover': ParsedColorToken; + 'color.coolGray100': ParsedColorToken; 'color.coolGray100Hover': ParsedColorToken; 'color.cyan10': ParsedColorToken; - 'color.cyan20': ParsedColorToken; - 'color.cyan30': ParsedColorToken; - 'color.cyan40': ParsedColorToken; - 'color.cyan50': ParsedColorToken; - 'color.cyan60': ParsedColorToken; - 'color.cyan70': ParsedColorToken; - 'color.cyan80': ParsedColorToken; - 'color.cyan90': ParsedColorToken; - 'color.cyan100': ParsedColorToken; 'color.cyan10Hover': ParsedColorToken; + 'color.cyan20': ParsedColorToken; 'color.cyan20Hover': ParsedColorToken; + 'color.cyan30': ParsedColorToken; 'color.cyan30Hover': ParsedColorToken; + 'color.cyan40': ParsedColorToken; 'color.cyan40Hover': ParsedColorToken; + 'color.cyan50': ParsedColorToken; 'color.cyan50Hover': ParsedColorToken; + 'color.cyan60': ParsedColorToken; 'color.cyan60Hover': ParsedColorToken; + 'color.cyan70': ParsedColorToken; 'color.cyan70Hover': ParsedColorToken; + 'color.cyan80': ParsedColorToken; 'color.cyan80Hover': ParsedColorToken; + 'color.cyan90': ParsedColorToken; 'color.cyan90Hover': ParsedColorToken; + 'color.cyan100': ParsedColorToken; 'color.cyan100Hover': ParsedColorToken; 'color.gray10': ParsedColorToken; - 'color.gray20': ParsedColorToken; - 'color.gray30': ParsedColorToken; - 'color.gray40': ParsedColorToken; - 'color.gray50': ParsedColorToken; - 'color.gray60': ParsedColorToken; - 'color.gray70': ParsedColorToken; - 'color.gray80': ParsedColorToken; - 'color.gray90': ParsedColorToken; - 'color.gray100': ParsedColorToken; 'color.gray10Hover': ParsedColorToken; + 'color.gray20': ParsedColorToken; 'color.gray20Hover': ParsedColorToken; + 'color.gray30': ParsedColorToken; 'color.gray30Hover': ParsedColorToken; + 'color.gray40': ParsedColorToken; 'color.gray40Hover': ParsedColorToken; + 'color.gray50': ParsedColorToken; 'color.gray50Hover': ParsedColorToken; + 'color.gray60': ParsedColorToken; 'color.gray60Hover': ParsedColorToken; + 'color.gray70': ParsedColorToken; 'color.gray70Hover': ParsedColorToken; + 'color.gray80': ParsedColorToken; 'color.gray80Hover': ParsedColorToken; + 'color.gray90': ParsedColorToken; 'color.gray90Hover': ParsedColorToken; + 'color.gray100': ParsedColorToken; 'color.gray100Hover': ParsedColorToken; 'color.green10': ParsedColorToken; - 'color.green20': ParsedColorToken; - 'color.green30': ParsedColorToken; - 'color.green40': ParsedColorToken; - 'color.green50': ParsedColorToken; - 'color.green60': ParsedColorToken; - 'color.green70': ParsedColorToken; - 'color.green80': ParsedColorToken; - 'color.green90': ParsedColorToken; - 'color.green100': ParsedColorToken; 'color.green10Hover': ParsedColorToken; + 'color.green20': ParsedColorToken; 'color.green20Hover': ParsedColorToken; + 'color.green30': ParsedColorToken; 'color.green30Hover': ParsedColorToken; + 'color.green40': ParsedColorToken; 'color.green40Hover': ParsedColorToken; + 'color.green50': ParsedColorToken; 'color.green50Hover': ParsedColorToken; + 'color.green60': ParsedColorToken; 'color.green60Hover': ParsedColorToken; + 'color.green70': ParsedColorToken; 'color.green70Hover': ParsedColorToken; + 'color.green80': ParsedColorToken; 'color.green80Hover': ParsedColorToken; + 'color.green90': ParsedColorToken; 'color.green90Hover': ParsedColorToken; + 'color.green100': ParsedColorToken; 'color.green100Hover': ParsedColorToken; 'color.magenta10': ParsedColorToken; - 'color.magenta20': ParsedColorToken; - 'color.magenta30': ParsedColorToken; - 'color.magenta40': ParsedColorToken; - 'color.magenta50': ParsedColorToken; - 'color.magenta60': ParsedColorToken; - 'color.magenta70': ParsedColorToken; - 'color.magenta80': ParsedColorToken; - 'color.magenta90': ParsedColorToken; - 'color.magenta100': ParsedColorToken; 'color.magenta10Hover': ParsedColorToken; + 'color.magenta20': ParsedColorToken; 'color.magenta20Hover': ParsedColorToken; + 'color.magenta30': ParsedColorToken; 'color.magenta30Hover': ParsedColorToken; + 'color.magenta40': ParsedColorToken; 'color.magenta40Hover': ParsedColorToken; + 'color.magenta50': ParsedColorToken; 'color.magenta50Hover': ParsedColorToken; + 'color.magenta60': ParsedColorToken; 'color.magenta60Hover': ParsedColorToken; + 'color.magenta70': ParsedColorToken; 'color.magenta70Hover': ParsedColorToken; + 'color.magenta80': ParsedColorToken; 'color.magenta80Hover': ParsedColorToken; + 'color.magenta90': ParsedColorToken; 'color.magenta90Hover': ParsedColorToken; + 'color.magenta100': ParsedColorToken; 'color.magenta100Hover': ParsedColorToken; 'color.orange': ParsedColorToken; 'color.orange10': ParsedColorToken; - 'color.orange20': ParsedColorToken; - 'color.orange30': ParsedColorToken; - 'color.orange40': ParsedColorToken; - 'color.orange50': ParsedColorToken; - 'color.orange60': ParsedColorToken; - 'color.orange70': ParsedColorToken; - 'color.orange80': ParsedColorToken; - 'color.orange90': ParsedColorToken; - 'color.orange100': ParsedColorToken; 'color.orange10Hover': ParsedColorToken; + 'color.orange20': ParsedColorToken; 'color.orange20Hover': ParsedColorToken; + 'color.orange30': ParsedColorToken; 'color.orange30Hover': ParsedColorToken; + 'color.orange40': ParsedColorToken; 'color.orange40Hover': ParsedColorToken; + 'color.orange50': ParsedColorToken; 'color.orange50Hover': ParsedColorToken; + 'color.orange60': ParsedColorToken; 'color.orange60Hover': ParsedColorToken; + 'color.orange70': ParsedColorToken; 'color.orange70Hover': ParsedColorToken; + 'color.orange80': ParsedColorToken; 'color.orange80Hover': ParsedColorToken; - 'color.orange90Hover': ParsedColorToken; - 'color.orange100Hover': ParsedColorToken; - 'color.purple10': ParsedColorToken; - 'color.purple20': ParsedColorToken; - 'color.purple30': ParsedColorToken; - 'color.purple40': ParsedColorToken; - 'color.purple50': ParsedColorToken; - 'color.purple60': ParsedColorToken; - 'color.purple70': ParsedColorToken; - 'color.purple80': ParsedColorToken; - 'color.purple90': ParsedColorToken; - 'color.purple100': ParsedColorToken; + 'color.orange90': ParsedColorToken; + 'color.orange90Hover': ParsedColorToken; + 'color.orange100': ParsedColorToken; + 'color.orange100Hover': ParsedColorToken; + 'color.purple10': ParsedColorToken; 'color.purple10Hover': ParsedColorToken; + 'color.purple20': ParsedColorToken; 'color.purple20Hover': ParsedColorToken; + 'color.purple30': ParsedColorToken; 'color.purple30Hover': ParsedColorToken; + 'color.purple40': ParsedColorToken; 'color.purple40Hover': ParsedColorToken; + 'color.purple50': ParsedColorToken; 'color.purple50Hover': ParsedColorToken; + 'color.purple60': ParsedColorToken; 'color.purple60Hover': ParsedColorToken; + 'color.purple70': ParsedColorToken; 'color.purple70Hover': ParsedColorToken; + 'color.purple80': ParsedColorToken; 'color.purple80Hover': ParsedColorToken; + 'color.purple90': ParsedColorToken; 'color.purple90Hover': ParsedColorToken; + 'color.purple100': ParsedColorToken; 'color.purple100Hover': ParsedColorToken; 'color.red10': ParsedColorToken; - 'color.red20': ParsedColorToken; - 'color.red30': ParsedColorToken; - 'color.red40': ParsedColorToken; - 'color.red50': ParsedColorToken; - 'color.red60': ParsedColorToken; - 'color.red70': ParsedColorToken; - 'color.red80': ParsedColorToken; - 'color.red90': ParsedColorToken; - 'color.red100': ParsedColorToken; 'color.red10Hover': ParsedColorToken; + 'color.red20': ParsedColorToken; 'color.red20Hover': ParsedColorToken; + 'color.red30': ParsedColorToken; 'color.red30Hover': ParsedColorToken; + 'color.red40': ParsedColorToken; 'color.red40Hover': ParsedColorToken; + 'color.red50': ParsedColorToken; 'color.red50Hover': ParsedColorToken; + 'color.red60': ParsedColorToken; 'color.red60Hover': ParsedColorToken; + 'color.red70': ParsedColorToken; 'color.red70Hover': ParsedColorToken; + 'color.red80': ParsedColorToken; 'color.red80Hover': ParsedColorToken; + 'color.red90': ParsedColorToken; 'color.red90Hover': ParsedColorToken; + 'color.red100': ParsedColorToken; 'color.red100Hover': ParsedColorToken; 'color.teal10': ParsedColorToken; - 'color.teal20': ParsedColorToken; - 'color.teal30': ParsedColorToken; - 'color.teal40': ParsedColorToken; - 'color.teal50': ParsedColorToken; - 'color.teal60': ParsedColorToken; - 'color.teal70': ParsedColorToken; - 'color.teal80': ParsedColorToken; - 'color.teal90': ParsedColorToken; - 'color.teal100': ParsedColorToken; 'color.teal10Hover': ParsedColorToken; + 'color.teal20': ParsedColorToken; 'color.teal20Hover': ParsedColorToken; + 'color.teal30': ParsedColorToken; 'color.teal30Hover': ParsedColorToken; + 'color.teal40': ParsedColorToken; 'color.teal40Hover': ParsedColorToken; + 'color.teal50': ParsedColorToken; 'color.teal50Hover': ParsedColorToken; + 'color.teal60': ParsedColorToken; 'color.teal60Hover': ParsedColorToken; + 'color.teal70': ParsedColorToken; 'color.teal70Hover': ParsedColorToken; + 'color.teal80': ParsedColorToken; 'color.teal80Hover': ParsedColorToken; + 'color.teal90': ParsedColorToken; 'color.teal90Hover': ParsedColorToken; + 'color.teal100': ParsedColorToken; 'color.teal100Hover': ParsedColorToken; 'color.warmGray10': ParsedColorToken; - 'color.warmGray20': ParsedColorToken; - 'color.warmGray30': ParsedColorToken; - 'color.warmGray40': ParsedColorToken; - 'color.warmGray50': ParsedColorToken; - 'color.warmGray60': ParsedColorToken; - 'color.warmGray70': ParsedColorToken; - 'color.warmGray80': ParsedColorToken; - 'color.warmGray90': ParsedColorToken; - 'color.warmGray100': ParsedColorToken; 'color.warmGray10Hover': ParsedColorToken; + 'color.warmGray20': ParsedColorToken; 'color.warmGray20Hover': ParsedColorToken; + 'color.warmGray30': ParsedColorToken; 'color.warmGray30Hover': ParsedColorToken; + 'color.warmGray40': ParsedColorToken; 'color.warmGray40Hover': ParsedColorToken; + 'color.warmGray50': ParsedColorToken; 'color.warmGray50Hover': ParsedColorToken; + 'color.warmGray60': ParsedColorToken; 'color.warmGray60Hover': ParsedColorToken; + 'color.warmGray70': ParsedColorToken; 'color.warmGray70Hover': ParsedColorToken; + 'color.warmGray80': ParsedColorToken; 'color.warmGray80Hover': ParsedColorToken; + 'color.warmGray90': ParsedColorToken; 'color.warmGray90Hover': ParsedColorToken; + 'color.warmGray100': ParsedColorToken; 'color.warmGray100Hover': ParsedColorToken; 'color.white': ParsedColorToken; 'color.white0': ParsedColorToken; 'color.whiteHover': ParsedColorToken; 'color.yellow': ParsedColorToken; 'color.yellow10': ParsedColorToken; - 'color.yellow20': ParsedColorToken; - 'color.yellow30': ParsedColorToken; - 'color.yellow40': ParsedColorToken; - 'color.yellow50': ParsedColorToken; - 'color.yellow60': ParsedColorToken; - 'color.yellow70': ParsedColorToken; - 'color.yellow80': ParsedColorToken; - 'color.yellow90': ParsedColorToken; - 'color.yellow100': ParsedColorToken; 'color.yellow10Hover': ParsedColorToken; + 'color.yellow20': ParsedColorToken; 'color.yellow20Hover': ParsedColorToken; + 'color.yellow30': ParsedColorToken; 'color.yellow30Hover': ParsedColorToken; + 'color.yellow40': ParsedColorToken; 'color.yellow40Hover': ParsedColorToken; + 'color.yellow50': ParsedColorToken; 'color.yellow50Hover': ParsedColorToken; + 'color.yellow60': ParsedColorToken; 'color.yellow60Hover': ParsedColorToken; + 'color.yellow70': ParsedColorToken; 'color.yellow70Hover': ParsedColorToken; + 'color.yellow80': ParsedColorToken; 'color.yellow80Hover': ParsedColorToken; + 'color.yellow90': ParsedColorToken; 'color.yellow90Hover': ParsedColorToken; + 'color.yellow100': ParsedColorToken; 'color.yellow100Hover': ParsedColorToken; + 'easing.easeIn': ParsedCubicBezierToken; + 'easing.easeOut': ParsedCubicBezierToken; + 'easing.entrance': ParsedCubicBezierToken; + 'easing.entrance--expressive': ParsedCubicBezierToken; + 'easing.exit': ParsedCubicBezierToken; + 'easing.exit--expressive': ParsedCubicBezierToken; + 'easing.standard': ParsedCubicBezierToken; + 'easing.standard--expressive': ParsedCubicBezierToken; + 'font.family.mono': ParsedFontFamilyToken; + 'font.family.sans': ParsedFontFamilyToken; + 'font.family.sansCondensed': ParsedFontFamilyToken; + 'font.family.sansHebrew': ParsedFontFamilyToken; + 'font.family.serif': ParsedFontFamilyToken; + 'font.size.body01': ParsedDimensionToken; + 'font.size.body02': ParsedDimensionToken; + 'font.size.bodyCompact01': ParsedDimensionToken; + 'font.size.bodyCompact02': ParsedDimensionToken; + 'font.size.bodyLong01': ParsedDimensionToken; + 'font.size.bodyLong02': ParsedDimensionToken; + 'font.size.bodyShort01': ParsedDimensionToken; + 'font.size.bodyShort02': ParsedDimensionToken; + 'font.size.caption01': ParsedDimensionToken; + 'font.size.caption02': ParsedDimensionToken; + 'font.size.code01': ParsedDimensionToken; + 'font.size.code02': ParsedDimensionToken; + 'font.size.display01': ParsedDimensionToken; + 'font.size.display02': ParsedDimensionToken; + 'font.size.display03': ParsedDimensionToken; + 'font.size.display04': ParsedDimensionToken; + 'font.size.expressiveHeading01': ParsedDimensionToken; + 'font.size.expressiveHeading02': ParsedDimensionToken; + 'font.size.expressiveHeading03': ParsedDimensionToken; + 'font.size.expressiveHeading04': ParsedDimensionToken; + 'font.size.expressiveHeading05': ParsedDimensionToken; + 'font.size.expressiveHeading06': ParsedDimensionToken; + 'font.size.expressiveParagraph01': ParsedDimensionToken; + 'font.size.fluidDisplay01': ParsedDimensionToken; + 'font.size.fluidDisplay02': ParsedDimensionToken; + 'font.size.fluidDisplay03': ParsedDimensionToken; + 'font.size.fluidDisplay04': ParsedDimensionToken; + 'font.size.fluidHeading03': ParsedDimensionToken; + 'font.size.fluidHeading04': ParsedDimensionToken; + 'font.size.fluidHeading05': ParsedDimensionToken; + 'font.size.fluidHeading06': ParsedDimensionToken; + 'font.size.fluidParagraph01': ParsedDimensionToken; + 'font.size.fluidQuotation01': ParsedDimensionToken; + 'font.size.fluidQuotation02': ParsedDimensionToken; + 'font.size.heading01': ParsedDimensionToken; + 'font.size.heading02': ParsedDimensionToken; + 'font.size.heading03': ParsedDimensionToken; + 'font.size.heading04': ParsedDimensionToken; + 'font.size.heading05': ParsedDimensionToken; + 'font.size.heading06': ParsedDimensionToken; + 'font.size.heading07': ParsedDimensionToken; + 'font.size.headingCompact01': ParsedDimensionToken; + 'font.size.headingCompact02': ParsedDimensionToken; + 'font.size.helperText01': ParsedDimensionToken; + 'font.size.helperText02': ParsedDimensionToken; + 'font.size.label01': ParsedDimensionToken; + 'font.size.label02': ParsedDimensionToken; + 'font.size.legal01': ParsedDimensionToken; + 'font.size.legal02': ParsedDimensionToken; + 'font.size.productiveHeading01': ParsedDimensionToken; + 'font.size.productiveHeading02': ParsedDimensionToken; + 'font.size.productiveHeading03': ParsedDimensionToken; + 'font.size.productiveHeading04': ParsedDimensionToken; + 'font.size.productiveHeading05': ParsedDimensionToken; + 'font.size.productiveHeading06': ParsedDimensionToken; + 'font.size.productiveHeading07': ParsedDimensionToken; + 'font.size.quotation01': ParsedDimensionToken; + 'font.size.quotation02': ParsedDimensionToken; 'icon.3D-Cursor': ParsedLinkToken; 'icon.3D-cursor--alt': ParsedLinkToken; 'icon.3D-curve--auto-colon': ParsedLinkToken; @@ -3278,9 +3349,9 @@ export declare const meta: { 'icon.forecast--lightning-30': ParsedLinkToken; 'icon.fork': ParsedLinkToken; 'icon.forum': ParsedLinkToken; + 'icon.forward--5': ParsedLinkToken; 'icon.forward--10': ParsedLinkToken; 'icon.forward--30': ParsedLinkToken; - 'icon.forward--5': ParsedLinkToken; 'icon.fragile': ParsedLinkToken; 'icon.friendship': ParsedLinkToken; 'icon.fruit-bowl': ParsedLinkToken; @@ -3897,9 +3968,9 @@ export declare const meta: { 'icon.result--old': ParsedLinkToken; 'icon.retry--failed': ParsedLinkToken; 'icon.review': ParsedLinkToken; + 'icon.rewind--5': ParsedLinkToken; 'icon.rewind--10': ParsedLinkToken; 'icon.rewind--30': ParsedLinkToken; - 'icon.rewind--5': ParsedLinkToken; 'icon.road': ParsedLinkToken; 'icon.road--weather': ParsedLinkToken; 'icon.roadmap': ParsedLinkToken; @@ -4443,94 +4514,23 @@ export declare const meta: { 'icon.zoom--out-area': ParsedLinkToken; 'icon.zoom--reset': ParsedLinkToken; 'icon.zoom-pan': ParsedLinkToken; - 'font.family.mono': ParsedFontFamilyToken; - 'font.family.sans': ParsedFontFamilyToken; - 'font.family.sansCondensed': ParsedFontFamilyToken; - 'font.family.sansHebrew': ParsedFontFamilyToken; - 'font.family.serif': ParsedFontFamilyToken; - 'font.size.body01': ParsedDimensionToken; - 'font.size.body02': ParsedDimensionToken; - 'font.size.bodyCompact01': ParsedDimensionToken; - 'font.size.bodyCompact02': ParsedDimensionToken; - 'font.size.bodyLong01': ParsedDimensionToken; - 'font.size.bodyLong02': ParsedDimensionToken; - 'font.size.bodyShort01': ParsedDimensionToken; - 'font.size.bodyShort02': ParsedDimensionToken; - 'font.size.caption01': ParsedDimensionToken; - 'font.size.caption02': ParsedDimensionToken; - 'font.size.code01': ParsedDimensionToken; - 'font.size.code02': ParsedDimensionToken; - 'font.size.display01': ParsedDimensionToken; - 'font.size.display02': ParsedDimensionToken; - 'font.size.display03': ParsedDimensionToken; - 'font.size.display04': ParsedDimensionToken; - 'font.size.expressiveHeading01': ParsedDimensionToken; - 'font.size.expressiveHeading02': ParsedDimensionToken; - 'font.size.expressiveHeading03': ParsedDimensionToken; - 'font.size.expressiveHeading04': ParsedDimensionToken; - 'font.size.expressiveHeading05': ParsedDimensionToken; - 'font.size.expressiveHeading06': ParsedDimensionToken; - 'font.size.expressiveParagraph01': ParsedDimensionToken; - 'font.size.fluidDisplay01': ParsedDimensionToken; - 'font.size.fluidDisplay02': ParsedDimensionToken; - 'font.size.fluidDisplay03': ParsedDimensionToken; - 'font.size.fluidDisplay04': ParsedDimensionToken; - 'font.size.fluidHeading03': ParsedDimensionToken; - 'font.size.fluidHeading04': ParsedDimensionToken; - 'font.size.fluidHeading05': ParsedDimensionToken; - 'font.size.fluidHeading06': ParsedDimensionToken; - 'font.size.fluidParagraph01': ParsedDimensionToken; - 'font.size.fluidQuotation01': ParsedDimensionToken; - 'font.size.fluidQuotation02': ParsedDimensionToken; - 'font.size.heading01': ParsedDimensionToken; - 'font.size.heading02': ParsedDimensionToken; - 'font.size.heading03': ParsedDimensionToken; - 'font.size.heading04': ParsedDimensionToken; - 'font.size.heading05': ParsedDimensionToken; - 'font.size.heading06': ParsedDimensionToken; - 'font.size.heading07': ParsedDimensionToken; - 'font.size.headingCompact01': ParsedDimensionToken; - 'font.size.headingCompact02': ParsedDimensionToken; - 'font.size.helperText01': ParsedDimensionToken; - 'font.size.helperText02': ParsedDimensionToken; - 'font.size.label01': ParsedDimensionToken; - 'font.size.label02': ParsedDimensionToken; - 'font.size.legal01': ParsedDimensionToken; - 'font.size.legal02': ParsedDimensionToken; - 'font.size.productiveHeading01': ParsedDimensionToken; - 'font.size.productiveHeading02': ParsedDimensionToken; - 'font.size.productiveHeading03': ParsedDimensionToken; - 'font.size.productiveHeading04': ParsedDimensionToken; - 'font.size.productiveHeading05': ParsedDimensionToken; - 'font.size.productiveHeading06': ParsedDimensionToken; - 'font.size.productiveHeading07': ParsedDimensionToken; - 'font.size.quotation01': ParsedDimensionToken; - 'font.size.quotation02': ParsedDimensionToken; - 'spacing.4xs': ParsedDimensionToken; - 'spacing.3xs': ParsedDimensionToken; - 'spacing.2xs': ParsedDimensionToken; - 'spacing.xs': ParsedDimensionToken; - 'spacing.sm': ParsedDimensionToken; - 'spacing.md': ParsedDimensionToken; - 'spacing.lg': ParsedDimensionToken; - 'spacing.xl': ParsedDimensionToken; 'spacing.2xl': ParsedDimensionToken; + 'spacing.2xs': ParsedDimensionToken; 'spacing.3xl': ParsedDimensionToken; + 'spacing.3xs': ParsedDimensionToken; + 'spacing.4xs': ParsedDimensionToken; + 'spacing.layout.2xl': ParsedDimensionToken; 'spacing.layout.2xs': ParsedDimensionToken; - 'spacing.layout.xs': ParsedDimensionToken; - 'spacing.layout.sm': ParsedDimensionToken; - 'spacing.layout.md': ParsedDimensionToken; 'spacing.layout.lg': ParsedDimensionToken; + 'spacing.layout.md': ParsedDimensionToken; + 'spacing.layout.sm': ParsedDimensionToken; 'spacing.layout.xl': ParsedDimensionToken; - 'spacing.layout.2xl': ParsedDimensionToken; - 'easing.easeIn': ParsedCubicBezierToken; - 'easing.easeOut': ParsedCubicBezierToken; - 'easing.standard': ParsedCubicBezierToken; - 'easing.standard--expressive': ParsedCubicBezierToken; - 'easing.entrance': ParsedCubicBezierToken; - 'easing.entrance--expressive': ParsedCubicBezierToken; - 'easing.exit': ParsedCubicBezierToken; - 'easing.exit--expressive': ParsedCubicBezierToken; + 'spacing.layout.xs': ParsedDimensionToken; + 'spacing.lg': ParsedDimensionToken; + 'spacing.md': ParsedDimensionToken; + 'spacing.sm': ParsedDimensionToken; + 'spacing.xl': ParsedDimensionToken; + 'spacing.xs': ParsedDimensionToken; 'transition.base': ParsedDurationToken; 'transition.expansion': ParsedDurationToken; 'transition.fast01': ParsedDurationToken; diff --git a/examples/ibm/tokens/index.js b/examples/ibm/tokens/index.js index 4f991949..ae87102b 100644 --- a/examples/ibm/tokens/index.js +++ b/examples/ibm/tokens/index.js @@ -9,250 +9,321 @@ export const tokens = { 'color.black100': '#000000', 'color.blackHover': '#212121', 'color.blue10': '#edf5ff', - 'color.blue20': '#d0e2ff', - 'color.blue30': '#a6c8ff', - 'color.blue40': '#78a9ff', - 'color.blue50': '#4589ff', - 'color.blue60': '#0f62fe', - 'color.blue70': '#0043ce', - 'color.blue80': '#002d9c', - 'color.blue90': '#001d6c', - 'color.blue100': '#001141', 'color.blue10Hover': '#dbebff', + 'color.blue20': '#d0e2ff', 'color.blue20Hover': '#b8d3ff', + 'color.blue30': '#a6c8ff', 'color.blue30Hover': '#8ab6ff', + 'color.blue40': '#78a9ff', 'color.blue40Hover': '#5c97ff', + 'color.blue50': '#4589ff', 'color.blue50Hover': '#1f70ff', + 'color.blue60': '#0f62fe', 'color.blue60Hover': '#0050e6', + 'color.blue70': '#0043ce', 'color.blue70Hover': '#0053ff', + 'color.blue80': '#002d9c', 'color.blue80Hover': '#0039c7', + 'color.blue90': '#001d6c', 'color.blue90Hover': '#00258a', + 'color.blue100': '#001141', 'color.blue100Hover': '#001f75', 'color.coolGray10': '#f2f4f8', - 'color.coolGray20': '#dde1e6', - 'color.coolGray30': '#c1c7cd', - 'color.coolGray40': '#a2a9b0', - 'color.coolGray50': '#878d96', - 'color.coolGray60': '#697077', - 'color.coolGray70': '#4d5358', - 'color.coolGray80': '#343a3f', - 'color.coolGray90': '#21272a', - 'color.coolGray100': '#121619', 'color.coolGray10Hover': '#e4e9f1', + 'color.coolGray20': '#dde1e6', 'color.coolGray20Hover': '#cdd3da', + 'color.coolGray30': '#c1c7cd', 'color.coolGray30Hover': '#adb5bd', + 'color.coolGray40': '#a2a9b0', 'color.coolGray40Hover': '#9199a1', + 'color.coolGray50': '#878d96', 'color.coolGray50Hover': '#757b85', + 'color.coolGray60': '#697077', 'color.coolGray60Hover': '#585e64', + 'color.coolGray70': '#4d5358', 'color.coolGray70Hover': '#5d646a', + 'color.coolGray80': '#343a3f', 'color.coolGray80Hover': '#434a51', + 'color.coolGray90': '#21272a', 'color.coolGray90Hover': '#2b3236', + 'color.coolGray100': '#121619', 'color.coolGray100Hover': '#222a2f', 'color.cyan10': '#e5f6ff', - 'color.cyan20': '#bae6ff', - 'color.cyan30': '#82cfff', - 'color.cyan40': '#33b1ff', - 'color.cyan50': '#1192e8', - 'color.cyan60': '#0072c3', - 'color.cyan70': '#00539a', - 'color.cyan80': '#003a6d', - 'color.cyan90': '#012749', - 'color.cyan100': '#061727', 'color.cyan10Hover': '#cceeff', + 'color.cyan20': '#bae6ff', 'color.cyan20Hover': '#99daff', + 'color.cyan30': '#82cfff', 'color.cyan30Hover': '#57beff', + 'color.cyan40': '#33b1ff', 'color.cyan40Hover': '#059fff', + 'color.cyan50': '#1192e8', 'color.cyan50Hover': '#0f7ec8', + 'color.cyan60': '#0072c3', 'color.cyan60Hover': '#005fa3', + 'color.cyan70': '#00539a', 'color.cyan70Hover': '#0066bd', + 'color.cyan80': '#003a6d', 'color.cyan80Hover': '#00498a', + 'color.cyan90': '#012749', 'color.cyan90Hover': '#013360', + 'color.cyan100': '#061727', 'color.cyan100Hover': '#0b2947', 'color.gray10': '#f4f4f4', - 'color.gray20': '#e0e0e0', - 'color.gray30': '#c6c6c6', - 'color.gray40': '#a8a8a8', - 'color.gray50': '#8d8d8d', - 'color.gray60': '#6f6f6f', - 'color.gray70': '#525252', - 'color.gray80': '#393939', - 'color.gray90': '#262626', - 'color.gray100': '#161616', 'color.gray10Hover': '#e8e8e8', + 'color.gray20': '#e0e0e0', 'color.gray20Hover': '#d1d1d1', + 'color.gray30': '#c6c6c6', 'color.gray30Hover': '#b5b5b5', + 'color.gray40': '#a8a8a8', 'color.gray40Hover': '#999999', + 'color.gray50': '#8d8d8d', 'color.gray50Hover': '#7a7a7a', + 'color.gray60': '#6f6f6f', 'color.gray60Hover': '#5e5e5e', + 'color.gray70': '#525252', 'color.gray70Hover': '#636363', + 'color.gray80': '#393939', 'color.gray80Hover': '#474747', + 'color.gray90': '#262626', 'color.gray90Hover': '#333333', + 'color.gray100': '#161616', 'color.gray100Hover': '#292929', 'color.green10': '#defbe6', - 'color.green20': '#a7f0ba', - 'color.green30': '#6fdc8c', - 'color.green40': '#42be65', - 'color.green50': '#24a148', - 'color.green60': '#198038', - 'color.green70': '#0e6027', - 'color.green80': '#044317', - 'color.green90': '#022d0d', - 'color.green100': '#071908', 'color.green10Hover': '#b6f6c8', + 'color.green20': '#a7f0ba', 'color.green20Hover': '#74e792', + 'color.green30': '#6fdc8c', 'color.green30Hover': '#36ce5e', + 'color.green40': '#42be65', 'color.green40Hover': '#3bab5a', + 'color.green50': '#24a148', 'color.green50Hover': '#208e3f', + 'color.green60': '#198038', 'color.green60Hover': '#166f31', + 'color.green70': '#0e6027', 'color.green70Hover': '#11742f', + 'color.green80': '#044317', 'color.green80Hover': '#05521c', + 'color.green90': '#022d0d', 'color.green90Hover': '#033b11', + 'color.green100': '#071908', 'color.green100Hover': '#0d300f', 'color.magenta10': '#fff0f7', - 'color.magenta20': '#ffd6e8', - 'color.magenta30': '#ffafd2', - 'color.magenta40': '#ff7eb6', - 'color.magenta50': '#ee5396', - 'color.magenta60': '#d02670', - 'color.magenta70': '#9f1853', - 'color.magenta80': '#740937', - 'color.magenta90': '#510224', - 'color.magenta100': '#2a0a18', 'color.magenta10Hover': '#ffe0ef', + 'color.magenta20': '#ffd6e8', 'color.magenta20Hover': '#ffbdda', + 'color.magenta30': '#ffafd2', 'color.magenta30Hover': '#ff94c3', + 'color.magenta40': '#ff7eb6', 'color.magenta40Hover': '#ff57a0', + 'color.magenta50': '#ee5396', 'color.magenta50Hover': '#e3176f', + 'color.magenta60': '#d02670', 'color.magenta60Hover': '#b0215f', + 'color.magenta70': '#9f1853', 'color.magenta70Hover': '#bf1d63', + 'color.magenta80': '#740937', 'color.magenta80Hover': '#8e0b43', + 'color.magenta90': '#510224', 'color.magenta90Hover': '#68032e', + 'color.magenta100': '#2a0a18', 'color.magenta100Hover': '#53142f', 'color.orange': '#ff832b', 'color.orange10': '#fff2e8', - 'color.orange20': '#ffd9be', - 'color.orange30': '#ffb784', - 'color.orange40': '#ff832b', - 'color.orange50': '#eb6200', - 'color.orange60': '#ba4e00', - 'color.orange70': '#8a3800', - 'color.orange80': '#5e2900', - 'color.orange90': '#3e1a00', - 'color.orange100': '#231000', 'color.orange10Hover': '#ffe2cc', + 'color.orange20': '#ffd9be', 'color.orange20Hover': '#ffc69e', + 'color.orange30': '#ffb784', 'color.orange30Hover': '#ff9d57', + 'color.orange40': '#ff832b', 'color.orange40Hover': '#fa6800', + 'color.orange50': '#eb6200', 'color.orange50Hover': '#cc5500', + 'color.orange60': '#ba4e00', 'color.orange60Hover': '#9e4200', + 'color.orange70': '#8a3800', 'color.orange70Hover': '#a84400', + 'color.orange80': '#5e2900', 'color.orange80Hover': '#753300', + 'color.orange90': '#3e1a00', 'color.orange90Hover': '#522200', + 'color.orange100': '#231000', 'color.orange100Hover': '#421e00', 'color.purple10': '#f6f2ff', - 'color.purple20': '#e8daff', - 'color.purple30': '#d4bbff', - 'color.purple40': '#be95ff', - 'color.purple50': '#a56eff', - 'color.purple60': '#8a3ffc', - 'color.purple70': '#6929c4', - 'color.purple80': '#491d8b', - 'color.purple90': '#31135e', - 'color.purple100': '#1c0f30', 'color.purple10Hover': '#ede5ff', + 'color.purple20': '#e8daff', 'color.purple20Hover': '#dcc7ff', + 'color.purple30': '#d4bbff', 'color.purple30Hover': '#c5a3ff', + 'color.purple40': '#be95ff', 'color.purple40Hover': '#ae7aff', + 'color.purple50': '#a56eff', 'color.purple50Hover': '#9352ff', + 'color.purple60': '#8a3ffc', 'color.purple60Hover': '#7822fb', + 'color.purple70': '#6929c4', 'color.purple70Hover': '#7c3dd6', + 'color.purple80': '#491d8b', 'color.purple80Hover': '#5b24ad', + 'color.purple90': '#31135e', 'color.purple90Hover': '#40197b', + 'color.purple100': '#1c0f30', 'color.purple100Hover': '#341c59', 'color.red10': '#fff1f1', - 'color.red20': '#ffd7d9', - 'color.red30': '#ffb3b8', - 'color.red40': '#ff8389', - 'color.red50': '#fa4d56', - 'color.red60': '#da1e28', - 'color.red70': '#a2191f', - 'color.red80': '#750e13', - 'color.red90': '#520408', - 'color.red100': '#2d0709', 'color.red10Hover': '#ffe0e0', + 'color.red20': '#ffd7d9', 'color.red20Hover': '#ffc2c5', + 'color.red30': '#ffb3b8', 'color.red30Hover': '#ff99a0', + 'color.red40': '#ff8389', 'color.red40Hover': '#ff6168', + 'color.red50': '#fa4d56', 'color.red50Hover': '#ee0713', + 'color.red60': '#da1e28', 'color.red60Hover': '#b81922', + 'color.red70': '#a2191f', 'color.red70Hover': '#c21e25', + 'color.red80': '#750e13', 'color.red80Hover': '#921118', + 'color.red90': '#520408', 'color.red90Hover': '#66050a', + 'color.red100': '#2d0709', 'color.red100Hover': '#540d11', 'color.teal10': '#d9fbfb', - 'color.teal20': '#9ef0f0', - 'color.teal30': '#3ddbd9', - 'color.teal40': '#08bdba', - 'color.teal50': '#009d9a', - 'color.teal60': '#007d79', - 'color.teal70': '#005d5d', - 'color.teal80': '#004144', - 'color.teal90': '#022b30', - 'color.teal100': '#081a1c', 'color.teal10Hover': '#acf6f6', + 'color.teal20': '#9ef0f0', 'color.teal20Hover': '#57e5e5', + 'color.teal30': '#3ddbd9', 'color.teal30Hover': '#25cac8', + 'color.teal40': '#08bdba', 'color.teal40Hover': '#07aba9', + 'color.teal50': '#009d9a', 'color.teal50Hover': '#008a87', + 'color.teal60': '#007d79', 'color.teal60Hover': '#006b68', + 'color.teal70': '#005d5d', 'color.teal70Hover': '#007070', + 'color.teal80': '#004144', 'color.teal80Hover': '#005357', + 'color.teal90': '#022b30', 'color.teal90Hover': '#033940', + 'color.teal100': '#081a1c', 'color.teal100Hover': '#0f3034', 'color.warmGray10': '#f7f3f2', - 'color.warmGray20': '#e5e0df', - 'color.warmGray30': '#cac5c4', - 'color.warmGray40': '#ada8a8', - 'color.warmGray50': '#8f8b8b', - 'color.warmGray60': '#726e6e', - 'color.warmGray70': '#565151', - 'color.warmGray80': '#3c3838', - 'color.warmGray90': '#272525', - 'color.warmGray100': '#171414', 'color.warmGray10Hover': '#f0e8e6', + 'color.warmGray20': '#e5e0df', 'color.warmGray20Hover': '#d8d0cf', + 'color.warmGray30': '#cac5c4', 'color.warmGray30Hover': '#b9b3b1', + 'color.warmGray40': '#ada8a8', 'color.warmGray40Hover': '#9c9696', + 'color.warmGray50': '#8f8b8b', 'color.warmGray50Hover': '#7f7b7b', + 'color.warmGray60': '#726e6e', 'color.warmGray60Hover': '#605d5d', + 'color.warmGray70': '#565151', 'color.warmGray70Hover': '#696363', + 'color.warmGray80': '#3c3838', 'color.warmGray80Hover': '#4c4848', + 'color.warmGray90': '#272525', 'color.warmGray90Hover': '#343232', + 'color.warmGray100': '#171414', 'color.warmGray100Hover': '#2c2626', 'color.white': '#ffffff', 'color.white0': '#ffffff', 'color.whiteHover': '#e8e8e8', 'color.yellow': '#f1c21b', 'color.yellow10': '#fcf4d6', - 'color.yellow20': '#fddc69', - 'color.yellow30': '#f1c21b', - 'color.yellow40': '#d2a106', - 'color.yellow50': '#b28600', - 'color.yellow60': '#8e6a00', - 'color.yellow70': '#684e00', - 'color.yellow80': '#483700', - 'color.yellow90': '#302400', - 'color.yellow100': '#1c1500', 'color.yellow10Hover': '#f8e6a0', + 'color.yellow20': '#fddc69', 'color.yellow20Hover': '#fccd27', + 'color.yellow30': '#f1c21b', 'color.yellow30Hover': '#ddb00e', + 'color.yellow40': '#d2a106', 'color.yellow40Hover': '#bc9005', + 'color.yellow50': '#b28600', 'color.yellow50Hover': '#9e7700', + 'color.yellow60': '#8e6a00', 'color.yellow60Hover': '#755800', + 'color.yellow70': '#684e00', 'color.yellow70Hover': '#806000', + 'color.yellow80': '#483700', 'color.yellow80Hover': '#5c4600', + 'color.yellow90': '#302400', 'color.yellow90Hover': '#3d2e00', + 'color.yellow100': '#1c1500', 'color.yellow100Hover': '#332600', + 'easing.easeIn': [0.25, 0, 1, 1], + 'easing.easeOut': [0, 0, 0.25, 1], + 'easing.entrance': [0, 0, 0.38, 0.9], + 'easing.entrance--expressive': [0, 0, 0.3, 1], + 'easing.exit': [0.2, 0, 1, 0.9], + 'easing.exit--expressive': [0.4, 0.14, 1, 1], + 'easing.standard': [0.5, 0, 0.1, 1], + 'easing.standard--expressive': [0.4, 0.14, 0.3, 1], + 'font.family.mono': ['IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier', 'monospace'], + 'font.family.sans': ['IBM Plex Sans', 'Helvetica Neue', 'Arial', 'sans-serif'], + 'font.family.sansCondensed': ['IBM Plex Sans Condensed', 'Helvetica Neue', 'Arial', 'sans-serif'], + 'font.family.sansHebrew': ['IBM Plex Sans Hebrew', 'Helvetica Hebrew', 'Arial Hebrew', 'sans-serif'], + 'font.family.serif': ['IBM Plex Serif', 'Georgia', 'Times', 'serif'], + 'font.size.body01': '0.875rem', + 'font.size.body02': '1rem', + 'font.size.bodyCompact01': '0.875rem', + 'font.size.bodyCompact02': '1rem', + 'font.size.bodyLong01': '0.875rem', + 'font.size.bodyLong02': '1rem', + 'font.size.bodyShort01': '0.875rem', + 'font.size.bodyShort02': '1rem', + 'font.size.caption01': '0.75rem', + 'font.size.caption02': '0.875rem', + 'font.size.code01': '0.75rem', + 'font.size.code02': '0.875rem', + 'font.size.display01': '2.625rem', + 'font.size.display02': '2.625rem', + 'font.size.display03': '2.625rem', + 'font.size.display04': '2.625rem', + 'font.size.expressiveHeading01': '0.875rem', + 'font.size.expressiveHeading02': '1rem', + 'font.size.expressiveHeading03': '1.25rem', + 'font.size.expressiveHeading04': '1.75rem', + 'font.size.expressiveHeading05': '2rem', + 'font.size.expressiveHeading06': '2rem', + 'font.size.expressiveParagraph01': '1.5rem', + 'font.size.fluidDisplay01': '2.625rem', + 'font.size.fluidDisplay02': '2.625rem', + 'font.size.fluidDisplay03': '2.625rem', + 'font.size.fluidDisplay04': '2.625rem', + 'font.size.fluidHeading03': '1.25rem', + 'font.size.fluidHeading04': '1.75rem', + 'font.size.fluidHeading05': '2rem', + 'font.size.fluidHeading06': '2rem', + 'font.size.fluidParagraph01': '1.5rem', + 'font.size.fluidQuotation01': '1.25rem', + 'font.size.fluidQuotation02': '2rem', + 'font.size.heading01': '0.875rem', + 'font.size.heading02': '1rem', + 'font.size.heading03': '1.25rem', + 'font.size.heading04': '1.75rem', + 'font.size.heading05': '2rem', + 'font.size.heading06': '2.625rem', + 'font.size.heading07': '3.375rem', + 'font.size.headingCompact01': '0.875rem', + 'font.size.headingCompact02': '1rem', + 'font.size.helperText01': '0.75rem', + 'font.size.helperText02': '0.875rem', + 'font.size.label01': '0.75rem', + 'font.size.label02': '0.875rem', + 'font.size.legal01': '0.75rem', + 'font.size.legal02': '0.875rem', + 'font.size.productiveHeading01': '0.875rem', + 'font.size.productiveHeading02': '1rem', + 'font.size.productiveHeading03': '1.25rem', + 'font.size.productiveHeading04': '1.75rem', + 'font.size.productiveHeading05': '2rem', + 'font.size.productiveHeading06': '2.625rem', + 'font.size.productiveHeading07': '3.375rem', + 'font.size.quotation01': '1.25rem', + 'font.size.quotation02': '2rem', 'icon.3D-Cursor': '/icon/3D-Cursor.svg', 'icon.3D-cursor--alt': '/icon/3D-cursor--alt.svg', 'icon.3D-curve--auto-colon': '/icon/3D-curve--auto-colon.svg', @@ -1002,9 +1073,9 @@ export const tokens = { 'icon.forecast--lightning-30': '/icon/forecast--lightning-30.svg', 'icon.fork': '/icon/fork.svg', 'icon.forum': '/icon/forum.svg', + 'icon.forward--5': '/icon/forward--5.svg', 'icon.forward--10': '/icon/forward--10.svg', 'icon.forward--30': '/icon/forward--30.svg', - 'icon.forward--5': '/icon/forward--5.svg', 'icon.fragile': '/icon/fragile.svg', 'icon.friendship': '/icon/friendship.svg', 'icon.fruit-bowl': '/icon/fruit-bowl.svg', @@ -1621,9 +1692,9 @@ export const tokens = { 'icon.result--old': '/icon/result--old.svg', 'icon.retry--failed': '/icon/retry--failed.svg', 'icon.review': '/icon/review.svg', + 'icon.rewind--5': '/icon/rewind--5.svg', 'icon.rewind--10': '/icon/rewind--10.svg', 'icon.rewind--30': '/icon/rewind--30.svg', - 'icon.rewind--5': '/icon/rewind--5.svg', 'icon.road': '/icon/road.svg', 'icon.road--weather': '/icon/road--weather.svg', 'icon.roadmap': '/icon/roadmap.svg', @@ -2149,112 +2220,41 @@ export const tokens = { 'icon.worship--christian': '/icon/worship--christian.svg', 'icon.worship--jewish': '/icon/worship--jewish.svg', 'icon.worship--muslim': '/icon/worship--muslim.svg', - 'icon.X': '/icon/X.svg', - 'icon.x-axis': '/icon/x-axis.svg', - 'icon.XLS': '/icon/XLS.svg', - 'icon.XML': '/icon/XML.svg', - 'icon.Y': '/icon/Y.svg', - 'icon.y-axis': '/icon/y-axis.svg', - 'icon.Z': '/icon/Z.svg', - 'icon.z-axis': '/icon/z-axis.svg', - 'icon.ZIP': '/icon/ZIP.svg', - 'icon.ZIP--reference': '/icon/ZIP--reference.svg', - 'icon.zoom--area': '/icon/zoom--area.svg', - 'icon.zoom--fit': '/icon/zoom--fit.svg', - 'icon.zoom--in': '/icon/zoom--in.svg', - 'icon.zoom--in-area': '/icon/zoom--in-area.svg', - 'icon.zoom--out': '/icon/zoom--out.svg', - 'icon.zoom--out-area': '/icon/zoom--out-area.svg', - 'icon.zoom--reset': '/icon/zoom--reset.svg', - 'icon.zoom-pan': '/icon/zoom-pan.svg', - 'font.family.mono': ['IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier', 'monospace'], - 'font.family.sans': ['IBM Plex Sans', 'Helvetica Neue', 'Arial', 'sans-serif'], - 'font.family.sansCondensed': ['IBM Plex Sans Condensed', 'Helvetica Neue', 'Arial', 'sans-serif'], - 'font.family.sansHebrew': ['IBM Plex Sans Hebrew', 'Helvetica Hebrew', 'Arial Hebrew', 'sans-serif'], - 'font.family.serif': ['IBM Plex Serif', 'Georgia', 'Times', 'serif'], - 'font.size.body01': '0.875rem', - 'font.size.body02': '1rem', - 'font.size.bodyCompact01': '0.875rem', - 'font.size.bodyCompact02': '1rem', - 'font.size.bodyLong01': '0.875rem', - 'font.size.bodyLong02': '1rem', - 'font.size.bodyShort01': '0.875rem', - 'font.size.bodyShort02': '1rem', - 'font.size.caption01': '0.75rem', - 'font.size.caption02': '0.875rem', - 'font.size.code01': '0.75rem', - 'font.size.code02': '0.875rem', - 'font.size.display01': '2.625rem', - 'font.size.display02': '2.625rem', - 'font.size.display03': '2.625rem', - 'font.size.display04': '2.625rem', - 'font.size.expressiveHeading01': '0.875rem', - 'font.size.expressiveHeading02': '1rem', - 'font.size.expressiveHeading03': '1.25rem', - 'font.size.expressiveHeading04': '1.75rem', - 'font.size.expressiveHeading05': '2rem', - 'font.size.expressiveHeading06': '2rem', - 'font.size.expressiveParagraph01': '1.5rem', - 'font.size.fluidDisplay01': '2.625rem', - 'font.size.fluidDisplay02': '2.625rem', - 'font.size.fluidDisplay03': '2.625rem', - 'font.size.fluidDisplay04': '2.625rem', - 'font.size.fluidHeading03': '1.25rem', - 'font.size.fluidHeading04': '1.75rem', - 'font.size.fluidHeading05': '2rem', - 'font.size.fluidHeading06': '2rem', - 'font.size.fluidParagraph01': '1.5rem', - 'font.size.fluidQuotation01': '1.25rem', - 'font.size.fluidQuotation02': '2rem', - 'font.size.heading01': '0.875rem', - 'font.size.heading02': '1rem', - 'font.size.heading03': '1.25rem', - 'font.size.heading04': '1.75rem', - 'font.size.heading05': '2rem', - 'font.size.heading06': '2.625rem', - 'font.size.heading07': '3.375rem', - 'font.size.headingCompact01': '0.875rem', - 'font.size.headingCompact02': '1rem', - 'font.size.helperText01': '0.75rem', - 'font.size.helperText02': '0.875rem', - 'font.size.label01': '0.75rem', - 'font.size.label02': '0.875rem', - 'font.size.legal01': '0.75rem', - 'font.size.legal02': '0.875rem', - 'font.size.productiveHeading01': '0.875rem', - 'font.size.productiveHeading02': '1rem', - 'font.size.productiveHeading03': '1.25rem', - 'font.size.productiveHeading04': '1.75rem', - 'font.size.productiveHeading05': '2rem', - 'font.size.productiveHeading06': '2.625rem', - 'font.size.productiveHeading07': '3.375rem', - 'font.size.quotation01': '1.25rem', - 'font.size.quotation02': '2rem', - 'spacing.4xs': '1px', - 'spacing.3xs': '2px', - 'spacing.2xs': '4px', - 'spacing.xs': '8px', - 'spacing.sm': '12px', - 'spacing.md': '16px', - 'spacing.lg': '24px', - 'spacing.xl': '32px', + 'icon.X': '/icon/X.svg', + 'icon.x-axis': '/icon/x-axis.svg', + 'icon.XLS': '/icon/XLS.svg', + 'icon.XML': '/icon/XML.svg', + 'icon.Y': '/icon/Y.svg', + 'icon.y-axis': '/icon/y-axis.svg', + 'icon.Z': '/icon/Z.svg', + 'icon.z-axis': '/icon/z-axis.svg', + 'icon.ZIP': '/icon/ZIP.svg', + 'icon.ZIP--reference': '/icon/ZIP--reference.svg', + 'icon.zoom--area': '/icon/zoom--area.svg', + 'icon.zoom--fit': '/icon/zoom--fit.svg', + 'icon.zoom--in': '/icon/zoom--in.svg', + 'icon.zoom--in-area': '/icon/zoom--in-area.svg', + 'icon.zoom--out': '/icon/zoom--out.svg', + 'icon.zoom--out-area': '/icon/zoom--out-area.svg', + 'icon.zoom--reset': '/icon/zoom--reset.svg', + 'icon.zoom-pan': '/icon/zoom-pan.svg', 'spacing.2xl': '40px', + 'spacing.2xs': '4px', 'spacing.3xl': '48px', + 'spacing.3xs': '2px', + 'spacing.4xs': '1px', + 'spacing.layout.2xl': '160px', 'spacing.layout.2xs': '16px', - 'spacing.layout.xs': '24px', - 'spacing.layout.sm': '32px', - 'spacing.layout.md': '48px', 'spacing.layout.lg': '64px', + 'spacing.layout.md': '48px', + 'spacing.layout.sm': '32px', 'spacing.layout.xl': '96px', - 'spacing.layout.2xl': '160px', - 'easing.easeIn': [0.25, 0, 1, 1], - 'easing.easeOut': [0, 0, 0.25, 1], - 'easing.standard': [0.5, 0, 0.1, 1], - 'easing.standard--expressive': [0.4, 0.14, 0.3, 1], - 'easing.entrance': [0, 0, 0.38, 0.9], - 'easing.entrance--expressive': [0, 0, 0.3, 1], - 'easing.exit': [0.2, 0, 1, 0.9], - 'easing.exit--expressive': [0.4, 0.14, 1, 1], + 'spacing.layout.xs': '24px', + 'spacing.lg': '24px', + 'spacing.md': '16px', + 'spacing.sm': '12px', + 'spacing.xl': '32px', + 'spacing.xs': '8px', 'transition.base': '250ms', 'transition.expansion': '300ms', 'transition.fast01': '70ms', @@ -2267,36132 +2267,38390 @@ export const tokens = { export const meta = { 'color.black': { - '_original': { - '$value': '#000000', + _original: { + $value: '#000000', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.black', - '$type': 'color', - '$value': '#000000', + $type: 'color', + $value: '#000000', }, 'color.black100': { - '_original': { - '$value': '#000000', + _original: { + $value: '#000000', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.black100', - '$type': 'color', - '$value': '#000000', + $type: 'color', + $value: '#000000', }, 'color.blackHover': { - '_original': { - '$value': '#212121', + _original: { + $value: '#212121', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.blackHover', - '$type': 'color', - '$value': '#212121', + $type: 'color', + $value: '#212121', }, 'color.blue10': { - '_original': { - '$value': '#edf5ff', + _original: { + $value: '#edf5ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.blue10', - '$type': 'color', - '$value': '#edf5ff', + $type: 'color', + $value: '#edf5ff', }, - 'color.blue20': { - '_original': { - '$value': '#d0e2ff', + 'color.blue10Hover': { + _original: { + $value: '#dbebff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue20', - '$type': 'color', - '$value': '#d0e2ff', + id: 'color.blue10Hover', + $type: 'color', + $value: '#dbebff', }, - 'color.blue30': { - '_original': { - '$value': '#a6c8ff', + 'color.blue20': { + _original: { + $value: '#d0e2ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue30', - '$type': 'color', - '$value': '#a6c8ff', + id: 'color.blue20', + $type: 'color', + $value: '#d0e2ff', }, - 'color.blue40': { - '_original': { - '$value': '#78a9ff', + 'color.blue20Hover': { + _original: { + $value: '#b8d3ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue40', - '$type': 'color', - '$value': '#78a9ff', + id: 'color.blue20Hover', + $type: 'color', + $value: '#b8d3ff', }, - 'color.blue50': { - '_original': { - '$value': '#4589ff', + 'color.blue30': { + _original: { + $value: '#a6c8ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue50', - '$type': 'color', - '$value': '#4589ff', + id: 'color.blue30', + $type: 'color', + $value: '#a6c8ff', }, - 'color.blue60': { - '_original': { - '$value': '#0f62fe', + 'color.blue30Hover': { + _original: { + $value: '#8ab6ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue60', - '$type': 'color', - '$value': '#0f62fe', + id: 'color.blue30Hover', + $type: 'color', + $value: '#8ab6ff', }, - 'color.blue70': { - '_original': { - '$value': '#0043ce', + 'color.blue40': { + _original: { + $value: '#78a9ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue70', - '$type': 'color', - '$value': '#0043ce', + id: 'color.blue40', + $type: 'color', + $value: '#78a9ff', }, - 'color.blue80': { - '_original': { - '$value': '#002d9c', + 'color.blue40Hover': { + _original: { + $value: '#5c97ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue80', - '$type': 'color', - '$value': '#002d9c', + id: 'color.blue40Hover', + $type: 'color', + $value: '#5c97ff', }, - 'color.blue90': { - '_original': { - '$value': '#001d6c', + 'color.blue50': { + _original: { + $value: '#4589ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue90', - '$type': 'color', - '$value': '#001d6c', + id: 'color.blue50', + $type: 'color', + $value: '#4589ff', }, - 'color.blue100': { - '_original': { - '$value': '#001141', + 'color.blue50Hover': { + _original: { + $value: '#1f70ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue100', - '$type': 'color', - '$value': '#001141', + id: 'color.blue50Hover', + $type: 'color', + $value: '#1f70ff', }, - 'color.blue10Hover': { - '_original': { - '$value': '#dbebff', + 'color.blue60': { + _original: { + $value: '#0f62fe', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue10Hover', - '$type': 'color', - '$value': '#dbebff', + id: 'color.blue60', + $type: 'color', + $value: '#0f62fe', }, - 'color.blue20Hover': { - '_original': { - '$value': '#b8d3ff', + 'color.blue60Hover': { + _original: { + $value: '#0050e6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue20Hover', - '$type': 'color', - '$value': '#b8d3ff', + id: 'color.blue60Hover', + $type: 'color', + $value: '#0050e6', }, - 'color.blue30Hover': { - '_original': { - '$value': '#8ab6ff', + 'color.blue70': { + _original: { + $value: '#0043ce', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue30Hover', - '$type': 'color', - '$value': '#8ab6ff', + id: 'color.blue70', + $type: 'color', + $value: '#0043ce', }, - 'color.blue40Hover': { - '_original': { - '$value': '#5c97ff', + 'color.blue70Hover': { + _original: { + $value: '#0053ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue40Hover', - '$type': 'color', - '$value': '#5c97ff', + id: 'color.blue70Hover', + $type: 'color', + $value: '#0053ff', }, - 'color.blue50Hover': { - '_original': { - '$value': '#1f70ff', + 'color.blue80': { + _original: { + $value: '#002d9c', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue50Hover', - '$type': 'color', - '$value': '#1f70ff', + id: 'color.blue80', + $type: 'color', + $value: '#002d9c', }, - 'color.blue60Hover': { - '_original': { - '$value': '#0050e6', + 'color.blue80Hover': { + _original: { + $value: '#0039c7', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue60Hover', - '$type': 'color', - '$value': '#0050e6', + id: 'color.blue80Hover', + $type: 'color', + $value: '#0039c7', }, - 'color.blue70Hover': { - '_original': { - '$value': '#0053ff', + 'color.blue90': { + _original: { + $value: '#001d6c', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue70Hover', - '$type': 'color', - '$value': '#0053ff', + id: 'color.blue90', + $type: 'color', + $value: '#001d6c', }, - 'color.blue80Hover': { - '_original': { - '$value': '#0039c7', + 'color.blue90Hover': { + _original: { + $value: '#00258a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue80Hover', - '$type': 'color', - '$value': '#0039c7', + id: 'color.blue90Hover', + $type: 'color', + $value: '#00258a', }, - 'color.blue90Hover': { - '_original': { - '$value': '#00258a', + 'color.blue100': { + _original: { + $value: '#001141', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.blue90Hover', - '$type': 'color', - '$value': '#00258a', + id: 'color.blue100', + $type: 'color', + $value: '#001141', }, 'color.blue100Hover': { - '_original': { - '$value': '#001f75', + _original: { + $value: '#001f75', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.blue100Hover', - '$type': 'color', - '$value': '#001f75', + $type: 'color', + $value: '#001f75', }, 'color.coolGray10': { - '_original': { - '$value': '#f2f4f8', + _original: { + $value: '#f2f4f8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.coolGray10', - '$type': 'color', - '$value': '#f2f4f8', + $type: 'color', + $value: '#f2f4f8', }, - 'color.coolGray20': { - '_original': { - '$value': '#dde1e6', + 'color.coolGray10Hover': { + _original: { + $value: '#e4e9f1', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray20', - '$type': 'color', - '$value': '#dde1e6', + id: 'color.coolGray10Hover', + $type: 'color', + $value: '#e4e9f1', }, - 'color.coolGray30': { - '_original': { - '$value': '#c1c7cd', + 'color.coolGray20': { + _original: { + $value: '#dde1e6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray30', - '$type': 'color', - '$value': '#c1c7cd', + id: 'color.coolGray20', + $type: 'color', + $value: '#dde1e6', }, - 'color.coolGray40': { - '_original': { - '$value': '#a2a9b0', + 'color.coolGray20Hover': { + _original: { + $value: '#cdd3da', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray40', - '$type': 'color', - '$value': '#a2a9b0', + id: 'color.coolGray20Hover', + $type: 'color', + $value: '#cdd3da', }, - 'color.coolGray50': { - '_original': { - '$value': '#878d96', + 'color.coolGray30': { + _original: { + $value: '#c1c7cd', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray50', - '$type': 'color', - '$value': '#878d96', + id: 'color.coolGray30', + $type: 'color', + $value: '#c1c7cd', }, - 'color.coolGray60': { - '_original': { - '$value': '#697077', + 'color.coolGray30Hover': { + _original: { + $value: '#adb5bd', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray60', - '$type': 'color', - '$value': '#697077', + id: 'color.coolGray30Hover', + $type: 'color', + $value: '#adb5bd', }, - 'color.coolGray70': { - '_original': { - '$value': '#4d5358', + 'color.coolGray40': { + _original: { + $value: '#a2a9b0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray70', - '$type': 'color', - '$value': '#4d5358', + id: 'color.coolGray40', + $type: 'color', + $value: '#a2a9b0', }, - 'color.coolGray80': { - '_original': { - '$value': '#343a3f', + 'color.coolGray40Hover': { + _original: { + $value: '#9199a1', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray80', - '$type': 'color', - '$value': '#343a3f', + id: 'color.coolGray40Hover', + $type: 'color', + $value: '#9199a1', }, - 'color.coolGray90': { - '_original': { - '$value': '#21272a', + 'color.coolGray50': { + _original: { + $value: '#878d96', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray90', - '$type': 'color', - '$value': '#21272a', + id: 'color.coolGray50', + $type: 'color', + $value: '#878d96', }, - 'color.coolGray100': { - '_original': { - '$value': '#121619', + 'color.coolGray50Hover': { + _original: { + $value: '#757b85', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray100', - '$type': 'color', - '$value': '#121619', + id: 'color.coolGray50Hover', + $type: 'color', + $value: '#757b85', }, - 'color.coolGray10Hover': { - '_original': { - '$value': '#e4e9f1', + 'color.coolGray60': { + _original: { + $value: '#697077', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray10Hover', - '$type': 'color', - '$value': '#e4e9f1', + id: 'color.coolGray60', + $type: 'color', + $value: '#697077', }, - 'color.coolGray20Hover': { - '_original': { - '$value': '#cdd3da', + 'color.coolGray60Hover': { + _original: { + $value: '#585e64', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray20Hover', - '$type': 'color', - '$value': '#cdd3da', + id: 'color.coolGray60Hover', + $type: 'color', + $value: '#585e64', }, - 'color.coolGray30Hover': { - '_original': { - '$value': '#adb5bd', + 'color.coolGray70': { + _original: { + $value: '#4d5358', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray30Hover', - '$type': 'color', - '$value': '#adb5bd', + id: 'color.coolGray70', + $type: 'color', + $value: '#4d5358', }, - 'color.coolGray40Hover': { - '_original': { - '$value': '#9199a1', + 'color.coolGray70Hover': { + _original: { + $value: '#5d646a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray40Hover', - '$type': 'color', - '$value': '#9199a1', + id: 'color.coolGray70Hover', + $type: 'color', + $value: '#5d646a', }, - 'color.coolGray50Hover': { - '_original': { - '$value': '#757b85', + 'color.coolGray80': { + _original: { + $value: '#343a3f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray50Hover', - '$type': 'color', - '$value': '#757b85', + id: 'color.coolGray80', + $type: 'color', + $value: '#343a3f', }, - 'color.coolGray60Hover': { - '_original': { - '$value': '#585e64', + 'color.coolGray80Hover': { + _original: { + $value: '#434a51', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray60Hover', - '$type': 'color', - '$value': '#585e64', + id: 'color.coolGray80Hover', + $type: 'color', + $value: '#434a51', }, - 'color.coolGray70Hover': { - '_original': { - '$value': '#5d646a', + 'color.coolGray90': { + _original: { + $value: '#21272a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray70Hover', - '$type': 'color', - '$value': '#5d646a', + id: 'color.coolGray90', + $type: 'color', + $value: '#21272a', }, - 'color.coolGray80Hover': { - '_original': { - '$value': '#434a51', + 'color.coolGray90Hover': { + _original: { + $value: '#2b3236', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray80Hover', - '$type': 'color', - '$value': '#434a51', + id: 'color.coolGray90Hover', + $type: 'color', + $value: '#2b3236', }, - 'color.coolGray90Hover': { - '_original': { - '$value': '#2b3236', + 'color.coolGray100': { + _original: { + $value: '#121619', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.coolGray90Hover', - '$type': 'color', - '$value': '#2b3236', + id: 'color.coolGray100', + $type: 'color', + $value: '#121619', }, 'color.coolGray100Hover': { - '_original': { - '$value': '#222a2f', + _original: { + $value: '#222a2f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.coolGray100Hover', - '$type': 'color', - '$value': '#222a2f', + $type: 'color', + $value: '#222a2f', }, 'color.cyan10': { - '_original': { - '$value': '#e5f6ff', + _original: { + $value: '#e5f6ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.cyan10', - '$type': 'color', - '$value': '#e5f6ff', + $type: 'color', + $value: '#e5f6ff', }, - 'color.cyan20': { - '_original': { - '$value': '#bae6ff', + 'color.cyan10Hover': { + _original: { + $value: '#cceeff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan20', - '$type': 'color', - '$value': '#bae6ff', + id: 'color.cyan10Hover', + $type: 'color', + $value: '#cceeff', }, - 'color.cyan30': { - '_original': { - '$value': '#82cfff', + 'color.cyan20': { + _original: { + $value: '#bae6ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan30', - '$type': 'color', - '$value': '#82cfff', + id: 'color.cyan20', + $type: 'color', + $value: '#bae6ff', }, - 'color.cyan40': { - '_original': { - '$value': '#33b1ff', + 'color.cyan20Hover': { + _original: { + $value: '#99daff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan40', - '$type': 'color', - '$value': '#33b1ff', + id: 'color.cyan20Hover', + $type: 'color', + $value: '#99daff', }, - 'color.cyan50': { - '_original': { - '$value': '#1192e8', + 'color.cyan30': { + _original: { + $value: '#82cfff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan50', - '$type': 'color', - '$value': '#1192e8', + id: 'color.cyan30', + $type: 'color', + $value: '#82cfff', }, - 'color.cyan60': { - '_original': { - '$value': '#0072c3', + 'color.cyan30Hover': { + _original: { + $value: '#57beff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan60', - '$type': 'color', - '$value': '#0072c3', + id: 'color.cyan30Hover', + $type: 'color', + $value: '#57beff', }, - 'color.cyan70': { - '_original': { - '$value': '#00539a', + 'color.cyan40': { + _original: { + $value: '#33b1ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan70', - '$type': 'color', - '$value': '#00539a', + id: 'color.cyan40', + $type: 'color', + $value: '#33b1ff', }, - 'color.cyan80': { - '_original': { - '$value': '#003a6d', + 'color.cyan40Hover': { + _original: { + $value: '#059fff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan80', - '$type': 'color', - '$value': '#003a6d', + id: 'color.cyan40Hover', + $type: 'color', + $value: '#059fff', }, - 'color.cyan90': { - '_original': { - '$value': '#012749', + 'color.cyan50': { + _original: { + $value: '#1192e8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan90', - '$type': 'color', - '$value': '#012749', + id: 'color.cyan50', + $type: 'color', + $value: '#1192e8', }, - 'color.cyan100': { - '_original': { - '$value': '#061727', + 'color.cyan50Hover': { + _original: { + $value: '#0f7ec8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan100', - '$type': 'color', - '$value': '#061727', + id: 'color.cyan50Hover', + $type: 'color', + $value: '#0f7ec8', }, - 'color.cyan10Hover': { - '_original': { - '$value': '#cceeff', + 'color.cyan60': { + _original: { + $value: '#0072c3', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan10Hover', - '$type': 'color', - '$value': '#cceeff', + id: 'color.cyan60', + $type: 'color', + $value: '#0072c3', }, - 'color.cyan20Hover': { - '_original': { - '$value': '#99daff', + 'color.cyan60Hover': { + _original: { + $value: '#005fa3', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan20Hover', - '$type': 'color', - '$value': '#99daff', + id: 'color.cyan60Hover', + $type: 'color', + $value: '#005fa3', }, - 'color.cyan30Hover': { - '_original': { - '$value': '#57beff', + 'color.cyan70': { + _original: { + $value: '#00539a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan30Hover', - '$type': 'color', - '$value': '#57beff', + id: 'color.cyan70', + $type: 'color', + $value: '#00539a', }, - 'color.cyan40Hover': { - '_original': { - '$value': '#059fff', + 'color.cyan70Hover': { + _original: { + $value: '#0066bd', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan40Hover', - '$type': 'color', - '$value': '#059fff', + id: 'color.cyan70Hover', + $type: 'color', + $value: '#0066bd', }, - 'color.cyan50Hover': { - '_original': { - '$value': '#0f7ec8', + 'color.cyan80': { + _original: { + $value: '#003a6d', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan50Hover', - '$type': 'color', - '$value': '#0f7ec8', + id: 'color.cyan80', + $type: 'color', + $value: '#003a6d', }, - 'color.cyan60Hover': { - '_original': { - '$value': '#005fa3', + 'color.cyan80Hover': { + _original: { + $value: '#00498a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan60Hover', - '$type': 'color', - '$value': '#005fa3', + id: 'color.cyan80Hover', + $type: 'color', + $value: '#00498a', }, - 'color.cyan70Hover': { - '_original': { - '$value': '#0066bd', + 'color.cyan90': { + _original: { + $value: '#012749', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan70Hover', - '$type': 'color', - '$value': '#0066bd', + id: 'color.cyan90', + $type: 'color', + $value: '#012749', }, - 'color.cyan80Hover': { - '_original': { - '$value': '#00498a', + 'color.cyan90Hover': { + _original: { + $value: '#013360', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan80Hover', - '$type': 'color', - '$value': '#00498a', + id: 'color.cyan90Hover', + $type: 'color', + $value: '#013360', }, - 'color.cyan90Hover': { - '_original': { - '$value': '#013360', + 'color.cyan100': { + _original: { + $value: '#061727', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.cyan90Hover', - '$type': 'color', - '$value': '#013360', + id: 'color.cyan100', + $type: 'color', + $value: '#061727', }, 'color.cyan100Hover': { - '_original': { - '$value': '#0b2947', + _original: { + $value: '#0b2947', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.cyan100Hover', - '$type': 'color', - '$value': '#0b2947', + $type: 'color', + $value: '#0b2947', }, 'color.gray10': { - '_original': { - '$value': '#f4f4f4', + _original: { + $value: '#f4f4f4', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.gray10', - '$type': 'color', - '$value': '#f4f4f4', + $type: 'color', + $value: '#f4f4f4', }, - 'color.gray20': { - '_original': { - '$value': '#e0e0e0', + 'color.gray10Hover': { + _original: { + $value: '#e8e8e8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray20', - '$type': 'color', - '$value': '#e0e0e0', + id: 'color.gray10Hover', + $type: 'color', + $value: '#e8e8e8', }, - 'color.gray30': { - '_original': { - '$value': '#c6c6c6', + 'color.gray20': { + _original: { + $value: '#e0e0e0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray30', - '$type': 'color', - '$value': '#c6c6c6', + id: 'color.gray20', + $type: 'color', + $value: '#e0e0e0', }, - 'color.gray40': { - '_original': { - '$value': '#a8a8a8', + 'color.gray20Hover': { + _original: { + $value: '#d1d1d1', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray40', - '$type': 'color', - '$value': '#a8a8a8', + id: 'color.gray20Hover', + $type: 'color', + $value: '#d1d1d1', }, - 'color.gray50': { - '_original': { - '$value': '#8d8d8d', + 'color.gray30': { + _original: { + $value: '#c6c6c6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray50', - '$type': 'color', - '$value': '#8d8d8d', + id: 'color.gray30', + $type: 'color', + $value: '#c6c6c6', }, - 'color.gray60': { - '_original': { - '$value': '#6f6f6f', + 'color.gray30Hover': { + _original: { + $value: '#b5b5b5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray60', - '$type': 'color', - '$value': '#6f6f6f', + id: 'color.gray30Hover', + $type: 'color', + $value: '#b5b5b5', }, - 'color.gray70': { - '_original': { - '$value': '#525252', + 'color.gray40': { + _original: { + $value: '#a8a8a8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray70', - '$type': 'color', - '$value': '#525252', + id: 'color.gray40', + $type: 'color', + $value: '#a8a8a8', }, - 'color.gray80': { - '_original': { - '$value': '#393939', + 'color.gray40Hover': { + _original: { + $value: '#999999', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray80', - '$type': 'color', - '$value': '#393939', + id: 'color.gray40Hover', + $type: 'color', + $value: '#999999', }, - 'color.gray90': { - '_original': { - '$value': '#262626', + 'color.gray50': { + _original: { + $value: '#8d8d8d', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray90', - '$type': 'color', - '$value': '#262626', + id: 'color.gray50', + $type: 'color', + $value: '#8d8d8d', }, - 'color.gray100': { - '_original': { - '$value': '#161616', + 'color.gray50Hover': { + _original: { + $value: '#7a7a7a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray100', - '$type': 'color', - '$value': '#161616', + id: 'color.gray50Hover', + $type: 'color', + $value: '#7a7a7a', }, - 'color.gray10Hover': { - '_original': { - '$value': '#e8e8e8', + 'color.gray60': { + _original: { + $value: '#6f6f6f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray10Hover', - '$type': 'color', - '$value': '#e8e8e8', + id: 'color.gray60', + $type: 'color', + $value: '#6f6f6f', }, - 'color.gray20Hover': { - '_original': { - '$value': '#d1d1d1', + 'color.gray60Hover': { + _original: { + $value: '#5e5e5e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray20Hover', - '$type': 'color', - '$value': '#d1d1d1', + id: 'color.gray60Hover', + $type: 'color', + $value: '#5e5e5e', }, - 'color.gray30Hover': { - '_original': { - '$value': '#b5b5b5', + 'color.gray70': { + _original: { + $value: '#525252', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray30Hover', - '$type': 'color', - '$value': '#b5b5b5', + id: 'color.gray70', + $type: 'color', + $value: '#525252', }, - 'color.gray40Hover': { - '_original': { - '$value': '#999999', + 'color.gray70Hover': { + _original: { + $value: '#636363', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray40Hover', - '$type': 'color', - '$value': '#999999', + id: 'color.gray70Hover', + $type: 'color', + $value: '#636363', }, - 'color.gray50Hover': { - '_original': { - '$value': '#7a7a7a', + 'color.gray80': { + _original: { + $value: '#393939', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray50Hover', - '$type': 'color', - '$value': '#7a7a7a', + id: 'color.gray80', + $type: 'color', + $value: '#393939', }, - 'color.gray60Hover': { - '_original': { - '$value': '#5e5e5e', + 'color.gray80Hover': { + _original: { + $value: '#474747', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray60Hover', - '$type': 'color', - '$value': '#5e5e5e', + id: 'color.gray80Hover', + $type: 'color', + $value: '#474747', }, - 'color.gray70Hover': { - '_original': { - '$value': '#636363', + 'color.gray90': { + _original: { + $value: '#262626', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray70Hover', - '$type': 'color', - '$value': '#636363', + id: 'color.gray90', + $type: 'color', + $value: '#262626', }, - 'color.gray80Hover': { - '_original': { - '$value': '#474747', + 'color.gray90Hover': { + _original: { + $value: '#333333', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray80Hover', - '$type': 'color', - '$value': '#474747', + id: 'color.gray90Hover', + $type: 'color', + $value: '#333333', }, - 'color.gray90Hover': { - '_original': { - '$value': '#333333', + 'color.gray100': { + _original: { + $value: '#161616', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.gray90Hover', - '$type': 'color', - '$value': '#333333', + id: 'color.gray100', + $type: 'color', + $value: '#161616', }, 'color.gray100Hover': { - '_original': { - '$value': '#292929', + _original: { + $value: '#292929', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.gray100Hover', - '$type': 'color', - '$value': '#292929', + $type: 'color', + $value: '#292929', }, 'color.green10': { - '_original': { - '$value': '#defbe6', + _original: { + $value: '#defbe6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.green10', - '$type': 'color', - '$value': '#defbe6', + $type: 'color', + $value: '#defbe6', }, - 'color.green20': { - '_original': { - '$value': '#a7f0ba', + 'color.green10Hover': { + _original: { + $value: '#b6f6c8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green20', - '$type': 'color', - '$value': '#a7f0ba', + id: 'color.green10Hover', + $type: 'color', + $value: '#b6f6c8', }, - 'color.green30': { - '_original': { - '$value': '#6fdc8c', + 'color.green20': { + _original: { + $value: '#a7f0ba', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green30', - '$type': 'color', - '$value': '#6fdc8c', + id: 'color.green20', + $type: 'color', + $value: '#a7f0ba', }, - 'color.green40': { - '_original': { - '$value': '#42be65', + 'color.green20Hover': { + _original: { + $value: '#74e792', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green40', - '$type': 'color', - '$value': '#42be65', + id: 'color.green20Hover', + $type: 'color', + $value: '#74e792', }, - 'color.green50': { - '_original': { - '$value': '#24a148', + 'color.green30': { + _original: { + $value: '#6fdc8c', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green50', - '$type': 'color', - '$value': '#24a148', + id: 'color.green30', + $type: 'color', + $value: '#6fdc8c', }, - 'color.green60': { - '_original': { - '$value': '#198038', + 'color.green30Hover': { + _original: { + $value: '#36ce5e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green60', - '$type': 'color', - '$value': '#198038', + id: 'color.green30Hover', + $type: 'color', + $value: '#36ce5e', }, - 'color.green70': { - '_original': { - '$value': '#0e6027', + 'color.green40': { + _original: { + $value: '#42be65', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green70', - '$type': 'color', - '$value': '#0e6027', + id: 'color.green40', + $type: 'color', + $value: '#42be65', }, - 'color.green80': { - '_original': { - '$value': '#044317', + 'color.green40Hover': { + _original: { + $value: '#3bab5a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green80', - '$type': 'color', - '$value': '#044317', + id: 'color.green40Hover', + $type: 'color', + $value: '#3bab5a', }, - 'color.green90': { - '_original': { - '$value': '#022d0d', + 'color.green50': { + _original: { + $value: '#24a148', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green90', - '$type': 'color', - '$value': '#022d0d', + id: 'color.green50', + $type: 'color', + $value: '#24a148', }, - 'color.green100': { - '_original': { - '$value': '#071908', + 'color.green50Hover': { + _original: { + $value: '#208e3f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green100', - '$type': 'color', - '$value': '#071908', + id: 'color.green50Hover', + $type: 'color', + $value: '#208e3f', }, - 'color.green10Hover': { - '_original': { - '$value': '#b6f6c8', + 'color.green60': { + _original: { + $value: '#198038', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green10Hover', - '$type': 'color', - '$value': '#b6f6c8', + id: 'color.green60', + $type: 'color', + $value: '#198038', }, - 'color.green20Hover': { - '_original': { - '$value': '#74e792', + 'color.green60Hover': { + _original: { + $value: '#166f31', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green20Hover', - '$type': 'color', - '$value': '#74e792', + id: 'color.green60Hover', + $type: 'color', + $value: '#166f31', }, - 'color.green30Hover': { - '_original': { - '$value': '#36ce5e', + 'color.green70': { + _original: { + $value: '#0e6027', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green30Hover', - '$type': 'color', - '$value': '#36ce5e', + id: 'color.green70', + $type: 'color', + $value: '#0e6027', }, - 'color.green40Hover': { - '_original': { - '$value': '#3bab5a', + 'color.green70Hover': { + _original: { + $value: '#11742f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green40Hover', - '$type': 'color', - '$value': '#3bab5a', + id: 'color.green70Hover', + $type: 'color', + $value: '#11742f', }, - 'color.green50Hover': { - '_original': { - '$value': '#208e3f', + 'color.green80': { + _original: { + $value: '#044317', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green50Hover', - '$type': 'color', - '$value': '#208e3f', + id: 'color.green80', + $type: 'color', + $value: '#044317', }, - 'color.green60Hover': { - '_original': { - '$value': '#166f31', + 'color.green80Hover': { + _original: { + $value: '#05521c', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green60Hover', - '$type': 'color', - '$value': '#166f31', + id: 'color.green80Hover', + $type: 'color', + $value: '#05521c', }, - 'color.green70Hover': { - '_original': { - '$value': '#11742f', + 'color.green90': { + _original: { + $value: '#022d0d', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green70Hover', - '$type': 'color', - '$value': '#11742f', + id: 'color.green90', + $type: 'color', + $value: '#022d0d', }, - 'color.green80Hover': { - '_original': { - '$value': '#05521c', + 'color.green90Hover': { + _original: { + $value: '#033b11', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green80Hover', - '$type': 'color', - '$value': '#05521c', + id: 'color.green90Hover', + $type: 'color', + $value: '#033b11', }, - 'color.green90Hover': { - '_original': { - '$value': '#033b11', + 'color.green100': { + _original: { + $value: '#071908', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.green90Hover', - '$type': 'color', - '$value': '#033b11', + id: 'color.green100', + $type: 'color', + $value: '#071908', }, 'color.green100Hover': { - '_original': { - '$value': '#0d300f', + _original: { + $value: '#0d300f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.green100Hover', - '$type': 'color', - '$value': '#0d300f', + $type: 'color', + $value: '#0d300f', }, 'color.magenta10': { - '_original': { - '$value': '#fff0f7', + _original: { + $value: '#fff0f7', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.magenta10', - '$type': 'color', - '$value': '#fff0f7', + $type: 'color', + $value: '#fff0f7', }, - 'color.magenta20': { - '_original': { - '$value': '#ffd6e8', + 'color.magenta10Hover': { + _original: { + $value: '#ffe0ef', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta20', - '$type': 'color', - '$value': '#ffd6e8', + id: 'color.magenta10Hover', + $type: 'color', + $value: '#ffe0ef', }, - 'color.magenta30': { - '_original': { - '$value': '#ffafd2', + 'color.magenta20': { + _original: { + $value: '#ffd6e8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta30', - '$type': 'color', - '$value': '#ffafd2', + id: 'color.magenta20', + $type: 'color', + $value: '#ffd6e8', }, - 'color.magenta40': { - '_original': { - '$value': '#ff7eb6', + 'color.magenta20Hover': { + _original: { + $value: '#ffbdda', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta40', - '$type': 'color', - '$value': '#ff7eb6', + id: 'color.magenta20Hover', + $type: 'color', + $value: '#ffbdda', }, - 'color.magenta50': { - '_original': { - '$value': '#ee5396', + 'color.magenta30': { + _original: { + $value: '#ffafd2', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta50', - '$type': 'color', - '$value': '#ee5396', + id: 'color.magenta30', + $type: 'color', + $value: '#ffafd2', }, - 'color.magenta60': { - '_original': { - '$value': '#d02670', + 'color.magenta30Hover': { + _original: { + $value: '#ff94c3', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta60', - '$type': 'color', - '$value': '#d02670', + id: 'color.magenta30Hover', + $type: 'color', + $value: '#ff94c3', }, - 'color.magenta70': { - '_original': { - '$value': '#9f1853', + 'color.magenta40': { + _original: { + $value: '#ff7eb6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta70', - '$type': 'color', - '$value': '#9f1853', + id: 'color.magenta40', + $type: 'color', + $value: '#ff7eb6', }, - 'color.magenta80': { - '_original': { - '$value': '#740937', + 'color.magenta40Hover': { + _original: { + $value: '#ff57a0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta80', - '$type': 'color', - '$value': '#740937', + id: 'color.magenta40Hover', + $type: 'color', + $value: '#ff57a0', }, - 'color.magenta90': { - '_original': { - '$value': '#510224', + 'color.magenta50': { + _original: { + $value: '#ee5396', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta90', - '$type': 'color', - '$value': '#510224', + id: 'color.magenta50', + $type: 'color', + $value: '#ee5396', }, - 'color.magenta100': { - '_original': { - '$value': '#2a0a18', + 'color.magenta50Hover': { + _original: { + $value: '#e3176f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta100', - '$type': 'color', - '$value': '#2a0a18', + id: 'color.magenta50Hover', + $type: 'color', + $value: '#e3176f', }, - 'color.magenta10Hover': { - '_original': { - '$value': '#ffe0ef', + 'color.magenta60': { + _original: { + $value: '#d02670', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta10Hover', - '$type': 'color', - '$value': '#ffe0ef', + id: 'color.magenta60', + $type: 'color', + $value: '#d02670', }, - 'color.magenta20Hover': { - '_original': { - '$value': '#ffbdda', + 'color.magenta60Hover': { + _original: { + $value: '#b0215f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta20Hover', - '$type': 'color', - '$value': '#ffbdda', + id: 'color.magenta60Hover', + $type: 'color', + $value: '#b0215f', }, - 'color.magenta30Hover': { - '_original': { - '$value': '#ff94c3', + 'color.magenta70': { + _original: { + $value: '#9f1853', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta30Hover', - '$type': 'color', - '$value': '#ff94c3', + id: 'color.magenta70', + $type: 'color', + $value: '#9f1853', }, - 'color.magenta40Hover': { - '_original': { - '$value': '#ff57a0', + 'color.magenta70Hover': { + _original: { + $value: '#bf1d63', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta40Hover', - '$type': 'color', - '$value': '#ff57a0', + id: 'color.magenta70Hover', + $type: 'color', + $value: '#bf1d63', }, - 'color.magenta50Hover': { - '_original': { - '$value': '#e3176f', + 'color.magenta80': { + _original: { + $value: '#740937', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta50Hover', - '$type': 'color', - '$value': '#e3176f', + id: 'color.magenta80', + $type: 'color', + $value: '#740937', }, - 'color.magenta60Hover': { - '_original': { - '$value': '#b0215f', + 'color.magenta80Hover': { + _original: { + $value: '#8e0b43', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta60Hover', - '$type': 'color', - '$value': '#b0215f', + id: 'color.magenta80Hover', + $type: 'color', + $value: '#8e0b43', }, - 'color.magenta70Hover': { - '_original': { - '$value': '#bf1d63', + 'color.magenta90': { + _original: { + $value: '#510224', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta70Hover', - '$type': 'color', - '$value': '#bf1d63', + id: 'color.magenta90', + $type: 'color', + $value: '#510224', }, - 'color.magenta80Hover': { - '_original': { - '$value': '#8e0b43', + 'color.magenta90Hover': { + _original: { + $value: '#68032e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta80Hover', - '$type': 'color', - '$value': '#8e0b43', + id: 'color.magenta90Hover', + $type: 'color', + $value: '#68032e', }, - 'color.magenta90Hover': { - '_original': { - '$value': '#68032e', + 'color.magenta100': { + _original: { + $value: '#2a0a18', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.magenta90Hover', - '$type': 'color', - '$value': '#68032e', + id: 'color.magenta100', + $type: 'color', + $value: '#2a0a18', }, 'color.magenta100Hover': { - '_original': { - '$value': '#53142f', + _original: { + $value: '#53142f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.magenta100Hover', - '$type': 'color', - '$value': '#53142f', + $type: 'color', + $value: '#53142f', }, 'color.orange': { - '_original': { - '$value': '#ff832b', + _original: { + $value: '#ff832b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.orange', - '$type': 'color', - '$value': '#ff832b', + $type: 'color', + $value: '#ff832b', }, 'color.orange10': { - '_original': { - '$value': '#fff2e8', + _original: { + $value: '#fff2e8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.orange10', - '$type': 'color', - '$value': '#fff2e8', + $type: 'color', + $value: '#fff2e8', }, - 'color.orange20': { - '_original': { - '$value': '#ffd9be', + 'color.orange10Hover': { + _original: { + $value: '#ffe2cc', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange20', - '$type': 'color', - '$value': '#ffd9be', + id: 'color.orange10Hover', + $type: 'color', + $value: '#ffe2cc', }, - 'color.orange30': { - '_original': { - '$value': '#ffb784', + 'color.orange20': { + _original: { + $value: '#ffd9be', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange30', - '$type': 'color', - '$value': '#ffb784', + id: 'color.orange20', + $type: 'color', + $value: '#ffd9be', }, - 'color.orange40': { - '_original': { - '$value': '#ff832b', + 'color.orange20Hover': { + _original: { + $value: '#ffc69e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange40', - '$type': 'color', - '$value': '#ff832b', + id: 'color.orange20Hover', + $type: 'color', + $value: '#ffc69e', }, - 'color.orange50': { - '_original': { - '$value': '#eb6200', + 'color.orange30': { + _original: { + $value: '#ffb784', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange50', - '$type': 'color', - '$value': '#eb6200', + id: 'color.orange30', + $type: 'color', + $value: '#ffb784', }, - 'color.orange60': { - '_original': { - '$value': '#ba4e00', + 'color.orange30Hover': { + _original: { + $value: '#ff9d57', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange60', - '$type': 'color', - '$value': '#ba4e00', + id: 'color.orange30Hover', + $type: 'color', + $value: '#ff9d57', }, - 'color.orange70': { - '_original': { - '$value': '#8a3800', + 'color.orange40': { + _original: { + $value: '#ff832b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange70', - '$type': 'color', - '$value': '#8a3800', + id: 'color.orange40', + $type: 'color', + $value: '#ff832b', }, - 'color.orange80': { - '_original': { - '$value': '#5e2900', + 'color.orange40Hover': { + _original: { + $value: '#fa6800', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange80', - '$type': 'color', - '$value': '#5e2900', + id: 'color.orange40Hover', + $type: 'color', + $value: '#fa6800', }, - 'color.orange90': { - '_original': { - '$value': '#3e1a00', + 'color.orange50': { + _original: { + $value: '#eb6200', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange90', - '$type': 'color', - '$value': '#3e1a00', + id: 'color.orange50', + $type: 'color', + $value: '#eb6200', }, - 'color.orange100': { - '_original': { - '$value': '#231000', + 'color.orange50Hover': { + _original: { + $value: '#cc5500', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange100', - '$type': 'color', - '$value': '#231000', + id: 'color.orange50Hover', + $type: 'color', + $value: '#cc5500', }, - 'color.orange10Hover': { - '_original': { - '$value': '#ffe2cc', + 'color.orange60': { + _original: { + $value: '#ba4e00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange10Hover', - '$type': 'color', - '$value': '#ffe2cc', + id: 'color.orange60', + $type: 'color', + $value: '#ba4e00', }, - 'color.orange20Hover': { - '_original': { - '$value': '#ffc69e', + 'color.orange60Hover': { + _original: { + $value: '#9e4200', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange20Hover', - '$type': 'color', - '$value': '#ffc69e', + id: 'color.orange60Hover', + $type: 'color', + $value: '#9e4200', }, - 'color.orange30Hover': { - '_original': { - '$value': '#ff9d57', + 'color.orange70': { + _original: { + $value: '#8a3800', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange30Hover', - '$type': 'color', - '$value': '#ff9d57', + id: 'color.orange70', + $type: 'color', + $value: '#8a3800', }, - 'color.orange40Hover': { - '_original': { - '$value': '#fa6800', + 'color.orange70Hover': { + _original: { + $value: '#a84400', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange40Hover', - '$type': 'color', - '$value': '#fa6800', + id: 'color.orange70Hover', + $type: 'color', + $value: '#a84400', }, - 'color.orange50Hover': { - '_original': { - '$value': '#cc5500', + 'color.orange80': { + _original: { + $value: '#5e2900', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange50Hover', - '$type': 'color', - '$value': '#cc5500', + id: 'color.orange80', + $type: 'color', + $value: '#5e2900', }, - 'color.orange60Hover': { - '_original': { - '$value': '#9e4200', + 'color.orange80Hover': { + _original: { + $value: '#753300', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange60Hover', - '$type': 'color', - '$value': '#9e4200', + id: 'color.orange80Hover', + $type: 'color', + $value: '#753300', }, - 'color.orange70Hover': { - '_original': { - '$value': '#a84400', + 'color.orange90': { + _original: { + $value: '#3e1a00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange70Hover', - '$type': 'color', - '$value': '#a84400', + id: 'color.orange90', + $type: 'color', + $value: '#3e1a00', }, - 'color.orange80Hover': { - '_original': { - '$value': '#753300', + 'color.orange90Hover': { + _original: { + $value: '#522200', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange80Hover', - '$type': 'color', - '$value': '#753300', + id: 'color.orange90Hover', + $type: 'color', + $value: '#522200', }, - 'color.orange90Hover': { - '_original': { - '$value': '#522200', + 'color.orange100': { + _original: { + $value: '#231000', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.orange90Hover', - '$type': 'color', - '$value': '#522200', + id: 'color.orange100', + $type: 'color', + $value: '#231000', }, 'color.orange100Hover': { - '_original': { - '$value': '#421e00', + _original: { + $value: '#421e00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.orange100Hover', - '$type': 'color', - '$value': '#421e00', + $type: 'color', + $value: '#421e00', }, 'color.purple10': { - '_original': { - '$value': '#f6f2ff', + _original: { + $value: '#f6f2ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.purple10', - '$type': 'color', - '$value': '#f6f2ff', + $type: 'color', + $value: '#f6f2ff', }, - 'color.purple20': { - '_original': { - '$value': '#e8daff', + 'color.purple10Hover': { + _original: { + $value: '#ede5ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple20', - '$type': 'color', - '$value': '#e8daff', + id: 'color.purple10Hover', + $type: 'color', + $value: '#ede5ff', }, - 'color.purple30': { - '_original': { - '$value': '#d4bbff', + 'color.purple20': { + _original: { + $value: '#e8daff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple30', - '$type': 'color', - '$value': '#d4bbff', + id: 'color.purple20', + $type: 'color', + $value: '#e8daff', }, - 'color.purple40': { - '_original': { - '$value': '#be95ff', + 'color.purple20Hover': { + _original: { + $value: '#dcc7ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple40', - '$type': 'color', - '$value': '#be95ff', + id: 'color.purple20Hover', + $type: 'color', + $value: '#dcc7ff', }, - 'color.purple50': { - '_original': { - '$value': '#a56eff', + 'color.purple30': { + _original: { + $value: '#d4bbff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple50', - '$type': 'color', - '$value': '#a56eff', + id: 'color.purple30', + $type: 'color', + $value: '#d4bbff', }, - 'color.purple60': { - '_original': { - '$value': '#8a3ffc', + 'color.purple30Hover': { + _original: { + $value: '#c5a3ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple60', - '$type': 'color', - '$value': '#8a3ffc', + id: 'color.purple30Hover', + $type: 'color', + $value: '#c5a3ff', }, - 'color.purple70': { - '_original': { - '$value': '#6929c4', + 'color.purple40': { + _original: { + $value: '#be95ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple70', - '$type': 'color', - '$value': '#6929c4', + id: 'color.purple40', + $type: 'color', + $value: '#be95ff', }, - 'color.purple80': { - '_original': { - '$value': '#491d8b', + 'color.purple40Hover': { + _original: { + $value: '#ae7aff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple80', - '$type': 'color', - '$value': '#491d8b', + id: 'color.purple40Hover', + $type: 'color', + $value: '#ae7aff', }, - 'color.purple90': { - '_original': { - '$value': '#31135e', + 'color.purple50': { + _original: { + $value: '#a56eff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple90', - '$type': 'color', - '$value': '#31135e', + id: 'color.purple50', + $type: 'color', + $value: '#a56eff', }, - 'color.purple100': { - '_original': { - '$value': '#1c0f30', + 'color.purple50Hover': { + _original: { + $value: '#9352ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple100', - '$type': 'color', - '$value': '#1c0f30', + id: 'color.purple50Hover', + $type: 'color', + $value: '#9352ff', }, - 'color.purple10Hover': { - '_original': { - '$value': '#ede5ff', + 'color.purple60': { + _original: { + $value: '#8a3ffc', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple10Hover', - '$type': 'color', - '$value': '#ede5ff', + id: 'color.purple60', + $type: 'color', + $value: '#8a3ffc', }, - 'color.purple20Hover': { - '_original': { - '$value': '#dcc7ff', + 'color.purple60Hover': { + _original: { + $value: '#7822fb', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple20Hover', - '$type': 'color', - '$value': '#dcc7ff', + id: 'color.purple60Hover', + $type: 'color', + $value: '#7822fb', }, - 'color.purple30Hover': { - '_original': { - '$value': '#c5a3ff', + 'color.purple70': { + _original: { + $value: '#6929c4', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple30Hover', - '$type': 'color', - '$value': '#c5a3ff', + id: 'color.purple70', + $type: 'color', + $value: '#6929c4', }, - 'color.purple40Hover': { - '_original': { - '$value': '#ae7aff', + 'color.purple70Hover': { + _original: { + $value: '#7c3dd6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple40Hover', - '$type': 'color', - '$value': '#ae7aff', + id: 'color.purple70Hover', + $type: 'color', + $value: '#7c3dd6', }, - 'color.purple50Hover': { - '_original': { - '$value': '#9352ff', + 'color.purple80': { + _original: { + $value: '#491d8b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple50Hover', - '$type': 'color', - '$value': '#9352ff', + id: 'color.purple80', + $type: 'color', + $value: '#491d8b', }, - 'color.purple60Hover': { - '_original': { - '$value': '#7822fb', + 'color.purple80Hover': { + _original: { + $value: '#5b24ad', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple60Hover', - '$type': 'color', - '$value': '#7822fb', + id: 'color.purple80Hover', + $type: 'color', + $value: '#5b24ad', }, - 'color.purple70Hover': { - '_original': { - '$value': '#7c3dd6', + 'color.purple90': { + _original: { + $value: '#31135e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple70Hover', - '$type': 'color', - '$value': '#7c3dd6', + id: 'color.purple90', + $type: 'color', + $value: '#31135e', }, - 'color.purple80Hover': { - '_original': { - '$value': '#5b24ad', + 'color.purple90Hover': { + _original: { + $value: '#40197b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple80Hover', - '$type': 'color', - '$value': '#5b24ad', + id: 'color.purple90Hover', + $type: 'color', + $value: '#40197b', }, - 'color.purple90Hover': { - '_original': { - '$value': '#40197b', + 'color.purple100': { + _original: { + $value: '#1c0f30', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.purple90Hover', - '$type': 'color', - '$value': '#40197b', + id: 'color.purple100', + $type: 'color', + $value: '#1c0f30', }, 'color.purple100Hover': { - '_original': { - '$value': '#341c59', + _original: { + $value: '#341c59', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.purple100Hover', - '$type': 'color', - '$value': '#341c59', + $type: 'color', + $value: '#341c59', }, 'color.red10': { - '_original': { - '$value': '#fff1f1', + _original: { + $value: '#fff1f1', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.red10', - '$type': 'color', - '$value': '#fff1f1', + $type: 'color', + $value: '#fff1f1', }, - 'color.red20': { - '_original': { - '$value': '#ffd7d9', + 'color.red10Hover': { + _original: { + $value: '#ffe0e0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red20', - '$type': 'color', - '$value': '#ffd7d9', + id: 'color.red10Hover', + $type: 'color', + $value: '#ffe0e0', }, - 'color.red30': { - '_original': { - '$value': '#ffb3b8', + 'color.red20': { + _original: { + $value: '#ffd7d9', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red30', - '$type': 'color', - '$value': '#ffb3b8', + id: 'color.red20', + $type: 'color', + $value: '#ffd7d9', }, - 'color.red40': { - '_original': { - '$value': '#ff8389', + 'color.red20Hover': { + _original: { + $value: '#ffc2c5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red40', - '$type': 'color', - '$value': '#ff8389', + id: 'color.red20Hover', + $type: 'color', + $value: '#ffc2c5', }, - 'color.red50': { - '_original': { - '$value': '#fa4d56', + 'color.red30': { + _original: { + $value: '#ffb3b8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red50', - '$type': 'color', - '$value': '#fa4d56', + id: 'color.red30', + $type: 'color', + $value: '#ffb3b8', }, - 'color.red60': { - '_original': { - '$value': '#da1e28', + 'color.red30Hover': { + _original: { + $value: '#ff99a0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red60', - '$type': 'color', - '$value': '#da1e28', + id: 'color.red30Hover', + $type: 'color', + $value: '#ff99a0', }, - 'color.red70': { - '_original': { - '$value': '#a2191f', + 'color.red40': { + _original: { + $value: '#ff8389', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red70', - '$type': 'color', - '$value': '#a2191f', + id: 'color.red40', + $type: 'color', + $value: '#ff8389', }, - 'color.red80': { - '_original': { - '$value': '#750e13', + 'color.red40Hover': { + _original: { + $value: '#ff6168', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red80', - '$type': 'color', - '$value': '#750e13', + id: 'color.red40Hover', + $type: 'color', + $value: '#ff6168', }, - 'color.red90': { - '_original': { - '$value': '#520408', + 'color.red50': { + _original: { + $value: '#fa4d56', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red90', - '$type': 'color', - '$value': '#520408', + id: 'color.red50', + $type: 'color', + $value: '#fa4d56', }, - 'color.red100': { - '_original': { - '$value': '#2d0709', + 'color.red50Hover': { + _original: { + $value: '#ee0713', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red100', - '$type': 'color', - '$value': '#2d0709', + id: 'color.red50Hover', + $type: 'color', + $value: '#ee0713', }, - 'color.red10Hover': { - '_original': { - '$value': '#ffe0e0', + 'color.red60': { + _original: { + $value: '#da1e28', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red10Hover', - '$type': 'color', - '$value': '#ffe0e0', + id: 'color.red60', + $type: 'color', + $value: '#da1e28', }, - 'color.red20Hover': { - '_original': { - '$value': '#ffc2c5', + 'color.red60Hover': { + _original: { + $value: '#b81922', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red20Hover', - '$type': 'color', - '$value': '#ffc2c5', + id: 'color.red60Hover', + $type: 'color', + $value: '#b81922', }, - 'color.red30Hover': { - '_original': { - '$value': '#ff99a0', + 'color.red70': { + _original: { + $value: '#a2191f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red30Hover', - '$type': 'color', - '$value': '#ff99a0', + id: 'color.red70', + $type: 'color', + $value: '#a2191f', }, - 'color.red40Hover': { - '_original': { - '$value': '#ff6168', + 'color.red70Hover': { + _original: { + $value: '#c21e25', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red40Hover', - '$type': 'color', - '$value': '#ff6168', + id: 'color.red70Hover', + $type: 'color', + $value: '#c21e25', }, - 'color.red50Hover': { - '_original': { - '$value': '#ee0713', + 'color.red80': { + _original: { + $value: '#750e13', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red50Hover', - '$type': 'color', - '$value': '#ee0713', + id: 'color.red80', + $type: 'color', + $value: '#750e13', }, - 'color.red60Hover': { - '_original': { - '$value': '#b81922', + 'color.red80Hover': { + _original: { + $value: '#921118', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red60Hover', - '$type': 'color', - '$value': '#b81922', + id: 'color.red80Hover', + $type: 'color', + $value: '#921118', }, - 'color.red70Hover': { - '_original': { - '$value': '#c21e25', + 'color.red90': { + _original: { + $value: '#520408', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red70Hover', - '$type': 'color', - '$value': '#c21e25', + id: 'color.red90', + $type: 'color', + $value: '#520408', }, - 'color.red80Hover': { - '_original': { - '$value': '#921118', + 'color.red90Hover': { + _original: { + $value: '#66050a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red80Hover', - '$type': 'color', - '$value': '#921118', + id: 'color.red90Hover', + $type: 'color', + $value: '#66050a', }, - 'color.red90Hover': { - '_original': { - '$value': '#66050a', + 'color.red100': { + _original: { + $value: '#2d0709', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.red90Hover', - '$type': 'color', - '$value': '#66050a', + id: 'color.red100', + $type: 'color', + $value: '#2d0709', }, 'color.red100Hover': { - '_original': { - '$value': '#540d11', + _original: { + $value: '#540d11', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.red100Hover', - '$type': 'color', - '$value': '#540d11', + $type: 'color', + $value: '#540d11', }, 'color.teal10': { - '_original': { - '$value': '#d9fbfb', + _original: { + $value: '#d9fbfb', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.teal10', - '$type': 'color', - '$value': '#d9fbfb', + $type: 'color', + $value: '#d9fbfb', }, - 'color.teal20': { - '_original': { - '$value': '#9ef0f0', + 'color.teal10Hover': { + _original: { + $value: '#acf6f6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal20', - '$type': 'color', - '$value': '#9ef0f0', + id: 'color.teal10Hover', + $type: 'color', + $value: '#acf6f6', }, - 'color.teal30': { - '_original': { - '$value': '#3ddbd9', + 'color.teal20': { + _original: { + $value: '#9ef0f0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal30', - '$type': 'color', - '$value': '#3ddbd9', + id: 'color.teal20', + $type: 'color', + $value: '#9ef0f0', }, - 'color.teal40': { - '_original': { - '$value': '#08bdba', + 'color.teal20Hover': { + _original: { + $value: '#57e5e5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal40', - '$type': 'color', - '$value': '#08bdba', + id: 'color.teal20Hover', + $type: 'color', + $value: '#57e5e5', }, - 'color.teal50': { - '_original': { - '$value': '#009d9a', + 'color.teal30': { + _original: { + $value: '#3ddbd9', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal50', - '$type': 'color', - '$value': '#009d9a', + id: 'color.teal30', + $type: 'color', + $value: '#3ddbd9', }, - 'color.teal60': { - '_original': { - '$value': '#007d79', + 'color.teal30Hover': { + _original: { + $value: '#25cac8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal60', - '$type': 'color', - '$value': '#007d79', + id: 'color.teal30Hover', + $type: 'color', + $value: '#25cac8', }, - 'color.teal70': { - '_original': { - '$value': '#005d5d', + 'color.teal40': { + _original: { + $value: '#08bdba', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal70', - '$type': 'color', - '$value': '#005d5d', + id: 'color.teal40', + $type: 'color', + $value: '#08bdba', }, - 'color.teal80': { - '_original': { - '$value': '#004144', + 'color.teal40Hover': { + _original: { + $value: '#07aba9', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal80', - '$type': 'color', - '$value': '#004144', + id: 'color.teal40Hover', + $type: 'color', + $value: '#07aba9', }, - 'color.teal90': { - '_original': { - '$value': '#022b30', + 'color.teal50': { + _original: { + $value: '#009d9a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal90', - '$type': 'color', - '$value': '#022b30', + id: 'color.teal50', + $type: 'color', + $value: '#009d9a', }, - 'color.teal100': { - '_original': { - '$value': '#081a1c', + 'color.teal50Hover': { + _original: { + $value: '#008a87', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal100', - '$type': 'color', - '$value': '#081a1c', + id: 'color.teal50Hover', + $type: 'color', + $value: '#008a87', }, - 'color.teal10Hover': { - '_original': { - '$value': '#acf6f6', + 'color.teal60': { + _original: { + $value: '#007d79', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal10Hover', - '$type': 'color', - '$value': '#acf6f6', + id: 'color.teal60', + $type: 'color', + $value: '#007d79', }, - 'color.teal20Hover': { - '_original': { - '$value': '#57e5e5', + 'color.teal60Hover': { + _original: { + $value: '#006b68', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal20Hover', - '$type': 'color', - '$value': '#57e5e5', + id: 'color.teal60Hover', + $type: 'color', + $value: '#006b68', }, - 'color.teal30Hover': { - '_original': { - '$value': '#25cac8', + 'color.teal70': { + _original: { + $value: '#005d5d', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal30Hover', - '$type': 'color', - '$value': '#25cac8', + id: 'color.teal70', + $type: 'color', + $value: '#005d5d', }, - 'color.teal40Hover': { - '_original': { - '$value': '#07aba9', + 'color.teal70Hover': { + _original: { + $value: '#007070', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal40Hover', - '$type': 'color', - '$value': '#07aba9', + id: 'color.teal70Hover', + $type: 'color', + $value: '#007070', }, - 'color.teal50Hover': { - '_original': { - '$value': '#008a87', + 'color.teal80': { + _original: { + $value: '#004144', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal50Hover', - '$type': 'color', - '$value': '#008a87', + id: 'color.teal80', + $type: 'color', + $value: '#004144', }, - 'color.teal60Hover': { - '_original': { - '$value': '#006b68', + 'color.teal80Hover': { + _original: { + $value: '#005357', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal60Hover', - '$type': 'color', - '$value': '#006b68', + id: 'color.teal80Hover', + $type: 'color', + $value: '#005357', }, - 'color.teal70Hover': { - '_original': { - '$value': '#007070', + 'color.teal90': { + _original: { + $value: '#022b30', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal70Hover', - '$type': 'color', - '$value': '#007070', + id: 'color.teal90', + $type: 'color', + $value: '#022b30', }, - 'color.teal80Hover': { - '_original': { - '$value': '#005357', + 'color.teal90Hover': { + _original: { + $value: '#033940', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal80Hover', - '$type': 'color', - '$value': '#005357', + id: 'color.teal90Hover', + $type: 'color', + $value: '#033940', }, - 'color.teal90Hover': { - '_original': { - '$value': '#033940', + 'color.teal100': { + _original: { + $value: '#081a1c', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.teal90Hover', - '$type': 'color', - '$value': '#033940', + id: 'color.teal100', + $type: 'color', + $value: '#081a1c', }, 'color.teal100Hover': { - '_original': { - '$value': '#0f3034', + _original: { + $value: '#0f3034', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.teal100Hover', - '$type': 'color', - '$value': '#0f3034', + $type: 'color', + $value: '#0f3034', }, 'color.warmGray10': { - '_original': { - '$value': '#f7f3f2', + _original: { + $value: '#f7f3f2', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.warmGray10', - '$type': 'color', - '$value': '#f7f3f2', + $type: 'color', + $value: '#f7f3f2', }, - 'color.warmGray20': { - '_original': { - '$value': '#e5e0df', + 'color.warmGray10Hover': { + _original: { + $value: '#f0e8e6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray20', - '$type': 'color', - '$value': '#e5e0df', + id: 'color.warmGray10Hover', + $type: 'color', + $value: '#f0e8e6', }, - 'color.warmGray30': { - '_original': { - '$value': '#cac5c4', + 'color.warmGray20': { + _original: { + $value: '#e5e0df', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray30', - '$type': 'color', - '$value': '#cac5c4', + id: 'color.warmGray20', + $type: 'color', + $value: '#e5e0df', }, - 'color.warmGray40': { - '_original': { - '$value': '#ada8a8', + 'color.warmGray20Hover': { + _original: { + $value: '#d8d0cf', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray40', - '$type': 'color', - '$value': '#ada8a8', + id: 'color.warmGray20Hover', + $type: 'color', + $value: '#d8d0cf', }, - 'color.warmGray50': { - '_original': { - '$value': '#8f8b8b', + 'color.warmGray30': { + _original: { + $value: '#cac5c4', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray50', - '$type': 'color', - '$value': '#8f8b8b', + id: 'color.warmGray30', + $type: 'color', + $value: '#cac5c4', }, - 'color.warmGray60': { - '_original': { - '$value': '#726e6e', + 'color.warmGray30Hover': { + _original: { + $value: '#b9b3b1', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray60', - '$type': 'color', - '$value': '#726e6e', + id: 'color.warmGray30Hover', + $type: 'color', + $value: '#b9b3b1', }, - 'color.warmGray70': { - '_original': { - '$value': '#565151', + 'color.warmGray40': { + _original: { + $value: '#ada8a8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray70', - '$type': 'color', - '$value': '#565151', + id: 'color.warmGray40', + $type: 'color', + $value: '#ada8a8', }, - 'color.warmGray80': { - '_original': { - '$value': '#3c3838', + 'color.warmGray40Hover': { + _original: { + $value: '#9c9696', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray80', - '$type': 'color', - '$value': '#3c3838', + id: 'color.warmGray40Hover', + $type: 'color', + $value: '#9c9696', }, - 'color.warmGray90': { - '_original': { - '$value': '#272525', + 'color.warmGray50': { + _original: { + $value: '#8f8b8b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray90', - '$type': 'color', - '$value': '#272525', + id: 'color.warmGray50', + $type: 'color', + $value: '#8f8b8b', }, - 'color.warmGray100': { - '_original': { - '$value': '#171414', + 'color.warmGray50Hover': { + _original: { + $value: '#7f7b7b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray100', - '$type': 'color', - '$value': '#171414', + id: 'color.warmGray50Hover', + $type: 'color', + $value: '#7f7b7b', }, - 'color.warmGray10Hover': { - '_original': { - '$value': '#f0e8e6', + 'color.warmGray60': { + _original: { + $value: '#726e6e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray10Hover', - '$type': 'color', - '$value': '#f0e8e6', + id: 'color.warmGray60', + $type: 'color', + $value: '#726e6e', }, - 'color.warmGray20Hover': { - '_original': { - '$value': '#d8d0cf', + 'color.warmGray60Hover': { + _original: { + $value: '#605d5d', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray20Hover', - '$type': 'color', - '$value': '#d8d0cf', + id: 'color.warmGray60Hover', + $type: 'color', + $value: '#605d5d', }, - 'color.warmGray30Hover': { - '_original': { - '$value': '#b9b3b1', + 'color.warmGray70': { + _original: { + $value: '#565151', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray30Hover', - '$type': 'color', - '$value': '#b9b3b1', + id: 'color.warmGray70', + $type: 'color', + $value: '#565151', }, - 'color.warmGray40Hover': { - '_original': { - '$value': '#9c9696', + 'color.warmGray70Hover': { + _original: { + $value: '#696363', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray40Hover', - '$type': 'color', - '$value': '#9c9696', + id: 'color.warmGray70Hover', + $type: 'color', + $value: '#696363', }, - 'color.warmGray50Hover': { - '_original': { - '$value': '#7f7b7b', + 'color.warmGray80': { + _original: { + $value: '#3c3838', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray50Hover', - '$type': 'color', - '$value': '#7f7b7b', + id: 'color.warmGray80', + $type: 'color', + $value: '#3c3838', }, - 'color.warmGray60Hover': { - '_original': { - '$value': '#605d5d', + 'color.warmGray80Hover': { + _original: { + $value: '#4c4848', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray60Hover', - '$type': 'color', - '$value': '#605d5d', + id: 'color.warmGray80Hover', + $type: 'color', + $value: '#4c4848', }, - 'color.warmGray70Hover': { - '_original': { - '$value': '#696363', + 'color.warmGray90': { + _original: { + $value: '#272525', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray70Hover', - '$type': 'color', - '$value': '#696363', + id: 'color.warmGray90', + $type: 'color', + $value: '#272525', }, - 'color.warmGray80Hover': { - '_original': { - '$value': '#4c4848', + 'color.warmGray90Hover': { + _original: { + $value: '#343232', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray80Hover', - '$type': 'color', - '$value': '#4c4848', + id: 'color.warmGray90Hover', + $type: 'color', + $value: '#343232', }, - 'color.warmGray90Hover': { - '_original': { - '$value': '#343232', + 'color.warmGray100': { + _original: { + $value: '#171414', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.warmGray90Hover', - '$type': 'color', - '$value': '#343232', + id: 'color.warmGray100', + $type: 'color', + $value: '#171414', }, 'color.warmGray100Hover': { - '_original': { - '$value': '#2c2626', + _original: { + $value: '#2c2626', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.warmGray100Hover', - '$type': 'color', - '$value': '#2c2626', + $type: 'color', + $value: '#2c2626', }, 'color.white': { - '_original': { - '$value': '#ffffff', + _original: { + $value: '#ffffff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.white', - '$type': 'color', - '$value': '#ffffff', + $type: 'color', + $value: '#ffffff', }, 'color.white0': { - '_original': { - '$value': '#ffffff', + _original: { + $value: '#ffffff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.white0', - '$type': 'color', - '$value': '#ffffff', + $type: 'color', + $value: '#ffffff', }, 'color.whiteHover': { - '_original': { - '$value': '#e8e8e8', + _original: { + $value: '#e8e8e8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.whiteHover', - '$type': 'color', - '$value': '#e8e8e8', + $type: 'color', + $value: '#e8e8e8', }, 'color.yellow': { - '_original': { - '$value': '#f1c21b', + _original: { + $value: '#f1c21b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.yellow', - '$type': 'color', - '$value': '#f1c21b', + $type: 'color', + $value: '#f1c21b', }, 'color.yellow10': { - '_original': { - '$value': '#fcf4d6', + _original: { + $value: '#fcf4d6', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.yellow10', - '$type': 'color', - '$value': '#fcf4d6', + $type: 'color', + $value: '#fcf4d6', }, - 'color.yellow20': { - '_original': { - '$value': '#fddc69', + 'color.yellow10Hover': { + _original: { + $value: '#f8e6a0', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow20', - '$type': 'color', - '$value': '#fddc69', + id: 'color.yellow10Hover', + $type: 'color', + $value: '#f8e6a0', }, - 'color.yellow30': { - '_original': { - '$value': '#f1c21b', + 'color.yellow20': { + _original: { + $value: '#fddc69', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow30', - '$type': 'color', - '$value': '#f1c21b', + id: 'color.yellow20', + $type: 'color', + $value: '#fddc69', }, - 'color.yellow40': { - '_original': { - '$value': '#d2a106', + 'color.yellow20Hover': { + _original: { + $value: '#fccd27', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow40', - '$type': 'color', - '$value': '#d2a106', + id: 'color.yellow20Hover', + $type: 'color', + $value: '#fccd27', }, - 'color.yellow50': { - '_original': { - '$value': '#b28600', + 'color.yellow30': { + _original: { + $value: '#f1c21b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow50', - '$type': 'color', - '$value': '#b28600', + id: 'color.yellow30', + $type: 'color', + $value: '#f1c21b', }, - 'color.yellow60': { - '_original': { - '$value': '#8e6a00', + 'color.yellow30Hover': { + _original: { + $value: '#ddb00e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow60', - '$type': 'color', - '$value': '#8e6a00', + id: 'color.yellow30Hover', + $type: 'color', + $value: '#ddb00e', }, - 'color.yellow70': { - '_original': { - '$value': '#684e00', + 'color.yellow40': { + _original: { + $value: '#d2a106', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow70', - '$type': 'color', - '$value': '#684e00', + id: 'color.yellow40', + $type: 'color', + $value: '#d2a106', }, - 'color.yellow80': { - '_original': { - '$value': '#483700', + 'color.yellow40Hover': { + _original: { + $value: '#bc9005', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow80', - '$type': 'color', - '$value': '#483700', + id: 'color.yellow40Hover', + $type: 'color', + $value: '#bc9005', }, - 'color.yellow90': { - '_original': { - '$value': '#302400', + 'color.yellow50': { + _original: { + $value: '#b28600', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow90', - '$type': 'color', - '$value': '#302400', + id: 'color.yellow50', + $type: 'color', + $value: '#b28600', }, - 'color.yellow100': { - '_original': { - '$value': '#1c1500', + 'color.yellow50Hover': { + _original: { + $value: '#9e7700', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow100', - '$type': 'color', - '$value': '#1c1500', + id: 'color.yellow50Hover', + $type: 'color', + $value: '#9e7700', }, - 'color.yellow10Hover': { - '_original': { - '$value': '#f8e6a0', + 'color.yellow60': { + _original: { + $value: '#8e6a00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow10Hover', - '$type': 'color', - '$value': '#f8e6a0', + id: 'color.yellow60', + $type: 'color', + $value: '#8e6a00', }, - 'color.yellow20Hover': { - '_original': { - '$value': '#fccd27', + 'color.yellow60Hover': { + _original: { + $value: '#755800', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow20Hover', - '$type': 'color', - '$value': '#fccd27', + id: 'color.yellow60Hover', + $type: 'color', + $value: '#755800', }, - 'color.yellow30Hover': { - '_original': { - '$value': '#ddb00e', + 'color.yellow70': { + _original: { + $value: '#684e00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow30Hover', - '$type': 'color', - '$value': '#ddb00e', + id: 'color.yellow70', + $type: 'color', + $value: '#684e00', }, - 'color.yellow40Hover': { - '_original': { - '$value': '#bc9005', + 'color.yellow70Hover': { + _original: { + $value: '#806000', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow40Hover', - '$type': 'color', - '$value': '#bc9005', + id: 'color.yellow70Hover', + $type: 'color', + $value: '#806000', }, - 'color.yellow50Hover': { - '_original': { - '$value': '#9e7700', + 'color.yellow80': { + _original: { + $value: '#483700', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow50Hover', - '$type': 'color', - '$value': '#9e7700', + id: 'color.yellow80', + $type: 'color', + $value: '#483700', }, - 'color.yellow60Hover': { - '_original': { - '$value': '#755800', + 'color.yellow80Hover': { + _original: { + $value: '#5c4600', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow60Hover', - '$type': 'color', - '$value': '#755800', + id: 'color.yellow80Hover', + $type: 'color', + $value: '#5c4600', }, - 'color.yellow70Hover': { - '_original': { - '$value': '#806000', + 'color.yellow90': { + _original: { + $value: '#302400', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow70Hover', - '$type': 'color', - '$value': '#806000', + id: 'color.yellow90', + $type: 'color', + $value: '#302400', }, - 'color.yellow80Hover': { - '_original': { - '$value': '#5c4600', + 'color.yellow90Hover': { + _original: { + $value: '#3d2e00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow80Hover', - '$type': 'color', - '$value': '#5c4600', + id: 'color.yellow90Hover', + $type: 'color', + $value: '#3d2e00', }, - 'color.yellow90Hover': { - '_original': { - '$value': '#3d2e00', + 'color.yellow100': { + _original: { + $value: '#1c1500', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, - id: 'color.yellow90Hover', - '$type': 'color', - '$value': '#3d2e00', + id: 'color.yellow100', + $type: 'color', + $value: '#1c1500', }, 'color.yellow100Hover': { - '_original': { - '$value': '#332600', + _original: { + $value: '#332600', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'color', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'color', }, id: 'color.yellow100Hover', - '$type': 'color', - '$value': '#332600', + $type: 'color', + $value: '#332600', }, - 'icon.3D-Cursor': { - '_original': { - '$value': '/icon/3D-Cursor.svg', + 'easing.easeIn': { + _original: { + $value: [0.25, 0, 1, 1], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-Cursor', - '$type': 'link', - '$value': '/icon/3D-Cursor.svg', + id: 'easing.easeIn', + $type: 'cubicBezier', + $value: [0.25, 0, 1, 1], }, - 'icon.3D-cursor--alt': { - '_original': { - '$value': '/icon/3D-cursor--alt.svg', + 'easing.easeOut': { + _original: { + $value: [0, 0, 0.25, 1], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-cursor--alt', - '$type': 'link', - '$value': '/icon/3D-cursor--alt.svg', + id: 'easing.easeOut', + $type: 'cubicBezier', + $value: [0, 0, 0.25, 1], }, - 'icon.3D-curve--auto-colon': { - '_original': { - '$value': '/icon/3D-curve--auto-colon.svg', + 'easing.entrance': { + _original: { + $value: [0, 0, 0.38, 0.9], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-curve--auto-colon', - '$type': 'link', - '$value': '/icon/3D-curve--auto-colon.svg', + id: 'easing.entrance', + $type: 'cubicBezier', + $value: [0, 0, 0.38, 0.9], }, - 'icon.3D-curve--auto-vessels': { - '_original': { - '$value': '/icon/3D-curve--auto-vessels.svg', + 'easing.entrance--expressive': { + _original: { + $value: [0, 0, 0.3, 1], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-curve--auto-vessels', - '$type': 'link', - '$value': '/icon/3D-curve--auto-vessels.svg', + id: 'easing.entrance--expressive', + $type: 'cubicBezier', + $value: [0, 0, 0.3, 1], }, - 'icon.3D-curve--manual': { - '_original': { - '$value': '/icon/3D-curve--manual.svg', + 'easing.exit': { + _original: { + $value: [0.2, 0, 1, 0.9], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-curve--manual', - '$type': 'link', - '$value': '/icon/3D-curve--manual.svg', + id: 'easing.exit', + $type: 'cubicBezier', + $value: [0.2, 0, 1, 0.9], }, - 'icon.3D-iCa': { - '_original': { - '$value': '/icon/3D-iCa.svg', + 'easing.exit--expressive': { + _original: { + $value: [0.4, 0.14, 1, 1], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-iCa', - '$type': 'link', - '$value': '/icon/3D-iCa.svg', + id: 'easing.exit--expressive', + $type: 'cubicBezier', + $value: [0.4, 0.14, 1, 1], }, - 'icon.3D-MPR-Toggle': { - '_original': { - '$value': '/icon/3D-MPR-Toggle.svg', + 'easing.standard': { + _original: { + $value: [0.5, 0, 0.1, 1], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-MPR-Toggle', - '$type': 'link', - '$value': '/icon/3D-MPR-Toggle.svg', + id: 'easing.standard', + $type: 'cubicBezier', + $value: [0.5, 0, 0.1, 1], }, - 'icon.3D-print-mesh': { - '_original': { - '$value': '/icon/3D-print-mesh.svg', + 'easing.standard--expressive': { + _original: { + $value: [0.4, 0.14, 0.3, 1], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'easing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'cubicBezier', }, - id: 'icon.3D-print-mesh', - '$type': 'link', - '$value': '/icon/3D-print-mesh.svg', + id: 'easing.standard--expressive', + $type: 'cubicBezier', + $value: [0.4, 0.14, 0.3, 1], }, - 'icon.3D-software': { - '_original': { - '$value': '/icon/3D-software.svg', + 'font.family.mono': { + _original: { + $value: ['IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier', 'monospace'], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'fontFamily', }, - id: 'icon.3D-software', - '$type': 'link', - '$value': '/icon/3D-software.svg', + id: 'font.family.mono', + $type: 'fontFamily', + $value: ['IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier', 'monospace'], }, - 'icon.3rd-party-connected': { - '_original': { - '$value': '/icon/3rd-party-connected.svg', + 'font.family.sans': { + _original: { + $value: ['IBM Plex Sans', 'Helvetica Neue', 'Arial', 'sans-serif'], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'fontFamily', }, - id: 'icon.3rd-party-connected', - '$type': 'link', - '$value': '/icon/3rd-party-connected.svg', + id: 'font.family.sans', + $type: 'fontFamily', + $value: ['IBM Plex Sans', 'Helvetica Neue', 'Arial', 'sans-serif'], }, - 'icon.4K': { - '_original': { - '$value': '/icon/4K.svg', + 'font.family.sansCondensed': { + _original: { + $value: ['IBM Plex Sans Condensed', 'Helvetica Neue', 'Arial', 'sans-serif'], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'fontFamily', }, - id: 'icon.4K', - '$type': 'link', - '$value': '/icon/4K.svg', + id: 'font.family.sansCondensed', + $type: 'fontFamily', + $value: ['IBM Plex Sans Condensed', 'Helvetica Neue', 'Arial', 'sans-serif'], }, - 'icon.4K--filled': { - '_original': { - '$value': '/icon/4K--filled.svg', + 'font.family.sansHebrew': { + _original: { + $value: ['IBM Plex Sans Hebrew', 'Helvetica Hebrew', 'Arial Hebrew', 'sans-serif'], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'fontFamily', }, - id: 'icon.4K--filled', - '$type': 'link', - '$value': '/icon/4K--filled.svg', + id: 'font.family.sansHebrew', + $type: 'fontFamily', + $value: ['IBM Plex Sans Hebrew', 'Helvetica Hebrew', 'Arial Hebrew', 'sans-serif'], }, - 'icon.accessibility': { - '_original': { - '$value': '/icon/accessibility.svg', + 'font.family.serif': { + _original: { + $value: ['IBM Plex Serif', 'Georgia', 'Times', 'serif'], }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'fontFamily', }, - id: 'icon.accessibility', - '$type': 'link', - '$value': '/icon/accessibility.svg', + id: 'font.family.serif', + $type: 'fontFamily', + $value: ['IBM Plex Serif', 'Georgia', 'Times', 'serif'], }, - 'icon.accessibility--alt': { - '_original': { - '$value': '/icon/accessibility--alt.svg', + 'font.size.body01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accessibility--alt', - '$type': 'link', - '$value': '/icon/accessibility--alt.svg', + id: 'font.size.body01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.accessibility--color': { - '_original': { - '$value': '/icon/accessibility--color.svg', + 'font.size.body02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accessibility--color', - '$type': 'link', - '$value': '/icon/accessibility--color.svg', + id: 'font.size.body02', + $type: 'dimension', + $value: '1rem', }, - 'icon.accessibility--color--filled': { - '_original': { - '$value': '/icon/accessibility--color--filled.svg', + 'font.size.bodyCompact01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accessibility--color--filled', - '$type': 'link', - '$value': '/icon/accessibility--color--filled.svg', + id: 'font.size.bodyCompact01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.account': { - '_original': { - '$value': '/icon/account.svg', + 'font.size.bodyCompact02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.account', - '$type': 'link', - '$value': '/icon/account.svg', + id: 'font.size.bodyCompact02', + $type: 'dimension', + $value: '1rem', }, - 'icon.accumulation--ice': { - '_original': { - '$value': '/icon/accumulation--ice.svg', + 'font.size.bodyLong01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accumulation--ice', - '$type': 'link', - '$value': '/icon/accumulation--ice.svg', + id: 'font.size.bodyLong01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.accumulation--precipitation': { - '_original': { - '$value': '/icon/accumulation--precipitation.svg', + 'font.size.bodyLong02': { + _original: { + $value: '1rem', + }, + _group: { + id: 'font.size', + $extensions: { + requiredModes: [], + }, + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', + }, + id: 'font.size.bodyLong02', + $type: 'dimension', + $value: '1rem', + }, + 'font.size.bodyShort01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accumulation--precipitation', - '$type': 'link', - '$value': '/icon/accumulation--precipitation.svg', + id: 'font.size.bodyShort01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.accumulation--rain': { - '_original': { - '$value': '/icon/accumulation--rain.svg', + 'font.size.bodyShort02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accumulation--rain', - '$type': 'link', - '$value': '/icon/accumulation--rain.svg', + id: 'font.size.bodyShort02', + $type: 'dimension', + $value: '1rem', }, - 'icon.accumulation--snow': { - '_original': { - '$value': '/icon/accumulation--snow.svg', + 'font.size.caption01': { + _original: { + $value: '0.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.accumulation--snow', - '$type': 'link', - '$value': '/icon/accumulation--snow.svg', + id: 'font.size.caption01', + $type: 'dimension', + $value: '0.75rem', }, - 'icon.activity': { - '_original': { - '$value': '/icon/activity.svg', + 'font.size.caption02': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.activity', - '$type': 'link', - '$value': '/icon/activity.svg', + id: 'font.size.caption02', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.add': { - '_original': { - '$value': '/icon/add.svg', + 'font.size.code01': { + _original: { + $value: '0.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.add', - '$type': 'link', - '$value': '/icon/add.svg', + id: 'font.size.code01', + $type: 'dimension', + $value: '0.75rem', }, - 'icon.add--alt': { - '_original': { - '$value': '/icon/add--alt.svg', + 'font.size.code02': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.add--alt', - '$type': 'link', - '$value': '/icon/add--alt.svg', + id: 'font.size.code02', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.add--filled': { - '_original': { - '$value': '/icon/add--filled.svg', + 'font.size.display01': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.add--filled', - '$type': 'link', - '$value': '/icon/add--filled.svg', + id: 'font.size.display01', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.add-comment': { - '_original': { - '$value': '/icon/add-comment.svg', + 'font.size.display02': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.add-comment', - '$type': 'link', - '$value': '/icon/add-comment.svg', + id: 'font.size.display02', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.agriculture-analytics': { - '_original': { - '$value': '/icon/agriculture-analytics.svg', + 'font.size.display03': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.agriculture-analytics', - '$type': 'link', - '$value': '/icon/agriculture-analytics.svg', + id: 'font.size.display03', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.ai-results': { - '_original': { - '$value': '/icon/ai-results.svg', + 'font.size.display04': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-results', - '$type': 'link', - '$value': '/icon/ai-results.svg', + id: 'font.size.display04', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.ai-results--high': { - '_original': { - '$value': '/icon/ai-results--high.svg', + 'font.size.expressiveHeading01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-results--high', - '$type': 'link', - '$value': '/icon/ai-results--high.svg', + id: 'font.size.expressiveHeading01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.ai-results--low': { - '_original': { - '$value': '/icon/ai-results--low.svg', + 'font.size.expressiveHeading02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-results--low', - '$type': 'link', - '$value': '/icon/ai-results--low.svg', + id: 'font.size.expressiveHeading02', + $type: 'dimension', + $value: '1rem', }, - 'icon.ai-results--medium': { - '_original': { - '$value': '/icon/ai-results--medium.svg', + 'font.size.expressiveHeading03': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-results--medium', - '$type': 'link', - '$value': '/icon/ai-results--medium.svg', + id: 'font.size.expressiveHeading03', + $type: 'dimension', + $value: '1.25rem', }, - 'icon.ai-results--urgent': { - '_original': { - '$value': '/icon/ai-results--urgent.svg', + 'font.size.expressiveHeading04': { + _original: { + $value: '1.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-results--urgent', - '$type': 'link', - '$value': '/icon/ai-results--urgent.svg', + id: 'font.size.expressiveHeading04', + $type: 'dimension', + $value: '1.75rem', }, - 'icon.ai-results--very-high': { - '_original': { - '$value': '/icon/ai-results--very-high.svg', + 'font.size.expressiveHeading05': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-results--very-high', - '$type': 'link', - '$value': '/icon/ai-results--very-high.svg', + id: 'font.size.expressiveHeading05', + $type: 'dimension', + $value: '2rem', }, - 'icon.ai-status': { - '_original': { - '$value': '/icon/ai-status.svg', + 'font.size.expressiveHeading06': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-status', - '$type': 'link', - '$value': '/icon/ai-status.svg', + id: 'font.size.expressiveHeading06', + $type: 'dimension', + $value: '2rem', }, - 'icon.ai-status--complete': { - '_original': { - '$value': '/icon/ai-status--complete.svg', + 'font.size.expressiveParagraph01': { + _original: { + $value: '1.5rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-status--complete', - '$type': 'link', - '$value': '/icon/ai-status--complete.svg', + id: 'font.size.expressiveParagraph01', + $type: 'dimension', + $value: '1.5rem', }, - 'icon.ai-status--failed': { - '_original': { - '$value': '/icon/ai-status--failed.svg', + 'font.size.fluidDisplay01': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-status--failed', - '$type': 'link', - '$value': '/icon/ai-status--failed.svg', + id: 'font.size.fluidDisplay01', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.ai-status--in-progress': { - '_original': { - '$value': '/icon/ai-status--in-progress.svg', + 'font.size.fluidDisplay02': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-status--in-progress', - '$type': 'link', - '$value': '/icon/ai-status--in-progress.svg', + id: 'font.size.fluidDisplay02', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.ai-status--queued': { - '_original': { - '$value': '/icon/ai-status--queued.svg', + 'font.size.fluidDisplay03': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-status--queued', - '$type': 'link', - '$value': '/icon/ai-status--queued.svg', + id: 'font.size.fluidDisplay03', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.ai-status--rejected': { - '_original': { - '$value': '/icon/ai-status--rejected.svg', + 'font.size.fluidDisplay04': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.ai-status--rejected', - '$type': 'link', - '$value': '/icon/ai-status--rejected.svg', + id: 'font.size.fluidDisplay04', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.airline--digital-gate': { - '_original': { - '$value': '/icon/airline--digital-gate.svg', + 'font.size.fluidHeading03': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airline--digital-gate', - '$type': 'link', - '$value': '/icon/airline--digital-gate.svg', + id: 'font.size.fluidHeading03', + $type: 'dimension', + $value: '1.25rem', }, - 'icon.airline--manage-gates': { - '_original': { - '$value': '/icon/airline--manage-gates.svg', + 'font.size.fluidHeading04': { + _original: { + $value: '1.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airline--manage-gates', - '$type': 'link', - '$value': '/icon/airline--manage-gates.svg', + id: 'font.size.fluidHeading04', + $type: 'dimension', + $value: '1.75rem', }, - 'icon.airline--passenger-care': { - '_original': { - '$value': '/icon/airline--passenger-care.svg', + 'font.size.fluidHeading05': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airline--passenger-care', - '$type': 'link', - '$value': '/icon/airline--passenger-care.svg', + id: 'font.size.fluidHeading05', + $type: 'dimension', + $value: '2rem', }, - 'icon.airline--rapid-board': { - '_original': { - '$value': '/icon/airline--rapid-board.svg', + 'font.size.fluidHeading06': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airline--rapid-board', - '$type': 'link', - '$value': '/icon/airline--rapid-board.svg', + id: 'font.size.fluidHeading06', + $type: 'dimension', + $value: '2rem', }, - 'icon.airplay': { - '_original': { - '$value': '/icon/airplay.svg', + 'font.size.fluidParagraph01': { + _original: { + $value: '1.5rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airplay', - '$type': 'link', - '$value': '/icon/airplay.svg', + id: 'font.size.fluidParagraph01', + $type: 'dimension', + $value: '1.5rem', }, - 'icon.airplay--filled': { - '_original': { - '$value': '/icon/airplay--filled.svg', + 'font.size.fluidQuotation01': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airplay--filled', - '$type': 'link', - '$value': '/icon/airplay--filled.svg', + id: 'font.size.fluidQuotation01', + $type: 'dimension', + $value: '1.25rem', }, - 'icon.airport--01': { - '_original': { - '$value': '/icon/airport--01.svg', + 'font.size.fluidQuotation02': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airport--01', - '$type': 'link', - '$value': '/icon/airport--01.svg', + id: 'font.size.fluidQuotation02', + $type: 'dimension', + $value: '2rem', }, - 'icon.airport--02': { - '_original': { - '$value': '/icon/airport--02.svg', + 'font.size.heading01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airport--02', - '$type': 'link', - '$value': '/icon/airport--02.svg', + id: 'font.size.heading01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.airport-location': { - '_original': { - '$value': '/icon/airport-location.svg', + 'font.size.heading02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.airport-location', - '$type': 'link', - '$value': '/icon/airport-location.svg', + id: 'font.size.heading02', + $type: 'dimension', + $value: '1rem', }, - 'icon.alarm': { - '_original': { - '$value': '/icon/alarm.svg', + 'font.size.heading03': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.alarm', - '$type': 'link', - '$value': '/icon/alarm.svg', + id: 'font.size.heading03', + $type: 'dimension', + $value: '1.25rem', }, - 'icon.alarm--add': { - '_original': { - '$value': '/icon/alarm--add.svg', + 'font.size.heading04': { + _original: { + $value: '1.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.alarm--add', - '$type': 'link', - '$value': '/icon/alarm--add.svg', + id: 'font.size.heading04', + $type: 'dimension', + $value: '1.75rem', }, - 'icon.alarm--subtract': { - '_original': { - '$value': '/icon/alarm--subtract.svg', + 'font.size.heading05': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.alarm--subtract', - '$type': 'link', - '$value': '/icon/alarm--subtract.svg', + id: 'font.size.heading05', + $type: 'dimension', + $value: '2rem', }, - 'icon.align--horizontal-center': { - '_original': { - '$value': '/icon/align--horizontal-center.svg', + 'font.size.heading06': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align--horizontal-center', - '$type': 'link', - '$value': '/icon/align--horizontal-center.svg', + id: 'font.size.heading06', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.align--horizontal-left': { - '_original': { - '$value': '/icon/align--horizontal-left.svg', + 'font.size.heading07': { + _original: { + $value: '3.375rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align--horizontal-left', - '$type': 'link', - '$value': '/icon/align--horizontal-left.svg', + id: 'font.size.heading07', + $type: 'dimension', + $value: '3.375rem', }, - 'icon.align--horizontal-right': { - '_original': { - '$value': '/icon/align--horizontal-right.svg', + 'font.size.headingCompact01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align--horizontal-right', - '$type': 'link', - '$value': '/icon/align--horizontal-right.svg', + id: 'font.size.headingCompact01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.align--vertical-bottom': { - '_original': { - '$value': '/icon/align--vertical-bottom.svg', + 'font.size.headingCompact02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align--vertical-bottom', - '$type': 'link', - '$value': '/icon/align--vertical-bottom.svg', + id: 'font.size.headingCompact02', + $type: 'dimension', + $value: '1rem', }, - 'icon.align--vertical-center': { - '_original': { - '$value': '/icon/align--vertical-center.svg', + 'font.size.helperText01': { + _original: { + $value: '0.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align--vertical-center', - '$type': 'link', - '$value': '/icon/align--vertical-center.svg', + id: 'font.size.helperText01', + $type: 'dimension', + $value: '0.75rem', }, - 'icon.align--vertical-top': { - '_original': { - '$value': '/icon/align--vertical-top.svg', + 'font.size.helperText02': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align--vertical-top', - '$type': 'link', - '$value': '/icon/align--vertical-top.svg', + id: 'font.size.helperText02', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.align-box--bottom-center': { - '_original': { - '$value': '/icon/align-box--bottom-center.svg', + 'font.size.label01': { + _original: { + $value: '0.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--bottom-center', - '$type': 'link', - '$value': '/icon/align-box--bottom-center.svg', + id: 'font.size.label01', + $type: 'dimension', + $value: '0.75rem', }, - 'icon.align-box--bottom-left': { - '_original': { - '$value': '/icon/align-box--bottom-left.svg', + 'font.size.label02': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--bottom-left', - '$type': 'link', - '$value': '/icon/align-box--bottom-left.svg', + id: 'font.size.label02', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.align-box--bottom-right': { - '_original': { - '$value': '/icon/align-box--bottom-right.svg', + 'font.size.legal01': { + _original: { + $value: '0.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--bottom-right', - '$type': 'link', - '$value': '/icon/align-box--bottom-right.svg', + id: 'font.size.legal01', + $type: 'dimension', + $value: '0.75rem', }, - 'icon.align-box--middle-center': { - '_original': { - '$value': '/icon/align-box--middle-center.svg', + 'font.size.legal02': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--middle-center', - '$type': 'link', - '$value': '/icon/align-box--middle-center.svg', + id: 'font.size.legal02', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.align-box--middle-left': { - '_original': { - '$value': '/icon/align-box--middle-left.svg', + 'font.size.productiveHeading01': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--middle-left', - '$type': 'link', - '$value': '/icon/align-box--middle-left.svg', + id: 'font.size.productiveHeading01', + $type: 'dimension', + $value: '0.875rem', }, - 'icon.align-box--middle-right': { - '_original': { - '$value': '/icon/align-box--middle-right.svg', + 'font.size.productiveHeading02': { + _original: { + $value: '1rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--middle-right', - '$type': 'link', - '$value': '/icon/align-box--middle-right.svg', + id: 'font.size.productiveHeading02', + $type: 'dimension', + $value: '1rem', }, - 'icon.align-box--top-center': { - '_original': { - '$value': '/icon/align-box--top-center.svg', + 'font.size.productiveHeading03': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--top-center', - '$type': 'link', - '$value': '/icon/align-box--top-center.svg', + id: 'font.size.productiveHeading03', + $type: 'dimension', + $value: '1.25rem', }, - 'icon.align-box--top-left': { - '_original': { - '$value': '/icon/align-box--top-left.svg', + 'font.size.productiveHeading04': { + _original: { + $value: '1.75rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--top-left', - '$type': 'link', - '$value': '/icon/align-box--top-left.svg', + id: 'font.size.productiveHeading04', + $type: 'dimension', + $value: '1.75rem', }, - 'icon.align-box--top-right': { - '_original': { - '$value': '/icon/align-box--top-right.svg', + 'font.size.productiveHeading05': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.align-box--top-right', - '$type': 'link', - '$value': '/icon/align-box--top-right.svg', + id: 'font.size.productiveHeading05', + $type: 'dimension', + $value: '2rem', }, - 'icon.analytics': { - '_original': { - '$value': '/icon/analytics.svg', + 'font.size.productiveHeading06': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.analytics', - '$type': 'link', - '$value': '/icon/analytics.svg', + id: 'font.size.productiveHeading06', + $type: 'dimension', + $value: '2.625rem', }, - 'icon.analytics--reference': { - '_original': { - '$value': '/icon/analytics--reference.svg', + 'font.size.productiveHeading07': { + _original: { + $value: '3.375rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.analytics--reference', - '$type': 'link', - '$value': '/icon/analytics--reference.svg', + id: 'font.size.productiveHeading07', + $type: 'dimension', + $value: '3.375rem', }, - 'icon.angle': { - '_original': { - '$value': '/icon/angle.svg', + 'font.size.quotation01': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.angle', - '$type': 'link', - '$value': '/icon/angle.svg', + id: 'font.size.quotation01', + $type: 'dimension', + $value: '1.25rem', }, - 'icon.annotation-visibility': { - '_original': { - '$value': '/icon/annotation-visibility.svg', + 'font.size.quotation02': { + _original: { + $value: '2rem', }, - '_group': { - id: 'icon', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'icon.annotation-visibility', - '$type': 'link', - '$value': '/icon/annotation-visibility.svg', + id: 'font.size.quotation02', + $type: 'dimension', + $value: '2rem', }, - 'icon.aperture': { - '_original': { - '$value': '/icon/aperture.svg', + 'icon.3D-Cursor': { + _original: { + $value: '/icon/3D-Cursor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.aperture', - '$type': 'link', - '$value': '/icon/aperture.svg', + id: 'icon.3D-Cursor', + $type: 'link', + $value: '/icon/3D-Cursor.svg', }, - 'icon.api': { - '_original': { - '$value': '/icon/api.svg', + 'icon.3D-cursor--alt': { + _original: { + $value: '/icon/3D-cursor--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.api', - '$type': 'link', - '$value': '/icon/api.svg', + id: 'icon.3D-cursor--alt', + $type: 'link', + $value: '/icon/3D-cursor--alt.svg', }, - 'icon.API--1': { - '_original': { - '$value': '/icon/API--1.svg', + 'icon.3D-curve--auto-colon': { + _original: { + $value: '/icon/3D-curve--auto-colon.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.API--1', - '$type': 'link', - '$value': '/icon/API--1.svg', + id: 'icon.3D-curve--auto-colon', + $type: 'link', + $value: '/icon/3D-curve--auto-colon.svg', }, - 'icon.app': { - '_original': { - '$value': '/icon/app.svg', + 'icon.3D-curve--auto-vessels': { + _original: { + $value: '/icon/3D-curve--auto-vessels.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.app', - '$type': 'link', - '$value': '/icon/app.svg', + id: 'icon.3D-curve--auto-vessels', + $type: 'link', + $value: '/icon/3D-curve--auto-vessels.svg', }, - 'icon.app-connectivity': { - '_original': { - '$value': '/icon/app-connectivity.svg', + 'icon.3D-curve--manual': { + _original: { + $value: '/icon/3D-curve--manual.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.app-connectivity', - '$type': 'link', - '$value': '/icon/app-connectivity.svg', + id: 'icon.3D-curve--manual', + $type: 'link', + $value: '/icon/3D-curve--manual.svg', }, - 'icon.app-switcher': { - '_original': { - '$value': '/icon/app-switcher.svg', + 'icon.3D-iCa': { + _original: { + $value: '/icon/3D-iCa.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.app-switcher', - '$type': 'link', - '$value': '/icon/app-switcher.svg', + id: 'icon.3D-iCa', + $type: 'link', + $value: '/icon/3D-iCa.svg', }, - 'icon.apple': { - '_original': { - '$value': '/icon/apple.svg', + 'icon.3D-MPR-Toggle': { + _original: { + $value: '/icon/3D-MPR-Toggle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.apple', - '$type': 'link', - '$value': '/icon/apple.svg', + id: 'icon.3D-MPR-Toggle', + $type: 'link', + $value: '/icon/3D-MPR-Toggle.svg', }, - 'icon.application': { - '_original': { - '$value': '/icon/application.svg', + 'icon.3D-print-mesh': { + _original: { + $value: '/icon/3D-print-mesh.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.application', - '$type': 'link', - '$value': '/icon/application.svg', + id: 'icon.3D-print-mesh', + $type: 'link', + $value: '/icon/3D-print-mesh.svg', }, - 'icon.application--mobile': { - '_original': { - '$value': '/icon/application--mobile.svg', + 'icon.3D-software': { + _original: { + $value: '/icon/3D-software.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.application--mobile', - '$type': 'link', - '$value': '/icon/application--mobile.svg', + id: 'icon.3D-software', + $type: 'link', + $value: '/icon/3D-software.svg', }, - 'icon.application--virtual': { - '_original': { - '$value': '/icon/application--virtual.svg', + 'icon.3rd-party-connected': { + _original: { + $value: '/icon/3rd-party-connected.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.application--virtual', - '$type': 'link', - '$value': '/icon/application--virtual.svg', + id: 'icon.3rd-party-connected', + $type: 'link', + $value: '/icon/3rd-party-connected.svg', }, - 'icon.application--web': { - '_original': { - '$value': '/icon/application--web.svg', + 'icon.4K': { + _original: { + $value: '/icon/4K.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.application--web', - '$type': 'link', - '$value': '/icon/application--web.svg', + id: 'icon.4K', + $type: 'link', + $value: '/icon/4K.svg', }, - 'icon.apps': { - '_original': { - '$value': '/icon/apps.svg', + 'icon.4K--filled': { + _original: { + $value: '/icon/4K--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.apps', - '$type': 'link', - '$value': '/icon/apps.svg', + id: 'icon.4K--filled', + $type: 'link', + $value: '/icon/4K--filled.svg', }, - 'icon.archive': { - '_original': { - '$value': '/icon/archive.svg', + 'icon.accessibility': { + _original: { + $value: '/icon/accessibility.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.archive', - '$type': 'link', - '$value': '/icon/archive.svg', + id: 'icon.accessibility', + $type: 'link', + $value: '/icon/accessibility.svg', }, - 'icon.area': { - '_original': { - '$value': '/icon/area.svg', + 'icon.accessibility--alt': { + _original: { + $value: '/icon/accessibility--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.area', - '$type': 'link', - '$value': '/icon/area.svg', + id: 'icon.accessibility--alt', + $type: 'link', + $value: '/icon/accessibility--alt.svg', }, - 'icon.area--custom': { - '_original': { - '$value': '/icon/area--custom.svg', + 'icon.accessibility--color': { + _original: { + $value: '/icon/accessibility--color.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.area--custom', - '$type': 'link', - '$value': '/icon/area--custom.svg', + id: 'icon.accessibility--color', + $type: 'link', + $value: '/icon/accessibility--color.svg', }, - 'icon.arrival': { - '_original': { - '$value': '/icon/arrival.svg', + 'icon.accessibility--color--filled': { + _original: { + $value: '/icon/accessibility--color--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrival', - '$type': 'link', - '$value': '/icon/arrival.svg', + id: 'icon.accessibility--color--filled', + $type: 'link', + $value: '/icon/accessibility--color--filled.svg', }, - 'icon.arrow--annotation': { - '_original': { - '$value': '/icon/arrow--annotation.svg', + 'icon.account': { + _original: { + $value: '/icon/account.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--annotation', - '$type': 'link', - '$value': '/icon/arrow--annotation.svg', + id: 'icon.account', + $type: 'link', + $value: '/icon/account.svg', }, - 'icon.arrow--down': { - '_original': { - '$value': '/icon/arrow--down.svg', + 'icon.accumulation--ice': { + _original: { + $value: '/icon/accumulation--ice.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--down', - '$type': 'link', - '$value': '/icon/arrow--down.svg', + id: 'icon.accumulation--ice', + $type: 'link', + $value: '/icon/accumulation--ice.svg', }, - 'icon.arrow--down-left': { - '_original': { - '$value': '/icon/arrow--down-left.svg', + 'icon.accumulation--precipitation': { + _original: { + $value: '/icon/accumulation--precipitation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--down-left', - '$type': 'link', - '$value': '/icon/arrow--down-left.svg', + id: 'icon.accumulation--precipitation', + $type: 'link', + $value: '/icon/accumulation--precipitation.svg', }, - 'icon.arrow--down-right': { - '_original': { - '$value': '/icon/arrow--down-right.svg', + 'icon.accumulation--rain': { + _original: { + $value: '/icon/accumulation--rain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--down-right', - '$type': 'link', - '$value': '/icon/arrow--down-right.svg', + id: 'icon.accumulation--rain', + $type: 'link', + $value: '/icon/accumulation--rain.svg', }, - 'icon.arrow--left': { - '_original': { - '$value': '/icon/arrow--left.svg', + 'icon.accumulation--snow': { + _original: { + $value: '/icon/accumulation--snow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--left', - '$type': 'link', - '$value': '/icon/arrow--left.svg', + id: 'icon.accumulation--snow', + $type: 'link', + $value: '/icon/accumulation--snow.svg', }, - 'icon.arrow--right': { - '_original': { - '$value': '/icon/arrow--right.svg', + 'icon.activity': { + _original: { + $value: '/icon/activity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--right', - '$type': 'link', - '$value': '/icon/arrow--right.svg', + id: 'icon.activity', + $type: 'link', + $value: '/icon/activity.svg', }, - 'icon.arrow--up': { - '_original': { - '$value': '/icon/arrow--up.svg', + 'icon.add': { + _original: { + $value: '/icon/add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--up', - '$type': 'link', - '$value': '/icon/arrow--up.svg', + id: 'icon.add', + $type: 'link', + $value: '/icon/add.svg', }, - 'icon.arrow--up-left': { - '_original': { - '$value': '/icon/arrow--up-left.svg', + 'icon.add--alt': { + _original: { + $value: '/icon/add--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--up-left', - '$type': 'link', - '$value': '/icon/arrow--up-left.svg', + id: 'icon.add--alt', + $type: 'link', + $value: '/icon/add--alt.svg', }, - 'icon.arrow--up-right': { - '_original': { - '$value': '/icon/arrow--up-right.svg', + 'icon.add--filled': { + _original: { + $value: '/icon/add--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow--up-right', - '$type': 'link', - '$value': '/icon/arrow--up-right.svg', + id: 'icon.add--filled', + $type: 'link', + $value: '/icon/add--filled.svg', }, - 'icon.arrow-shift-down': { - '_original': { - '$value': '/icon/arrow-shift-down.svg', + 'icon.add-comment': { + _original: { + $value: '/icon/add-comment.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrow-shift-down', - '$type': 'link', - '$value': '/icon/arrow-shift-down.svg', + id: 'icon.add-comment', + $type: 'link', + $value: '/icon/add-comment.svg', }, - 'icon.arrows': { - '_original': { - '$value': '/icon/arrows.svg', + 'icon.agriculture-analytics': { + _original: { + $value: '/icon/agriculture-analytics.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrows', - '$type': 'link', - '$value': '/icon/arrows.svg', + id: 'icon.agriculture-analytics', + $type: 'link', + $value: '/icon/agriculture-analytics.svg', }, - 'icon.arrows--horizontal': { - '_original': { - '$value': '/icon/arrows--horizontal.svg', + 'icon.ai-results': { + _original: { + $value: '/icon/ai-results.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrows--horizontal', - '$type': 'link', - '$value': '/icon/arrows--horizontal.svg', + id: 'icon.ai-results', + $type: 'link', + $value: '/icon/ai-results.svg', }, - 'icon.arrows--vertical': { - '_original': { - '$value': '/icon/arrows--vertical.svg', + 'icon.ai-results--high': { + _original: { + $value: '/icon/ai-results--high.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.arrows--vertical', - '$type': 'link', - '$value': '/icon/arrows--vertical.svg', + id: 'icon.ai-results--high', + $type: 'link', + $value: '/icon/ai-results--high.svg', }, - 'icon.asleep': { - '_original': { - '$value': '/icon/asleep.svg', + 'icon.ai-results--low': { + _original: { + $value: '/icon/ai-results--low.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asleep', - '$type': 'link', - '$value': '/icon/asleep.svg', + id: 'icon.ai-results--low', + $type: 'link', + $value: '/icon/ai-results--low.svg', }, - 'icon.asleep--filled': { - '_original': { - '$value': '/icon/asleep--filled.svg', + 'icon.ai-results--medium': { + _original: { + $value: '/icon/ai-results--medium.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asleep--filled', - '$type': 'link', - '$value': '/icon/asleep--filled.svg', + id: 'icon.ai-results--medium', + $type: 'link', + $value: '/icon/ai-results--medium.svg', }, - 'icon.asset': { - '_original': { - '$value': '/icon/asset.svg', + 'icon.ai-results--urgent': { + _original: { + $value: '/icon/ai-results--urgent.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asset', - '$type': 'link', - '$value': '/icon/asset.svg', + id: 'icon.ai-results--urgent', + $type: 'link', + $value: '/icon/ai-results--urgent.svg', }, - 'icon.asset--confirm': { - '_original': { - '$value': '/icon/asset--confirm.svg', + 'icon.ai-results--very-high': { + _original: { + $value: '/icon/ai-results--very-high.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asset--confirm', - '$type': 'link', - '$value': '/icon/asset--confirm.svg', + id: 'icon.ai-results--very-high', + $type: 'link', + $value: '/icon/ai-results--very-high.svg', }, - 'icon.asset--digital-twin': { - '_original': { - '$value': '/icon/asset--digital-twin.svg', + 'icon.ai-status': { + _original: { + $value: '/icon/ai-status.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asset--digital-twin', - '$type': 'link', - '$value': '/icon/asset--digital-twin.svg', + id: 'icon.ai-status', + $type: 'link', + $value: '/icon/ai-status.svg', }, - 'icon.asset--view': { - '_original': { - '$value': '/icon/asset--view.svg', + 'icon.ai-status--complete': { + _original: { + $value: '/icon/ai-status--complete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asset--view', - '$type': 'link', - '$value': '/icon/asset--view.svg', + id: 'icon.ai-status--complete', + $type: 'link', + $value: '/icon/ai-status--complete.svg', }, - 'icon.asterisk': { - '_original': { - '$value': '/icon/asterisk.svg', + 'icon.ai-status--failed': { + _original: { + $value: '/icon/ai-status--failed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.asterisk', - '$type': 'link', - '$value': '/icon/asterisk.svg', + id: 'icon.ai-status--failed', + $type: 'link', + $value: '/icon/ai-status--failed.svg', }, - 'icon.at': { - '_original': { - '$value': '/icon/at.svg', + 'icon.ai-status--in-progress': { + _original: { + $value: '/icon/ai-status--in-progress.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.at', - '$type': 'link', - '$value': '/icon/at.svg', + id: 'icon.ai-status--in-progress', + $type: 'link', + $value: '/icon/ai-status--in-progress.svg', }, - 'icon.attachment': { - '_original': { - '$value': '/icon/attachment.svg', + 'icon.ai-status--queued': { + _original: { + $value: '/icon/ai-status--queued.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.attachment', - '$type': 'link', - '$value': '/icon/attachment.svg', + id: 'icon.ai-status--queued', + $type: 'link', + $value: '/icon/ai-status--queued.svg', }, - 'icon.audio-console': { - '_original': { - '$value': '/icon/audio-console.svg', + 'icon.ai-status--rejected': { + _original: { + $value: '/icon/ai-status--rejected.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.audio-console', - '$type': 'link', - '$value': '/icon/audio-console.svg', + id: 'icon.ai-status--rejected', + $type: 'link', + $value: '/icon/ai-status--rejected.svg', }, - 'icon.augmented-reality': { - '_original': { - '$value': '/icon/augmented-reality.svg', + 'icon.airline--digital-gate': { + _original: { + $value: '/icon/airline--digital-gate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.augmented-reality', - '$type': 'link', - '$value': '/icon/augmented-reality.svg', + id: 'icon.airline--digital-gate', + $type: 'link', + $value: '/icon/airline--digital-gate.svg', }, - 'icon.auto-scroll': { - '_original': { - '$value': '/icon/auto-scroll.svg', + 'icon.airline--manage-gates': { + _original: { + $value: '/icon/airline--manage-gates.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.auto-scroll', - '$type': 'link', - '$value': '/icon/auto-scroll.svg', + id: 'icon.airline--manage-gates', + $type: 'link', + $value: '/icon/airline--manage-gates.svg', }, - 'icon.automatic': { - '_original': { - '$value': '/icon/automatic.svg', + 'icon.airline--passenger-care': { + _original: { + $value: '/icon/airline--passenger-care.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.automatic', - '$type': 'link', - '$value': '/icon/automatic.svg', + id: 'icon.airline--passenger-care', + $type: 'link', + $value: '/icon/airline--passenger-care.svg', }, - 'icon.autoscaling': { - '_original': { - '$value': '/icon/autoscaling.svg', + 'icon.airline--rapid-board': { + _original: { + $value: '/icon/airline--rapid-board.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.autoscaling', - '$type': 'link', - '$value': '/icon/autoscaling.svg', + id: 'icon.airline--rapid-board', + $type: 'link', + $value: '/icon/airline--rapid-board.svg', }, - 'icon.awake': { - '_original': { - '$value': '/icon/awake.svg', + 'icon.airplay': { + _original: { + $value: '/icon/airplay.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.awake', - '$type': 'link', - '$value': '/icon/awake.svg', + id: 'icon.airplay', + $type: 'link', + $value: '/icon/airplay.svg', }, - 'icon.back-to-top': { - '_original': { - '$value': '/icon/back-to-top.svg', + 'icon.airplay--filled': { + _original: { + $value: '/icon/airplay--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.back-to-top', - '$type': 'link', - '$value': '/icon/back-to-top.svg', + id: 'icon.airplay--filled', + $type: 'link', + $value: '/icon/airplay--filled.svg', }, - 'icon.badge': { - '_original': { - '$value': '/icon/badge.svg', + 'icon.airport--01': { + _original: { + $value: '/icon/airport--01.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.badge', - '$type': 'link', - '$value': '/icon/badge.svg', + id: 'icon.airport--01', + $type: 'link', + $value: '/icon/airport--01.svg', }, - 'icon.baggage-claim': { - '_original': { - '$value': '/icon/baggage-claim.svg', + 'icon.airport--02': { + _original: { + $value: '/icon/airport--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.baggage-claim', - '$type': 'link', - '$value': '/icon/baggage-claim.svg', + id: 'icon.airport--02', + $type: 'link', + $value: '/icon/airport--02.svg', }, - 'icon.bar': { - '_original': { - '$value': '/icon/bar.svg', + 'icon.airport-location': { + _original: { + $value: '/icon/airport-location.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bar', - '$type': 'link', - '$value': '/icon/bar.svg', + id: 'icon.airport-location', + $type: 'link', + $value: '/icon/airport-location.svg', }, - 'icon.barcode': { - '_original': { - '$value': '/icon/barcode.svg', + 'icon.alarm': { + _original: { + $value: '/icon/alarm.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.barcode', - '$type': 'link', - '$value': '/icon/barcode.svg', + id: 'icon.alarm', + $type: 'link', + $value: '/icon/alarm.svg', }, - 'icon.bare-metal-server': { - '_original': { - '$value': '/icon/bare-metal-server.svg', + 'icon.alarm--add': { + _original: { + $value: '/icon/alarm--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bare-metal-server', - '$type': 'link', - '$value': '/icon/bare-metal-server.svg', + id: 'icon.alarm--add', + $type: 'link', + $value: '/icon/alarm--add.svg', }, - 'icon.bare-metal-server--01': { - '_original': { - '$value': '/icon/bare-metal-server--01.svg', + 'icon.alarm--subtract': { + _original: { + $value: '/icon/alarm--subtract.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bare-metal-server--01', - '$type': 'link', - '$value': '/icon/bare-metal-server--01.svg', + id: 'icon.alarm--subtract', + $type: 'link', + $value: '/icon/alarm--subtract.svg', }, - 'icon.bare-metal-server--02': { - '_original': { - '$value': '/icon/bare-metal-server--02.svg', + 'icon.align--horizontal-center': { + _original: { + $value: '/icon/align--horizontal-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bare-metal-server--02', - '$type': 'link', - '$value': '/icon/bare-metal-server--02.svg', + id: 'icon.align--horizontal-center', + $type: 'link', + $value: '/icon/align--horizontal-center.svg', }, - 'icon.barrier': { - '_original': { - '$value': '/icon/barrier.svg', + 'icon.align--horizontal-left': { + _original: { + $value: '/icon/align--horizontal-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.barrier', - '$type': 'link', - '$value': '/icon/barrier.svg', + id: 'icon.align--horizontal-left', + $type: 'link', + $value: '/icon/align--horizontal-left.svg', }, - 'icon.basketball': { - '_original': { - '$value': '/icon/basketball.svg', + 'icon.align--horizontal-right': { + _original: { + $value: '/icon/align--horizontal-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.basketball', - '$type': 'link', - '$value': '/icon/basketball.svg', + id: 'icon.align--horizontal-right', + $type: 'link', + $value: '/icon/align--horizontal-right.svg', }, - 'icon.bastion-host': { - '_original': { - '$value': '/icon/bastion-host.svg', + 'icon.align--vertical-bottom': { + _original: { + $value: '/icon/align--vertical-bottom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bastion-host', - '$type': 'link', - '$value': '/icon/bastion-host.svg', + id: 'icon.align--vertical-bottom', + $type: 'link', + $value: '/icon/align--vertical-bottom.svg', }, - 'icon.bat': { - '_original': { - '$value': '/icon/bat.svg', + 'icon.align--vertical-center': { + _original: { + $value: '/icon/align--vertical-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bat', - '$type': 'link', - '$value': '/icon/bat.svg', + id: 'icon.align--vertical-center', + $type: 'link', + $value: '/icon/align--vertical-center.svg', }, - 'icon.battery--charging': { - '_original': { - '$value': '/icon/battery--charging.svg', + 'icon.align--vertical-top': { + _original: { + $value: '/icon/align--vertical-top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.battery--charging', - '$type': 'link', - '$value': '/icon/battery--charging.svg', + id: 'icon.align--vertical-top', + $type: 'link', + $value: '/icon/align--vertical-top.svg', }, - 'icon.battery--empty': { - '_original': { - '$value': '/icon/battery--empty.svg', + 'icon.align-box--bottom-center': { + _original: { + $value: '/icon/align-box--bottom-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.battery--empty', - '$type': 'link', - '$value': '/icon/battery--empty.svg', + id: 'icon.align-box--bottom-center', + $type: 'link', + $value: '/icon/align-box--bottom-center.svg', }, - 'icon.battery--full': { - '_original': { - '$value': '/icon/battery--full.svg', + 'icon.align-box--bottom-left': { + _original: { + $value: '/icon/align-box--bottom-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.battery--full', - '$type': 'link', - '$value': '/icon/battery--full.svg', + id: 'icon.align-box--bottom-left', + $type: 'link', + $value: '/icon/align-box--bottom-left.svg', }, - 'icon.battery--half': { - '_original': { - '$value': '/icon/battery--half.svg', + 'icon.align-box--bottom-right': { + _original: { + $value: '/icon/align-box--bottom-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.battery--half', - '$type': 'link', - '$value': '/icon/battery--half.svg', + id: 'icon.align-box--bottom-right', + $type: 'link', + $value: '/icon/align-box--bottom-right.svg', }, - 'icon.battery--low': { - '_original': { - '$value': '/icon/battery--low.svg', + 'icon.align-box--middle-center': { + _original: { + $value: '/icon/align-box--middle-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.battery--low', - '$type': 'link', - '$value': '/icon/battery--low.svg', + id: 'icon.align-box--middle-center', + $type: 'link', + $value: '/icon/align-box--middle-center.svg', }, - 'icon.battery--quarter': { - '_original': { - '$value': '/icon/battery--quarter.svg', + 'icon.align-box--middle-left': { + _original: { + $value: '/icon/align-box--middle-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.battery--quarter', - '$type': 'link', - '$value': '/icon/battery--quarter.svg', + id: 'icon.align-box--middle-left', + $type: 'link', + $value: '/icon/align-box--middle-left.svg', }, - 'icon.bee': { - '_original': { - '$value': '/icon/bee.svg', + 'icon.align-box--middle-right': { + _original: { + $value: '/icon/align-box--middle-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bee', - '$type': 'link', - '$value': '/icon/bee.svg', + id: 'icon.align-box--middle-right', + $type: 'link', + $value: '/icon/align-box--middle-right.svg', }, - 'icon.bee-bat': { - '_original': { - '$value': '/icon/bee-bat.svg', + 'icon.align-box--top-center': { + _original: { + $value: '/icon/align-box--top-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bee-bat', - '$type': 'link', - '$value': '/icon/bee-bat.svg', + id: 'icon.align-box--top-center', + $type: 'link', + $value: '/icon/align-box--top-center.svg', }, - 'icon.beta': { - '_original': { - '$value': '/icon/beta.svg', + 'icon.align-box--top-left': { + _original: { + $value: '/icon/align-box--top-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.beta', - '$type': 'link', - '$value': '/icon/beta.svg', + id: 'icon.align-box--top-left', + $type: 'link', + $value: '/icon/align-box--top-left.svg', }, - 'icon.bicycle': { - '_original': { - '$value': '/icon/bicycle.svg', + 'icon.align-box--top-right': { + _original: { + $value: '/icon/align-box--top-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bicycle', - '$type': 'link', - '$value': '/icon/bicycle.svg', + id: 'icon.align-box--top-right', + $type: 'link', + $value: '/icon/align-box--top-right.svg', }, - 'icon.binoculars': { - '_original': { - '$value': '/icon/binoculars.svg', + 'icon.analytics': { + _original: { + $value: '/icon/analytics.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.binoculars', - '$type': 'link', - '$value': '/icon/binoculars.svg', + id: 'icon.analytics', + $type: 'link', + $value: '/icon/analytics.svg', }, - 'icon.bloch-sphere': { - '_original': { - '$value': '/icon/bloch-sphere.svg', + 'icon.analytics--reference': { + _original: { + $value: '/icon/analytics--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bloch-sphere', - '$type': 'link', - '$value': '/icon/bloch-sphere.svg', + id: 'icon.analytics--reference', + $type: 'link', + $value: '/icon/analytics--reference.svg', }, - 'icon.block-storage': { - '_original': { - '$value': '/icon/block-storage.svg', + 'icon.angle': { + _original: { + $value: '/icon/angle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.block-storage', - '$type': 'link', - '$value': '/icon/block-storage.svg', + id: 'icon.angle', + $type: 'link', + $value: '/icon/angle.svg', }, - 'icon.block-storage--alt': { - '_original': { - '$value': '/icon/block-storage--alt.svg', + 'icon.annotation-visibility': { + _original: { + $value: '/icon/annotation-visibility.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.block-storage--alt', - '$type': 'link', - '$value': '/icon/block-storage--alt.svg', + id: 'icon.annotation-visibility', + $type: 'link', + $value: '/icon/annotation-visibility.svg', }, - 'icon.blockchain': { - '_original': { - '$value': '/icon/blockchain.svg', + 'icon.aperture': { + _original: { + $value: '/icon/aperture.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.blockchain', - '$type': 'link', - '$value': '/icon/blockchain.svg', + id: 'icon.aperture', + $type: 'link', + $value: '/icon/aperture.svg', }, - 'icon.blog': { - '_original': { - '$value': '/icon/blog.svg', + 'icon.api': { + _original: { + $value: '/icon/api.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.blog', - '$type': 'link', - '$value': '/icon/blog.svg', + id: 'icon.api', + $type: 'link', + $value: '/icon/api.svg', }, - 'icon.bluetooth': { - '_original': { - '$value': '/icon/bluetooth.svg', + 'icon.API--1': { + _original: { + $value: '/icon/API--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bluetooth', - '$type': 'link', - '$value': '/icon/bluetooth.svg', + id: 'icon.API--1', + $type: 'link', + $value: '/icon/API--1.svg', }, - 'icon.bluetooth--off': { - '_original': { - '$value': '/icon/bluetooth--off.svg', + 'icon.app': { + _original: { + $value: '/icon/app.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bluetooth--off', - '$type': 'link', - '$value': '/icon/bluetooth--off.svg', + id: 'icon.app', + $type: 'link', + $value: '/icon/app.svg', }, - 'icon.book': { - '_original': { - '$value': '/icon/book.svg', + 'icon.app-connectivity': { + _original: { + $value: '/icon/app-connectivity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.book', - '$type': 'link', - '$value': '/icon/book.svg', + id: 'icon.app-connectivity', + $type: 'link', + $value: '/icon/app-connectivity.svg', }, - 'icon.bookmark': { - '_original': { - '$value': '/icon/bookmark.svg', + 'icon.app-switcher': { + _original: { + $value: '/icon/app-switcher.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bookmark', - '$type': 'link', - '$value': '/icon/bookmark.svg', + id: 'icon.app-switcher', + $type: 'link', + $value: '/icon/app-switcher.svg', }, - 'icon.bookmark--add': { - '_original': { - '$value': '/icon/bookmark--add.svg', + 'icon.apple': { + _original: { + $value: '/icon/apple.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bookmark--add', - '$type': 'link', - '$value': '/icon/bookmark--add.svg', + id: 'icon.apple', + $type: 'link', + $value: '/icon/apple.svg', }, - 'icon.bookmark--filled': { - '_original': { - '$value': '/icon/bookmark--filled.svg', + 'icon.application': { + _original: { + $value: '/icon/application.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bookmark--filled', - '$type': 'link', - '$value': '/icon/bookmark--filled.svg', + id: 'icon.application', + $type: 'link', + $value: '/icon/application.svg', }, - 'icon.boolean': { - '_original': { - '$value': '/icon/boolean.svg', + 'icon.application--mobile': { + _original: { + $value: '/icon/application--mobile.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.boolean', - '$type': 'link', - '$value': '/icon/boolean.svg', + id: 'icon.application--mobile', + $type: 'link', + $value: '/icon/application--mobile.svg', }, - 'icon.boot': { - '_original': { - '$value': '/icon/boot.svg', + 'icon.application--virtual': { + _original: { + $value: '/icon/application--virtual.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.boot', - '$type': 'link', - '$value': '/icon/boot.svg', + id: 'icon.application--virtual', + $type: 'link', + $value: '/icon/application--virtual.svg', }, - 'icon.border--bottom': { - '_original': { - '$value': '/icon/border--bottom.svg', + 'icon.application--web': { + _original: { + $value: '/icon/application--web.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.border--bottom', - '$type': 'link', - '$value': '/icon/border--bottom.svg', + id: 'icon.application--web', + $type: 'link', + $value: '/icon/application--web.svg', }, - 'icon.border--full': { - '_original': { - '$value': '/icon/border--full.svg', + 'icon.apps': { + _original: { + $value: '/icon/apps.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.border--full', - '$type': 'link', - '$value': '/icon/border--full.svg', + id: 'icon.apps', + $type: 'link', + $value: '/icon/apps.svg', }, - 'icon.border--left': { - '_original': { - '$value': '/icon/border--left.svg', + 'icon.archive': { + _original: { + $value: '/icon/archive.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.border--left', - '$type': 'link', - '$value': '/icon/border--left.svg', + id: 'icon.archive', + $type: 'link', + $value: '/icon/archive.svg', }, - 'icon.border--none': { - '_original': { - '$value': '/icon/border--none.svg', + 'icon.area': { + _original: { + $value: '/icon/area.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.border--none', - '$type': 'link', - '$value': '/icon/border--none.svg', + id: 'icon.area', + $type: 'link', + $value: '/icon/area.svg', }, - 'icon.border--right': { - '_original': { - '$value': '/icon/border--right.svg', + 'icon.area--custom': { + _original: { + $value: '/icon/area--custom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.border--right', - '$type': 'link', - '$value': '/icon/border--right.svg', + id: 'icon.area--custom', + $type: 'link', + $value: '/icon/area--custom.svg', }, - 'icon.border--top': { - '_original': { - '$value': '/icon/border--top.svg', + 'icon.arrival': { + _original: { + $value: '/icon/arrival.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.border--top', - '$type': 'link', - '$value': '/icon/border--top.svg', + id: 'icon.arrival', + $type: 'link', + $value: '/icon/arrival.svg', }, - 'icon.bot': { - '_original': { - '$value': '/icon/bot.svg', + 'icon.arrow--annotation': { + _original: { + $value: '/icon/arrow--annotation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bot', - '$type': 'link', - '$value': '/icon/bot.svg', + id: 'icon.arrow--annotation', + $type: 'link', + $value: '/icon/arrow--annotation.svg', }, - 'icon.box': { - '_original': { - '$value': '/icon/box.svg', + 'icon.arrow--down': { + _original: { + $value: '/icon/arrow--down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.box', - '$type': 'link', - '$value': '/icon/box.svg', + id: 'icon.arrow--down', + $type: 'link', + $value: '/icon/arrow--down.svg', }, - 'icon.box--extra-large': { - '_original': { - '$value': '/icon/box--extra-large.svg', + 'icon.arrow--down-left': { + _original: { + $value: '/icon/arrow--down-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.box--extra-large', - '$type': 'link', - '$value': '/icon/box--extra-large.svg', + id: 'icon.arrow--down-left', + $type: 'link', + $value: '/icon/arrow--down-left.svg', }, - 'icon.box--large': { - '_original': { - '$value': '/icon/box--large.svg', + 'icon.arrow--down-right': { + _original: { + $value: '/icon/arrow--down-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.box--large', - '$type': 'link', - '$value': '/icon/box--large.svg', + id: 'icon.arrow--down-right', + $type: 'link', + $value: '/icon/arrow--down-right.svg', }, - 'icon.box--medium': { - '_original': { - '$value': '/icon/box--medium.svg', + 'icon.arrow--left': { + _original: { + $value: '/icon/arrow--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.box--medium', - '$type': 'link', - '$value': '/icon/box--medium.svg', + id: 'icon.arrow--left', + $type: 'link', + $value: '/icon/arrow--left.svg', }, - 'icon.box--small': { - '_original': { - '$value': '/icon/box--small.svg', + 'icon.arrow--right': { + _original: { + $value: '/icon/arrow--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.box--small', - '$type': 'link', - '$value': '/icon/box--small.svg', + id: 'icon.arrow--right', + $type: 'link', + $value: '/icon/arrow--right.svg', }, - 'icon.box-plot': { - '_original': { - '$value': '/icon/box-plot.svg', + 'icon.arrow--up': { + _original: { + $value: '/icon/arrow--up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.box-plot', - '$type': 'link', - '$value': '/icon/box-plot.svg', + id: 'icon.arrow--up', + $type: 'link', + $value: '/icon/arrow--up.svg', }, - 'icon.branch': { - '_original': { - '$value': '/icon/branch.svg', + 'icon.arrow--up-left': { + _original: { + $value: '/icon/arrow--up-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.branch', - '$type': 'link', - '$value': '/icon/branch.svg', + id: 'icon.arrow--up-left', + $type: 'link', + $value: '/icon/arrow--up-left.svg', }, - 'icon.breaking-change': { - '_original': { - '$value': '/icon/breaking-change.svg', + 'icon.arrow--up-right': { + _original: { + $value: '/icon/arrow--up-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.breaking-change', - '$type': 'link', - '$value': '/icon/breaking-change.svg', + id: 'icon.arrow--up-right', + $type: 'link', + $value: '/icon/arrow--up-right.svg', }, - 'icon.brightness-contrast': { - '_original': { - '$value': '/icon/brightness-contrast.svg', + 'icon.arrow-shift-down': { + _original: { + $value: '/icon/arrow-shift-down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.brightness-contrast', - '$type': 'link', - '$value': '/icon/brightness-contrast.svg', + id: 'icon.arrow-shift-down', + $type: 'link', + $value: '/icon/arrow-shift-down.svg', }, - 'icon.bring-forward': { - '_original': { - '$value': '/icon/bring-forward.svg', + 'icon.arrows': { + _original: { + $value: '/icon/arrows.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bring-forward', - '$type': 'link', - '$value': '/icon/bring-forward.svg', + id: 'icon.arrows', + $type: 'link', + $value: '/icon/arrows.svg', }, - 'icon.bring-to-front': { - '_original': { - '$value': '/icon/bring-to-front.svg', + 'icon.arrows--horizontal': { + _original: { + $value: '/icon/arrows--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bring-to-front', - '$type': 'link', - '$value': '/icon/bring-to-front.svg', + id: 'icon.arrows--horizontal', + $type: 'link', + $value: '/icon/arrows--horizontal.svg', }, - 'icon.brush-freehand': { - '_original': { - '$value': '/icon/brush-freehand.svg', + 'icon.arrows--vertical': { + _original: { + $value: '/icon/arrows--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.brush-freehand', - '$type': 'link', - '$value': '/icon/brush-freehand.svg', + id: 'icon.arrows--vertical', + $type: 'link', + $value: '/icon/arrows--vertical.svg', }, - 'icon.brush-polygon': { - '_original': { - '$value': '/icon/brush-polygon.svg', + 'icon.asleep': { + _original: { + $value: '/icon/asleep.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.brush-polygon', - '$type': 'link', - '$value': '/icon/brush-polygon.svg', + id: 'icon.asleep', + $type: 'link', + $value: '/icon/asleep.svg', }, - 'icon.building': { - '_original': { - '$value': '/icon/building.svg', + 'icon.asleep--filled': { + _original: { + $value: '/icon/asleep--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.building', - '$type': 'link', - '$value': '/icon/building.svg', + id: 'icon.asleep--filled', + $type: 'link', + $value: '/icon/asleep--filled.svg', }, - 'icon.building--insights-1': { - '_original': { - '$value': '/icon/building--insights-1.svg', + 'icon.asset': { + _original: { + $value: '/icon/asset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.building--insights-1', - '$type': 'link', - '$value': '/icon/building--insights-1.svg', + id: 'icon.asset', + $type: 'link', + $value: '/icon/asset.svg', }, - 'icon.building--insights-2': { - '_original': { - '$value': '/icon/building--insights-2.svg', + 'icon.asset--confirm': { + _original: { + $value: '/icon/asset--confirm.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.building--insights-2', - '$type': 'link', - '$value': '/icon/building--insights-2.svg', + id: 'icon.asset--confirm', + $type: 'link', + $value: '/icon/asset--confirm.svg', }, - 'icon.building--insights-3': { - '_original': { - '$value': '/icon/building--insights-3.svg', + 'icon.asset--digital-twin': { + _original: { + $value: '/icon/asset--digital-twin.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.building--insights-3', - '$type': 'link', - '$value': '/icon/building--insights-3.svg', + id: 'icon.asset--digital-twin', + $type: 'link', + $value: '/icon/asset--digital-twin.svg', }, - 'icon.bullhorn': { - '_original': { - '$value': '/icon/bullhorn.svg', + 'icon.asset--view': { + _original: { + $value: '/icon/asset--view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bullhorn', - '$type': 'link', - '$value': '/icon/bullhorn.svg', + id: 'icon.asset--view', + $type: 'link', + $value: '/icon/asset--view.svg', }, - 'icon.buoy': { - '_original': { - '$value': '/icon/buoy.svg', + 'icon.asterisk': { + _original: { + $value: '/icon/asterisk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.buoy', - '$type': 'link', - '$value': '/icon/buoy.svg', + id: 'icon.asterisk', + $type: 'link', + $value: '/icon/asterisk.svg', }, - 'icon.bus': { - '_original': { - '$value': '/icon/bus.svg', + 'icon.at': { + _original: { + $value: '/icon/at.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.bus', - '$type': 'link', - '$value': '/icon/bus.svg', + id: 'icon.at', + $type: 'link', + $value: '/icon/at.svg', }, - 'icon.cabin-care': { - '_original': { - '$value': '/icon/cabin-care.svg', + 'icon.attachment': { + _original: { + $value: '/icon/attachment.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cabin-care', - '$type': 'link', - '$value': '/icon/cabin-care.svg', + id: 'icon.attachment', + $type: 'link', + $value: '/icon/attachment.svg', }, - 'icon.cabin-care--alert': { - '_original': { - '$value': '/icon/cabin-care--alert.svg', + 'icon.audio-console': { + _original: { + $value: '/icon/audio-console.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cabin-care--alert', - '$type': 'link', - '$value': '/icon/cabin-care--alert.svg', + id: 'icon.audio-console', + $type: 'link', + $value: '/icon/audio-console.svg', }, - 'icon.cabin-care--alt': { - '_original': { - '$value': '/icon/cabin-care--alt.svg', + 'icon.augmented-reality': { + _original: { + $value: '/icon/augmented-reality.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cabin-care--alt', - '$type': 'link', - '$value': '/icon/cabin-care--alt.svg', + id: 'icon.augmented-reality', + $type: 'link', + $value: '/icon/augmented-reality.svg', }, - 'icon.CAD': { - '_original': { - '$value': '/icon/CAD.svg', + 'icon.auto-scroll': { + _original: { + $value: '/icon/auto-scroll.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.CAD', - '$type': 'link', - '$value': '/icon/CAD.svg', + id: 'icon.auto-scroll', + $type: 'link', + $value: '/icon/auto-scroll.svg', }, - 'icon.cafe': { - '_original': { - '$value': '/icon/cafe.svg', + 'icon.automatic': { + _original: { + $value: '/icon/automatic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cafe', - '$type': 'link', - '$value': '/icon/cafe.svg', + id: 'icon.automatic', + $type: 'link', + $value: '/icon/automatic.svg', }, - 'icon.calculation': { - '_original': { - '$value': '/icon/calculation.svg', + 'icon.autoscaling': { + _original: { + $value: '/icon/autoscaling.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calculation', - '$type': 'link', - '$value': '/icon/calculation.svg', + id: 'icon.autoscaling', + $type: 'link', + $value: '/icon/autoscaling.svg', }, - 'icon.calculation--alt': { - '_original': { - '$value': '/icon/calculation--alt.svg', + 'icon.awake': { + _original: { + $value: '/icon/awake.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calculation--alt', - '$type': 'link', - '$value': '/icon/calculation--alt.svg', + id: 'icon.awake', + $type: 'link', + $value: '/icon/awake.svg', }, - 'icon.calculator': { - '_original': { - '$value': '/icon/calculator.svg', + 'icon.back-to-top': { + _original: { + $value: '/icon/back-to-top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calculator', - '$type': 'link', - '$value': '/icon/calculator.svg', + id: 'icon.back-to-top', + $type: 'link', + $value: '/icon/back-to-top.svg', }, - 'icon.calculator--check': { - '_original': { - '$value': '/icon/calculator--check.svg', + 'icon.badge': { + _original: { + $value: '/icon/badge.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calculator--check', - '$type': 'link', - '$value': '/icon/calculator--check.svg', + id: 'icon.badge', + $type: 'link', + $value: '/icon/badge.svg', }, - 'icon.calendar': { - '_original': { - '$value': '/icon/calendar.svg', + 'icon.baggage-claim': { + _original: { + $value: '/icon/baggage-claim.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calendar', - '$type': 'link', - '$value': '/icon/calendar.svg', + id: 'icon.baggage-claim', + $type: 'link', + $value: '/icon/baggage-claim.svg', }, - 'icon.calendar--heat-map': { - '_original': { - '$value': '/icon/calendar--heat-map.svg', + 'icon.bar': { + _original: { + $value: '/icon/bar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calendar--heat-map', - '$type': 'link', - '$value': '/icon/calendar--heat-map.svg', + id: 'icon.bar', + $type: 'link', + $value: '/icon/bar.svg', }, - 'icon.calendar--settings': { - '_original': { - '$value': '/icon/calendar--settings.svg', + 'icon.barcode': { + _original: { + $value: '/icon/barcode.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calendar--settings', - '$type': 'link', - '$value': '/icon/calendar--settings.svg', + id: 'icon.barcode', + $type: 'link', + $value: '/icon/barcode.svg', }, - 'icon.calendar--tools': { - '_original': { - '$value': '/icon/calendar--tools.svg', + 'icon.bare-metal-server': { + _original: { + $value: '/icon/bare-metal-server.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calendar--tools', - '$type': 'link', - '$value': '/icon/calendar--tools.svg', + id: 'icon.bare-metal-server', + $type: 'link', + $value: '/icon/bare-metal-server.svg', }, - 'icon.calibrate': { - '_original': { - '$value': '/icon/calibrate.svg', + 'icon.bare-metal-server--01': { + _original: { + $value: '/icon/bare-metal-server--01.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.calibrate', - '$type': 'link', - '$value': '/icon/calibrate.svg', + id: 'icon.bare-metal-server--01', + $type: 'link', + $value: '/icon/bare-metal-server--01.svg', }, - 'icon.camera': { - '_original': { - '$value': '/icon/camera.svg', + 'icon.bare-metal-server--02': { + _original: { + $value: '/icon/bare-metal-server--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.camera', - '$type': 'link', - '$value': '/icon/camera.svg', + id: 'icon.bare-metal-server--02', + $type: 'link', + $value: '/icon/bare-metal-server--02.svg', }, - 'icon.camera--action': { - '_original': { - '$value': '/icon/camera--action.svg', + 'icon.barrier': { + _original: { + $value: '/icon/barrier.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.camera--action', - '$type': 'link', - '$value': '/icon/camera--action.svg', + id: 'icon.barrier', + $type: 'link', + $value: '/icon/barrier.svg', }, - 'icon.campsite': { - '_original': { - '$value': '/icon/campsite.svg', + 'icon.basketball': { + _original: { + $value: '/icon/basketball.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.campsite', - '$type': 'link', - '$value': '/icon/campsite.svg', + id: 'icon.basketball', + $type: 'link', + $value: '/icon/basketball.svg', }, - 'icon.car': { - '_original': { - '$value': '/icon/car.svg', + 'icon.bastion-host': { + _original: { + $value: '/icon/bastion-host.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.car', - '$type': 'link', - '$value': '/icon/car.svg', + id: 'icon.bastion-host', + $type: 'link', + $value: '/icon/bastion-host.svg', }, - 'icon.car--front': { - '_original': { - '$value': '/icon/car--front.svg', + 'icon.bat': { + _original: { + $value: '/icon/bat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.car--front', - '$type': 'link', - '$value': '/icon/car--front.svg', + id: 'icon.bat', + $type: 'link', + $value: '/icon/bat.svg', }, - 'icon.carbon': { - '_original': { - '$value': '/icon/carbon.svg', + 'icon.battery--charging': { + _original: { + $value: '/icon/battery--charging.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.carbon', - '$type': 'link', - '$value': '/icon/carbon.svg', + id: 'icon.battery--charging', + $type: 'link', + $value: '/icon/battery--charging.svg', }, - 'icon.carbon-accounting': { - '_original': { - '$value': '/icon/carbon-accounting.svg', + 'icon.battery--empty': { + _original: { + $value: '/icon/battery--empty.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.carbon-accounting', - '$type': 'link', - '$value': '/icon/carbon-accounting.svg', + id: 'icon.battery--empty', + $type: 'link', + $value: '/icon/battery--empty.svg', }, - 'icon.caret--down': { - '_original': { - '$value': '/icon/caret--down.svg', + 'icon.battery--full': { + _original: { + $value: '/icon/battery--full.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--down', - '$type': 'link', - '$value': '/icon/caret--down.svg', + id: 'icon.battery--full', + $type: 'link', + $value: '/icon/battery--full.svg', }, - 'icon.caret--left': { - '_original': { - '$value': '/icon/caret--left.svg', + 'icon.battery--half': { + _original: { + $value: '/icon/battery--half.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--left', - '$type': 'link', - '$value': '/icon/caret--left.svg', + id: 'icon.battery--half', + $type: 'link', + $value: '/icon/battery--half.svg', }, - 'icon.caret--right': { - '_original': { - '$value': '/icon/caret--right.svg', + 'icon.battery--low': { + _original: { + $value: '/icon/battery--low.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--right', - '$type': 'link', - '$value': '/icon/caret--right.svg', + id: 'icon.battery--low', + $type: 'link', + $value: '/icon/battery--low.svg', }, - 'icon.caret--sort': { - '_original': { - '$value': '/icon/caret--sort.svg', + 'icon.battery--quarter': { + _original: { + $value: '/icon/battery--quarter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--sort', - '$type': 'link', - '$value': '/icon/caret--sort.svg', + id: 'icon.battery--quarter', + $type: 'link', + $value: '/icon/battery--quarter.svg', }, - 'icon.caret--sort--down': { - '_original': { - '$value': '/icon/caret--sort--down.svg', + 'icon.bee': { + _original: { + $value: '/icon/bee.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--sort--down', - '$type': 'link', - '$value': '/icon/caret--sort--down.svg', + id: 'icon.bee', + $type: 'link', + $value: '/icon/bee.svg', }, - 'icon.caret--sort--up': { - '_original': { - '$value': '/icon/caret--sort--up.svg', + 'icon.bee-bat': { + _original: { + $value: '/icon/bee-bat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--sort--up', - '$type': 'link', - '$value': '/icon/caret--sort--up.svg', + id: 'icon.bee-bat', + $type: 'link', + $value: '/icon/bee-bat.svg', }, - 'icon.caret--up': { - '_original': { - '$value': '/icon/caret--up.svg', + 'icon.beta': { + _original: { + $value: '/icon/beta.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caret--up', - '$type': 'link', - '$value': '/icon/caret--up.svg', + id: 'icon.beta', + $type: 'link', + $value: '/icon/beta.svg', }, - 'icon.carousel--horizontal': { - '_original': { - '$value': '/icon/carousel--horizontal.svg', + 'icon.bicycle': { + _original: { + $value: '/icon/bicycle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.carousel--horizontal', - '$type': 'link', - '$value': '/icon/carousel--horizontal.svg', + id: 'icon.bicycle', + $type: 'link', + $value: '/icon/bicycle.svg', }, - 'icon.carousel--vertical': { - '_original': { - '$value': '/icon/carousel--vertical.svg', + 'icon.binoculars': { + _original: { + $value: '/icon/binoculars.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.carousel--vertical', - '$type': 'link', - '$value': '/icon/carousel--vertical.svg', + id: 'icon.binoculars', + $type: 'link', + $value: '/icon/binoculars.svg', }, - 'icon.catalog': { - '_original': { - '$value': '/icon/catalog.svg', + 'icon.bloch-sphere': { + _original: { + $value: '/icon/bloch-sphere.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.catalog', - '$type': 'link', - '$value': '/icon/catalog.svg', + id: 'icon.bloch-sphere', + $type: 'link', + $value: '/icon/bloch-sphere.svg', }, - 'icon.categories': { - '_original': { - '$value': '/icon/categories.svg', + 'icon.block-storage': { + _original: { + $value: '/icon/block-storage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.categories', - '$type': 'link', - '$value': '/icon/categories.svg', + id: 'icon.block-storage', + $type: 'link', + $value: '/icon/block-storage.svg', }, - 'icon.category': { - '_original': { - '$value': '/icon/category.svg', + 'icon.block-storage--alt': { + _original: { + $value: '/icon/block-storage--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.category', - '$type': 'link', - '$value': '/icon/category.svg', + id: 'icon.block-storage--alt', + $type: 'link', + $value: '/icon/block-storage--alt.svg', }, - 'icon.category--add': { - '_original': { - '$value': '/icon/category--add.svg', + 'icon.blockchain': { + _original: { + $value: '/icon/blockchain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.category--add', - '$type': 'link', - '$value': '/icon/category--add.svg', + id: 'icon.blockchain', + $type: 'link', + $value: '/icon/blockchain.svg', }, - 'icon.category--and': { - '_original': { - '$value': '/icon/category--and.svg', + 'icon.blog': { + _original: { + $value: '/icon/blog.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.category--and', - '$type': 'link', - '$value': '/icon/category--and.svg', + id: 'icon.blog', + $type: 'link', + $value: '/icon/blog.svg', }, - 'icon.category--new': { - '_original': { - '$value': '/icon/category--new.svg', + 'icon.bluetooth': { + _original: { + $value: '/icon/bluetooth.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.category--new', - '$type': 'link', - '$value': '/icon/category--new.svg', + id: 'icon.bluetooth', + $type: 'link', + $value: '/icon/bluetooth.svg', }, - 'icon.category--new-each': { - '_original': { - '$value': '/icon/category--new-each.svg', + 'icon.bluetooth--off': { + _original: { + $value: '/icon/bluetooth--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.category--new-each', - '$type': 'link', - '$value': '/icon/category--new-each.svg', + id: 'icon.bluetooth--off', + $type: 'link', + $value: '/icon/bluetooth--off.svg', }, - 'icon.caution': { - '_original': { - '$value': '/icon/caution.svg', + 'icon.book': { + _original: { + $value: '/icon/book.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caution', - '$type': 'link', - '$value': '/icon/caution.svg', + id: 'icon.book', + $type: 'link', + $value: '/icon/book.svg', }, - 'icon.caution-inverted': { - '_original': { - '$value': '/icon/caution-inverted.svg', + 'icon.bookmark': { + _original: { + $value: '/icon/bookmark.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.caution-inverted', - '$type': 'link', - '$value': '/icon/caution-inverted.svg', + id: 'icon.bookmark', + $type: 'link', + $value: '/icon/bookmark.svg', }, - 'icon.ccX': { - '_original': { - '$value': '/icon/ccX.svg', + 'icon.bookmark--add': { + _original: { + $value: '/icon/bookmark--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ccX', - '$type': 'link', - '$value': '/icon/ccX.svg', + id: 'icon.bookmark--add', + $type: 'link', + $value: '/icon/bookmark--add.svg', }, - 'icon.cd--archive': { - '_original': { - '$value': '/icon/cd--archive.svg', + 'icon.bookmark--filled': { + _original: { + $value: '/icon/bookmark--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cd--archive', - '$type': 'link', - '$value': '/icon/cd--archive.svg', + id: 'icon.bookmark--filled', + $type: 'link', + $value: '/icon/bookmark--filled.svg', }, - 'icon.cd--create-archive': { - '_original': { - '$value': '/icon/cd--create-archive.svg', + 'icon.boolean': { + _original: { + $value: '/icon/boolean.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cd--create-archive', - '$type': 'link', - '$value': '/icon/cd--create-archive.svg', + id: 'icon.boolean', + $type: 'link', + $value: '/icon/boolean.svg', }, - 'icon.cd--create-exchange': { - '_original': { - '$value': '/icon/cd--create-exchange.svg', + 'icon.boot': { + _original: { + $value: '/icon/boot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cd--create-exchange', - '$type': 'link', - '$value': '/icon/cd--create-exchange.svg', + id: 'icon.boot', + $type: 'link', + $value: '/icon/boot.svg', }, - 'icon.CDA': { - '_original': { - '$value': '/icon/CDA.svg', + 'icon.border--bottom': { + _original: { + $value: '/icon/border--bottom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.CDA', - '$type': 'link', - '$value': '/icon/CDA.svg', + id: 'icon.border--bottom', + $type: 'link', + $value: '/icon/border--bottom.svg', }, - 'icon.cell-tower': { - '_original': { - '$value': '/icon/cell-tower.svg', + 'icon.border--full': { + _original: { + $value: '/icon/border--full.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cell-tower', - '$type': 'link', - '$value': '/icon/cell-tower.svg', + id: 'icon.border--full', + $type: 'link', + $value: '/icon/border--full.svg', }, - 'icon.center--circle': { - '_original': { - '$value': '/icon/center--circle.svg', + 'icon.border--left': { + _original: { + $value: '/icon/border--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.center--circle', - '$type': 'link', - '$value': '/icon/center--circle.svg', + id: 'icon.border--left', + $type: 'link', + $value: '/icon/border--left.svg', }, - 'icon.center--square': { - '_original': { - '$value': '/icon/center--square.svg', + 'icon.border--none': { + _original: { + $value: '/icon/border--none.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.center--square', - '$type': 'link', - '$value': '/icon/center--square.svg', + id: 'icon.border--none', + $type: 'link', + $value: '/icon/border--none.svg', }, - 'icon.center-to-fit': { - '_original': { - '$value': '/icon/center-to-fit.svg', + 'icon.border--right': { + _original: { + $value: '/icon/border--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.center-to-fit', - '$type': 'link', - '$value': '/icon/center-to-fit.svg', + id: 'icon.border--right', + $type: 'link', + $value: '/icon/border--right.svg', }, - 'icon.certificate': { - '_original': { - '$value': '/icon/certificate.svg', + 'icon.border--top': { + _original: { + $value: '/icon/border--top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.certificate', - '$type': 'link', - '$value': '/icon/certificate.svg', + id: 'icon.border--top', + $type: 'link', + $value: '/icon/border--top.svg', }, - 'icon.certificate--check': { - '_original': { - '$value': '/icon/certificate--check.svg', + 'icon.bot': { + _original: { + $value: '/icon/bot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.certificate--check', - '$type': 'link', - '$value': '/icon/certificate--check.svg', + id: 'icon.bot', + $type: 'link', + $value: '/icon/bot.svg', }, - 'icon.change-catalog': { - '_original': { - '$value': '/icon/change-catalog.svg', + 'icon.box': { + _original: { + $value: '/icon/box.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.change-catalog', - '$type': 'link', - '$value': '/icon/change-catalog.svg', + id: 'icon.box', + $type: 'link', + $value: '/icon/box.svg', }, - 'icon.character-patterns': { - '_original': { - '$value': '/icon/character-patterns.svg', + 'icon.box--extra-large': { + _original: { + $value: '/icon/box--extra-large.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.character-patterns', - '$type': 'link', - '$value': '/icon/character-patterns.svg', + id: 'icon.box--extra-large', + $type: 'link', + $value: '/icon/box--extra-large.svg', }, - 'icon.charging-station': { - '_original': { - '$value': '/icon/charging-station.svg', + 'icon.box--large': { + _original: { + $value: '/icon/box--large.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.charging-station', - '$type': 'link', - '$value': '/icon/charging-station.svg', + id: 'icon.box--large', + $type: 'link', + $value: '/icon/box--large.svg', }, - 'icon.charging-station--filled': { - '_original': { - '$value': '/icon/charging-station--filled.svg', + 'icon.box--medium': { + _original: { + $value: '/icon/box--medium.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.charging-station--filled', - '$type': 'link', - '$value': '/icon/charging-station--filled.svg', + id: 'icon.box--medium', + $type: 'link', + $value: '/icon/box--medium.svg', }, - 'icon.chart--3D': { - '_original': { - '$value': '/icon/chart--3D.svg', + 'icon.box--small': { + _original: { + $value: '/icon/box--small.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--3D', - '$type': 'link', - '$value': '/icon/chart--3D.svg', + id: 'icon.box--small', + $type: 'link', + $value: '/icon/box--small.svg', }, - 'icon.chart--area': { - '_original': { - '$value': '/icon/chart--area.svg', + 'icon.box-plot': { + _original: { + $value: '/icon/box-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--area', - '$type': 'link', - '$value': '/icon/chart--area.svg', + id: 'icon.box-plot', + $type: 'link', + $value: '/icon/box-plot.svg', }, - 'icon.chart--area-smooth': { - '_original': { - '$value': '/icon/chart--area-smooth.svg', + 'icon.branch': { + _original: { + $value: '/icon/branch.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--area-smooth', - '$type': 'link', - '$value': '/icon/chart--area-smooth.svg', + id: 'icon.branch', + $type: 'link', + $value: '/icon/branch.svg', }, - 'icon.chart--area-stepper': { - '_original': { - '$value': '/icon/chart--area-stepper.svg', + 'icon.breaking-change': { + _original: { + $value: '/icon/breaking-change.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--area-stepper', - '$type': 'link', - '$value': '/icon/chart--area-stepper.svg', + id: 'icon.breaking-change', + $type: 'link', + $value: '/icon/breaking-change.svg', }, - 'icon.chart--average': { - '_original': { - '$value': '/icon/chart--average.svg', + 'icon.brightness-contrast': { + _original: { + $value: '/icon/brightness-contrast.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--average', - '$type': 'link', - '$value': '/icon/chart--average.svg', + id: 'icon.brightness-contrast', + $type: 'link', + $value: '/icon/brightness-contrast.svg', }, - 'icon.chart--bar': { - '_original': { - '$value': '/icon/chart--bar.svg', + 'icon.bring-forward': { + _original: { + $value: '/icon/bring-forward.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bar', - '$type': 'link', - '$value': '/icon/chart--bar.svg', + id: 'icon.bring-forward', + $type: 'link', + $value: '/icon/bring-forward.svg', }, - 'icon.chart--bar-floating': { - '_original': { - '$value': '/icon/chart--bar-floating.svg', + 'icon.bring-to-front': { + _original: { + $value: '/icon/bring-to-front.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bar-floating', - '$type': 'link', - '$value': '/icon/chart--bar-floating.svg', + id: 'icon.bring-to-front', + $type: 'link', + $value: '/icon/bring-to-front.svg', }, - 'icon.chart--bar-overlay': { - '_original': { - '$value': '/icon/chart--bar-overlay.svg', + 'icon.brush-freehand': { + _original: { + $value: '/icon/brush-freehand.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bar-overlay', - '$type': 'link', - '$value': '/icon/chart--bar-overlay.svg', + id: 'icon.brush-freehand', + $type: 'link', + $value: '/icon/brush-freehand.svg', }, - 'icon.chart--bar-stacked': { - '_original': { - '$value': '/icon/chart--bar-stacked.svg', + 'icon.brush-polygon': { + _original: { + $value: '/icon/brush-polygon.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bar-stacked', - '$type': 'link', - '$value': '/icon/chart--bar-stacked.svg', + id: 'icon.brush-polygon', + $type: 'link', + $value: '/icon/brush-polygon.svg', }, - 'icon.chart--bar-target': { - '_original': { - '$value': '/icon/chart--bar-target.svg', + 'icon.building': { + _original: { + $value: '/icon/building.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bar-target', - '$type': 'link', - '$value': '/icon/chart--bar-target.svg', + id: 'icon.building', + $type: 'link', + $value: '/icon/building.svg', }, - 'icon.chart--bubble': { - '_original': { - '$value': '/icon/chart--bubble.svg', + 'icon.building--insights-1': { + _original: { + $value: '/icon/building--insights-1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bubble', - '$type': 'link', - '$value': '/icon/chart--bubble.svg', + id: 'icon.building--insights-1', + $type: 'link', + $value: '/icon/building--insights-1.svg', }, - 'icon.chart--bubble-packed': { - '_original': { - '$value': '/icon/chart--bubble-packed.svg', + 'icon.building--insights-2': { + _original: { + $value: '/icon/building--insights-2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bubble-packed', - '$type': 'link', - '$value': '/icon/chart--bubble-packed.svg', + id: 'icon.building--insights-2', + $type: 'link', + $value: '/icon/building--insights-2.svg', }, - 'icon.chart--bullet': { - '_original': { - '$value': '/icon/chart--bullet.svg', + 'icon.building--insights-3': { + _original: { + $value: '/icon/building--insights-3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--bullet', - '$type': 'link', - '$value': '/icon/chart--bullet.svg', + id: 'icon.building--insights-3', + $type: 'link', + $value: '/icon/building--insights-3.svg', }, - 'icon.chart--candlestick': { - '_original': { - '$value': '/icon/chart--candlestick.svg', + 'icon.bullhorn': { + _original: { + $value: '/icon/bullhorn.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--candlestick', - '$type': 'link', - '$value': '/icon/chart--candlestick.svg', + id: 'icon.bullhorn', + $type: 'link', + $value: '/icon/bullhorn.svg', }, - 'icon.chart--cluster-bar': { - '_original': { - '$value': '/icon/chart--cluster-bar.svg', + 'icon.buoy': { + _original: { + $value: '/icon/buoy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--cluster-bar', - '$type': 'link', - '$value': '/icon/chart--cluster-bar.svg', + id: 'icon.buoy', + $type: 'link', + $value: '/icon/buoy.svg', }, - 'icon.chart--column': { - '_original': { - '$value': '/icon/chart--column.svg', + 'icon.bus': { + _original: { + $value: '/icon/bus.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--column', - '$type': 'link', - '$value': '/icon/chart--column.svg', + id: 'icon.bus', + $type: 'link', + $value: '/icon/bus.svg', }, - 'icon.chart--column-floating': { - '_original': { - '$value': '/icon/chart--column-floating.svg', + 'icon.cabin-care': { + _original: { + $value: '/icon/cabin-care.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--column-floating', - '$type': 'link', - '$value': '/icon/chart--column-floating.svg', + id: 'icon.cabin-care', + $type: 'link', + $value: '/icon/cabin-care.svg', }, - 'icon.chart--column-target': { - '_original': { - '$value': '/icon/chart--column-target.svg', + 'icon.cabin-care--alert': { + _original: { + $value: '/icon/cabin-care--alert.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--column-target', - '$type': 'link', - '$value': '/icon/chart--column-target.svg', + id: 'icon.cabin-care--alert', + $type: 'link', + $value: '/icon/cabin-care--alert.svg', }, - 'icon.chart--combo': { - '_original': { - '$value': '/icon/chart--combo.svg', + 'icon.cabin-care--alt': { + _original: { + $value: '/icon/cabin-care--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--combo', - '$type': 'link', - '$value': '/icon/chart--combo.svg', + id: 'icon.cabin-care--alt', + $type: 'link', + $value: '/icon/cabin-care--alt.svg', }, - 'icon.chart--combo-stacked': { - '_original': { - '$value': '/icon/chart--combo-stacked.svg', + 'icon.CAD': { + _original: { + $value: '/icon/CAD.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--combo-stacked', - '$type': 'link', - '$value': '/icon/chart--combo-stacked.svg', + id: 'icon.CAD', + $type: 'link', + $value: '/icon/CAD.svg', }, - 'icon.chart--custom': { - '_original': { - '$value': '/icon/chart--custom.svg', + 'icon.cafe': { + _original: { + $value: '/icon/cafe.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--custom', - '$type': 'link', - '$value': '/icon/chart--custom.svg', + id: 'icon.cafe', + $type: 'link', + $value: '/icon/cafe.svg', }, - 'icon.chart--error-bar': { - '_original': { - '$value': '/icon/chart--error-bar.svg', + 'icon.calculation': { + _original: { + $value: '/icon/calculation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--error-bar', - '$type': 'link', - '$value': '/icon/chart--error-bar.svg', + id: 'icon.calculation', + $type: 'link', + $value: '/icon/calculation.svg', }, - 'icon.chart--error-bar--alt': { - '_original': { - '$value': '/icon/chart--error-bar--alt.svg', + 'icon.calculation--alt': { + _original: { + $value: '/icon/calculation--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--error-bar--alt', - '$type': 'link', - '$value': '/icon/chart--error-bar--alt.svg', + id: 'icon.calculation--alt', + $type: 'link', + $value: '/icon/calculation--alt.svg', }, - 'icon.chart--evaluation': { - '_original': { - '$value': '/icon/chart--evaluation.svg', + 'icon.calculator': { + _original: { + $value: '/icon/calculator.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--evaluation', - '$type': 'link', - '$value': '/icon/chart--evaluation.svg', + id: 'icon.calculator', + $type: 'link', + $value: '/icon/calculator.svg', }, - 'icon.chart--high-low': { - '_original': { - '$value': '/icon/chart--high-low.svg', + 'icon.calculator--check': { + _original: { + $value: '/icon/calculator--check.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--high-low', - '$type': 'link', - '$value': '/icon/chart--high-low.svg', + id: 'icon.calculator--check', + $type: 'link', + $value: '/icon/calculator--check.svg', }, - 'icon.chart--histogram': { - '_original': { - '$value': '/icon/chart--histogram.svg', + 'icon.calendar': { + _original: { + $value: '/icon/calendar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--histogram', - '$type': 'link', - '$value': '/icon/chart--histogram.svg', + id: 'icon.calendar', + $type: 'link', + $value: '/icon/calendar.svg', }, - 'icon.chart--line': { - '_original': { - '$value': '/icon/chart--line.svg', + 'icon.calendar--heat-map': { + _original: { + $value: '/icon/calendar--heat-map.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--line', - '$type': 'link', - '$value': '/icon/chart--line.svg', + id: 'icon.calendar--heat-map', + $type: 'link', + $value: '/icon/calendar--heat-map.svg', }, - 'icon.chart--line--data': { - '_original': { - '$value': '/icon/chart--line--data.svg', + 'icon.calendar--settings': { + _original: { + $value: '/icon/calendar--settings.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--line--data', - '$type': 'link', - '$value': '/icon/chart--line--data.svg', + id: 'icon.calendar--settings', + $type: 'link', + $value: '/icon/calendar--settings.svg', }, - 'icon.chart--line-smooth': { - '_original': { - '$value': '/icon/chart--line-smooth.svg', + 'icon.calendar--tools': { + _original: { + $value: '/icon/calendar--tools.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--line-smooth', - '$type': 'link', - '$value': '/icon/chart--line-smooth.svg', + id: 'icon.calendar--tools', + $type: 'link', + $value: '/icon/calendar--tools.svg', }, - 'icon.chart--marimekko': { - '_original': { - '$value': '/icon/chart--marimekko.svg', + 'icon.calibrate': { + _original: { + $value: '/icon/calibrate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--marimekko', - '$type': 'link', - '$value': '/icon/chart--marimekko.svg', + id: 'icon.calibrate', + $type: 'link', + $value: '/icon/calibrate.svg', }, - 'icon.chart--maximum': { - '_original': { - '$value': '/icon/chart--maximum.svg', + 'icon.camera': { + _original: { + $value: '/icon/camera.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--maximum', - '$type': 'link', - '$value': '/icon/chart--maximum.svg', + id: 'icon.camera', + $type: 'link', + $value: '/icon/camera.svg', }, - 'icon.chart--median': { - '_original': { - '$value': '/icon/chart--median.svg', + 'icon.camera--action': { + _original: { + $value: '/icon/camera--action.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--median', - '$type': 'link', - '$value': '/icon/chart--median.svg', + id: 'icon.camera--action', + $type: 'link', + $value: '/icon/camera--action.svg', }, - 'icon.chart--minimum': { - '_original': { - '$value': '/icon/chart--minimum.svg', + 'icon.campsite': { + _original: { + $value: '/icon/campsite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--minimum', - '$type': 'link', - '$value': '/icon/chart--minimum.svg', + id: 'icon.campsite', + $type: 'link', + $value: '/icon/campsite.svg', }, - 'icon.chart--multi-line': { - '_original': { - '$value': '/icon/chart--multi-line.svg', + 'icon.car': { + _original: { + $value: '/icon/car.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--multi-line', - '$type': 'link', - '$value': '/icon/chart--multi-line.svg', + id: 'icon.car', + $type: 'link', + $value: '/icon/car.svg', }, - 'icon.chart--multitype': { - '_original': { - '$value': '/icon/chart--multitype.svg', + 'icon.car--front': { + _original: { + $value: '/icon/car--front.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--multitype', - '$type': 'link', - '$value': '/icon/chart--multitype.svg', + id: 'icon.car--front', + $type: 'link', + $value: '/icon/car--front.svg', }, - 'icon.chart--network': { - '_original': { - '$value': '/icon/chart--network.svg', + 'icon.carbon': { + _original: { + $value: '/icon/carbon.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--network', - '$type': 'link', - '$value': '/icon/chart--network.svg', + id: 'icon.carbon', + $type: 'link', + $value: '/icon/carbon.svg', }, - 'icon.chart--parallel': { - '_original': { - '$value': '/icon/chart--parallel.svg', + 'icon.carbon-accounting': { + _original: { + $value: '/icon/carbon-accounting.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--parallel', - '$type': 'link', - '$value': '/icon/chart--parallel.svg', + id: 'icon.carbon-accounting', + $type: 'link', + $value: '/icon/carbon-accounting.svg', }, - 'icon.chart--pie': { - '_original': { - '$value': '/icon/chart--pie.svg', + 'icon.caret--down': { + _original: { + $value: '/icon/caret--down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--pie', - '$type': 'link', - '$value': '/icon/chart--pie.svg', + id: 'icon.caret--down', + $type: 'link', + $value: '/icon/caret--down.svg', }, - 'icon.chart--point': { - '_original': { - '$value': '/icon/chart--point.svg', + 'icon.caret--left': { + _original: { + $value: '/icon/caret--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--point', - '$type': 'link', - '$value': '/icon/chart--point.svg', + id: 'icon.caret--left', + $type: 'link', + $value: '/icon/caret--left.svg', }, - 'icon.chart--population': { - '_original': { - '$value': '/icon/chart--population.svg', + 'icon.caret--right': { + _original: { + $value: '/icon/caret--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--population', - '$type': 'link', - '$value': '/icon/chart--population.svg', + id: 'icon.caret--right', + $type: 'link', + $value: '/icon/caret--right.svg', }, - 'icon.chart--radar': { - '_original': { - '$value': '/icon/chart--radar.svg', + 'icon.caret--sort': { + _original: { + $value: '/icon/caret--sort.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--radar', - '$type': 'link', - '$value': '/icon/chart--radar.svg', + id: 'icon.caret--sort', + $type: 'link', + $value: '/icon/caret--sort.svg', }, - 'icon.chart--radial': { - '_original': { - '$value': '/icon/chart--radial.svg', + 'icon.caret--sort--down': { + _original: { + $value: '/icon/caret--sort--down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--radial', - '$type': 'link', - '$value': '/icon/chart--radial.svg', + id: 'icon.caret--sort--down', + $type: 'link', + $value: '/icon/caret--sort--down.svg', }, - 'icon.chart--relationship': { - '_original': { - '$value': '/icon/chart--relationship.svg', + 'icon.caret--sort--up': { + _original: { + $value: '/icon/caret--sort--up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--relationship', - '$type': 'link', - '$value': '/icon/chart--relationship.svg', + id: 'icon.caret--sort--up', + $type: 'link', + $value: '/icon/caret--sort--up.svg', }, - 'icon.chart--ring': { - '_original': { - '$value': '/icon/chart--ring.svg', + 'icon.caret--up': { + _original: { + $value: '/icon/caret--up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--ring', - '$type': 'link', - '$value': '/icon/chart--ring.svg', + id: 'icon.caret--up', + $type: 'link', + $value: '/icon/caret--up.svg', }, - 'icon.chart--river': { - '_original': { - '$value': '/icon/chart--river.svg', + 'icon.carousel--horizontal': { + _original: { + $value: '/icon/carousel--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--river', - '$type': 'link', - '$value': '/icon/chart--river.svg', + id: 'icon.carousel--horizontal', + $type: 'link', + $value: '/icon/carousel--horizontal.svg', }, - 'icon.chart--rose': { - '_original': { - '$value': '/icon/chart--rose.svg', + 'icon.carousel--vertical': { + _original: { + $value: '/icon/carousel--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--rose', - '$type': 'link', - '$value': '/icon/chart--rose.svg', + id: 'icon.carousel--vertical', + $type: 'link', + $value: '/icon/carousel--vertical.svg', }, - 'icon.chart--scatter': { - '_original': { - '$value': '/icon/chart--scatter.svg', + 'icon.catalog': { + _original: { + $value: '/icon/catalog.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--scatter', - '$type': 'link', - '$value': '/icon/chart--scatter.svg', + id: 'icon.catalog', + $type: 'link', + $value: '/icon/catalog.svg', }, - 'icon.chart--spiral': { - '_original': { - '$value': '/icon/chart--spiral.svg', + 'icon.categories': { + _original: { + $value: '/icon/categories.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--spiral', - '$type': 'link', - '$value': '/icon/chart--spiral.svg', + id: 'icon.categories', + $type: 'link', + $value: '/icon/categories.svg', }, - 'icon.chart--stacked': { - '_original': { - '$value': '/icon/chart--stacked.svg', + 'icon.category': { + _original: { + $value: '/icon/category.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--stacked', - '$type': 'link', - '$value': '/icon/chart--stacked.svg', + id: 'icon.category', + $type: 'link', + $value: '/icon/category.svg', }, - 'icon.chart--stepper': { - '_original': { - '$value': '/icon/chart--stepper.svg', + 'icon.category--add': { + _original: { + $value: '/icon/category--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--stepper', - '$type': 'link', - '$value': '/icon/chart--stepper.svg', + id: 'icon.category--add', + $type: 'link', + $value: '/icon/category--add.svg', }, - 'icon.chart--sunburst': { - '_original': { - '$value': '/icon/chart--sunburst.svg', + 'icon.category--and': { + _original: { + $value: '/icon/category--and.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--sunburst', - '$type': 'link', - '$value': '/icon/chart--sunburst.svg', + id: 'icon.category--and', + $type: 'link', + $value: '/icon/category--and.svg', }, - 'icon.chart--t-sne': { - '_original': { - '$value': '/icon/chart--t-sne.svg', + 'icon.category--new': { + _original: { + $value: '/icon/category--new.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--t-sne', - '$type': 'link', - '$value': '/icon/chart--t-sne.svg', + id: 'icon.category--new', + $type: 'link', + $value: '/icon/category--new.svg', }, - 'icon.chart--treemap': { - '_original': { - '$value': '/icon/chart--treemap.svg', + 'icon.category--new-each': { + _original: { + $value: '/icon/category--new-each.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--treemap', - '$type': 'link', - '$value': '/icon/chart--treemap.svg', + id: 'icon.category--new-each', + $type: 'link', + $value: '/icon/category--new-each.svg', }, - 'icon.chart--venn-diagram': { - '_original': { - '$value': '/icon/chart--venn-diagram.svg', + 'icon.caution': { + _original: { + $value: '/icon/caution.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--venn-diagram', - '$type': 'link', - '$value': '/icon/chart--venn-diagram.svg', + id: 'icon.caution', + $type: 'link', + $value: '/icon/caution.svg', }, - 'icon.chart--violin-plot': { - '_original': { - '$value': '/icon/chart--violin-plot.svg', + 'icon.caution-inverted': { + _original: { + $value: '/icon/caution-inverted.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--violin-plot', - '$type': 'link', - '$value': '/icon/chart--violin-plot.svg', + id: 'icon.caution-inverted', + $type: 'link', + $value: '/icon/caution-inverted.svg', }, - 'icon.chart--waterfall': { - '_original': { - '$value': '/icon/chart--waterfall.svg', + 'icon.ccX': { + _original: { + $value: '/icon/ccX.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--waterfall', - '$type': 'link', - '$value': '/icon/chart--waterfall.svg', + id: 'icon.ccX', + $type: 'link', + $value: '/icon/ccX.svg', }, - 'icon.chart--win-loss': { - '_original': { - '$value': '/icon/chart--win-loss.svg', + 'icon.cd--archive': { + _original: { + $value: '/icon/cd--archive.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chart--win-loss', - '$type': 'link', - '$value': '/icon/chart--win-loss.svg', + id: 'icon.cd--archive', + $type: 'link', + $value: '/icon/cd--archive.svg', }, - 'icon.chat': { - '_original': { - '$value': '/icon/chat.svg', + 'icon.cd--create-archive': { + _original: { + $value: '/icon/cd--create-archive.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chat', - '$type': 'link', - '$value': '/icon/chat.svg', + id: 'icon.cd--create-archive', + $type: 'link', + $value: '/icon/cd--create-archive.svg', }, - 'icon.chat--launch': { - '_original': { - '$value': '/icon/chat--launch.svg', + 'icon.cd--create-exchange': { + _original: { + $value: '/icon/cd--create-exchange.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chat--launch', - '$type': 'link', - '$value': '/icon/chat--launch.svg', + id: 'icon.cd--create-exchange', + $type: 'link', + $value: '/icon/cd--create-exchange.svg', }, - 'icon.chat--off': { - '_original': { - '$value': '/icon/chat--off.svg', + 'icon.CDA': { + _original: { + $value: '/icon/CDA.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chat--off', - '$type': 'link', - '$value': '/icon/chat--off.svg', + id: 'icon.CDA', + $type: 'link', + $value: '/icon/CDA.svg', }, - 'icon.chat--operational': { - '_original': { - '$value': '/icon/chat--operational.svg', + 'icon.cell-tower': { + _original: { + $value: '/icon/cell-tower.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chat--operational', - '$type': 'link', - '$value': '/icon/chat--operational.svg', + id: 'icon.cell-tower', + $type: 'link', + $value: '/icon/cell-tower.svg', }, - 'icon.chat-bot': { - '_original': { - '$value': '/icon/chat-bot.svg', + 'icon.center--circle': { + _original: { + $value: '/icon/center--circle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chat-bot', - '$type': 'link', - '$value': '/icon/chat-bot.svg', + id: 'icon.center--circle', + $type: 'link', + $value: '/icon/center--circle.svg', }, - 'icon.checkbox': { - '_original': { - '$value': '/icon/checkbox.svg', + 'icon.center--square': { + _original: { + $value: '/icon/center--square.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox', - '$type': 'link', - '$value': '/icon/checkbox.svg', + id: 'icon.center--square', + $type: 'link', + $value: '/icon/center--square.svg', }, - 'icon.checkbox--checked': { - '_original': { - '$value': '/icon/checkbox--checked.svg', + 'icon.center-to-fit': { + _original: { + $value: '/icon/center-to-fit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox--checked', - '$type': 'link', - '$value': '/icon/checkbox--checked.svg', + id: 'icon.center-to-fit', + $type: 'link', + $value: '/icon/center-to-fit.svg', }, - 'icon.checkbox--checked--filled': { - '_original': { - '$value': '/icon/checkbox--checked--filled.svg', + 'icon.certificate': { + _original: { + $value: '/icon/certificate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox--checked--filled', - '$type': 'link', - '$value': '/icon/checkbox--checked--filled.svg', + id: 'icon.certificate', + $type: 'link', + $value: '/icon/certificate.svg', }, - 'icon.checkbox--indeterminate': { - '_original': { - '$value': '/icon/checkbox--indeterminate.svg', + 'icon.certificate--check': { + _original: { + $value: '/icon/certificate--check.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox--indeterminate', - '$type': 'link', - '$value': '/icon/checkbox--indeterminate.svg', + id: 'icon.certificate--check', + $type: 'link', + $value: '/icon/certificate--check.svg', }, - 'icon.checkbox--indeterminate--filled': { - '_original': { - '$value': '/icon/checkbox--indeterminate--filled.svg', + 'icon.change-catalog': { + _original: { + $value: '/icon/change-catalog.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox--indeterminate--filled', - '$type': 'link', - '$value': '/icon/checkbox--indeterminate--filled.svg', + id: 'icon.change-catalog', + $type: 'link', + $value: '/icon/change-catalog.svg', }, - 'icon.checkbox--undeterminate': { - '_original': { - '$value': '/icon/checkbox--undeterminate.svg', + 'icon.character-patterns': { + _original: { + $value: '/icon/character-patterns.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox--undeterminate', - '$type': 'link', - '$value': '/icon/checkbox--undeterminate.svg', + id: 'icon.character-patterns', + $type: 'link', + $value: '/icon/character-patterns.svg', }, - 'icon.checkbox--undeterminate--filled': { - '_original': { - '$value': '/icon/checkbox--undeterminate--filled.svg', + 'icon.charging-station': { + _original: { + $value: '/icon/charging-station.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkbox--undeterminate--filled', - '$type': 'link', - '$value': '/icon/checkbox--undeterminate--filled.svg', + id: 'icon.charging-station', + $type: 'link', + $value: '/icon/charging-station.svg', }, - 'icon.checkmark': { - '_original': { - '$value': '/icon/checkmark.svg', + 'icon.charging-station--filled': { + _original: { + $value: '/icon/charging-station--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark', - '$type': 'link', - '$value': '/icon/checkmark.svg', + id: 'icon.charging-station--filled', + $type: 'link', + $value: '/icon/charging-station--filled.svg', }, - 'icon.checkmark--filled': { - '_original': { - '$value': '/icon/checkmark--filled.svg', + 'icon.chart--3D': { + _original: { + $value: '/icon/chart--3D.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark--filled', - '$type': 'link', - '$value': '/icon/checkmark--filled.svg', + id: 'icon.chart--3D', + $type: 'link', + $value: '/icon/chart--3D.svg', }, - 'icon.checkmark--filled--error': { - '_original': { - '$value': '/icon/checkmark--filled--error.svg', + 'icon.chart--area': { + _original: { + $value: '/icon/chart--area.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark--filled--error', - '$type': 'link', - '$value': '/icon/checkmark--filled--error.svg', + id: 'icon.chart--area', + $type: 'link', + $value: '/icon/chart--area.svg', }, - 'icon.checkmark--filled--warning': { - '_original': { - '$value': '/icon/checkmark--filled--warning.svg', + 'icon.chart--area-smooth': { + _original: { + $value: '/icon/chart--area-smooth.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark--filled--warning', - '$type': 'link', - '$value': '/icon/checkmark--filled--warning.svg', + id: 'icon.chart--area-smooth', + $type: 'link', + $value: '/icon/chart--area-smooth.svg', }, - 'icon.checkmark--outline': { - '_original': { - '$value': '/icon/checkmark--outline.svg', + 'icon.chart--area-stepper': { + _original: { + $value: '/icon/chart--area-stepper.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark--outline', - '$type': 'link', - '$value': '/icon/checkmark--outline.svg', + id: 'icon.chart--area-stepper', + $type: 'link', + $value: '/icon/chart--area-stepper.svg', }, - 'icon.checkmark--outline--error': { - '_original': { - '$value': '/icon/checkmark--outline--error.svg', + 'icon.chart--average': { + _original: { + $value: '/icon/chart--average.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark--outline--error', - '$type': 'link', - '$value': '/icon/checkmark--outline--error.svg', + id: 'icon.chart--average', + $type: 'link', + $value: '/icon/chart--average.svg', }, - 'icon.checkmark--outline--warning': { - '_original': { - '$value': '/icon/checkmark--outline--warning.svg', + 'icon.chart--bar': { + _original: { + $value: '/icon/chart--bar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.checkmark--outline--warning', - '$type': 'link', - '$value': '/icon/checkmark--outline--warning.svg', + id: 'icon.chart--bar', + $type: 'link', + $value: '/icon/chart--bar.svg', }, - 'icon.chemistry': { - '_original': { - '$value': '/icon/chemistry.svg', + 'icon.chart--bar-floating': { + _original: { + $value: '/icon/chart--bar-floating.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chemistry', - '$type': 'link', - '$value': '/icon/chemistry.svg', + id: 'icon.chart--bar-floating', + $type: 'link', + $value: '/icon/chart--bar-floating.svg', }, - 'icon.chemistry--reference': { - '_original': { - '$value': '/icon/chemistry--reference.svg', + 'icon.chart--bar-overlay': { + _original: { + $value: '/icon/chart--bar-overlay.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chemistry--reference', - '$type': 'link', - '$value': '/icon/chemistry--reference.svg', + id: 'icon.chart--bar-overlay', + $type: 'link', + $value: '/icon/chart--bar-overlay.svg', }, - 'icon.chevron--down': { - '_original': { - '$value': '/icon/chevron--down.svg', + 'icon.chart--bar-stacked': { + _original: { + $value: '/icon/chart--bar-stacked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--down', - '$type': 'link', - '$value': '/icon/chevron--down.svg', + id: 'icon.chart--bar-stacked', + $type: 'link', + $value: '/icon/chart--bar-stacked.svg', }, - 'icon.chevron--left': { - '_original': { - '$value': '/icon/chevron--left.svg', + 'icon.chart--bar-target': { + _original: { + $value: '/icon/chart--bar-target.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--left', - '$type': 'link', - '$value': '/icon/chevron--left.svg', + id: 'icon.chart--bar-target', + $type: 'link', + $value: '/icon/chart--bar-target.svg', }, - 'icon.chevron--mini': { - '_original': { - '$value': '/icon/chevron--mini.svg', + 'icon.chart--bubble': { + _original: { + $value: '/icon/chart--bubble.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--mini', - '$type': 'link', - '$value': '/icon/chevron--mini.svg', + id: 'icon.chart--bubble', + $type: 'link', + $value: '/icon/chart--bubble.svg', }, - 'icon.chevron--right': { - '_original': { - '$value': '/icon/chevron--right.svg', + 'icon.chart--bubble-packed': { + _original: { + $value: '/icon/chart--bubble-packed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--right', - '$type': 'link', - '$value': '/icon/chevron--right.svg', + id: 'icon.chart--bubble-packed', + $type: 'link', + $value: '/icon/chart--bubble-packed.svg', }, - 'icon.chevron--sort': { - '_original': { - '$value': '/icon/chevron--sort.svg', + 'icon.chart--bullet': { + _original: { + $value: '/icon/chart--bullet.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--sort', - '$type': 'link', - '$value': '/icon/chevron--sort.svg', + id: 'icon.chart--bullet', + $type: 'link', + $value: '/icon/chart--bullet.svg', }, - 'icon.chevron--sort--down': { - '_original': { - '$value': '/icon/chevron--sort--down.svg', + 'icon.chart--candlestick': { + _original: { + $value: '/icon/chart--candlestick.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--sort--down', - '$type': 'link', - '$value': '/icon/chevron--sort--down.svg', + id: 'icon.chart--candlestick', + $type: 'link', + $value: '/icon/chart--candlestick.svg', }, - 'icon.chevron--sort--up': { - '_original': { - '$value': '/icon/chevron--sort--up.svg', + 'icon.chart--cluster-bar': { + _original: { + $value: '/icon/chart--cluster-bar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--sort--up', - '$type': 'link', - '$value': '/icon/chevron--sort--up.svg', + id: 'icon.chart--cluster-bar', + $type: 'link', + $value: '/icon/chart--cluster-bar.svg', }, - 'icon.chevron--up': { - '_original': { - '$value': '/icon/chevron--up.svg', + 'icon.chart--column': { + _original: { + $value: '/icon/chart--column.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chevron--up', - '$type': 'link', - '$value': '/icon/chevron--up.svg', + id: 'icon.chart--column', + $type: 'link', + $value: '/icon/chart--column.svg', }, - 'icon.chip': { - '_original': { - '$value': '/icon/chip.svg', + 'icon.chart--column-floating': { + _original: { + $value: '/icon/chart--column-floating.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.chip', - '$type': 'link', - '$value': '/icon/chip.svg', + id: 'icon.chart--column-floating', + $type: 'link', + $value: '/icon/chart--column-floating.svg', }, - 'icon.choices': { - '_original': { - '$value': '/icon/choices.svg', + 'icon.chart--column-target': { + _original: { + $value: '/icon/chart--column-target.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.choices', - '$type': 'link', - '$value': '/icon/choices.svg', + id: 'icon.chart--column-target', + $type: 'link', + $value: '/icon/chart--column-target.svg', }, - 'icon.choose-item': { - '_original': { - '$value': '/icon/choose-item.svg', + 'icon.chart--combo': { + _original: { + $value: '/icon/chart--combo.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.choose-item', - '$type': 'link', - '$value': '/icon/choose-item.svg', + id: 'icon.chart--combo', + $type: 'link', + $value: '/icon/chart--combo.svg', }, - 'icon.choropleth-map': { - '_original': { - '$value': '/icon/choropleth-map.svg', + 'icon.chart--combo-stacked': { + _original: { + $value: '/icon/chart--combo-stacked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.choropleth-map', - '$type': 'link', - '$value': '/icon/choropleth-map.svg', + id: 'icon.chart--combo-stacked', + $type: 'link', + $value: '/icon/chart--combo-stacked.svg', }, - 'icon.cics--cmas': { - '_original': { - '$value': '/icon/cics--cmas.svg', + 'icon.chart--custom': { + _original: { + $value: '/icon/chart--custom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics--cmas', - '$type': 'link', - '$value': '/icon/cics--cmas.svg', + id: 'icon.chart--custom', + $type: 'link', + $value: '/icon/chart--custom.svg', }, - 'icon.cics--explorer': { - '_original': { - '$value': '/icon/cics--explorer.svg', + 'icon.chart--error-bar': { + _original: { + $value: '/icon/chart--error-bar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics--explorer', - '$type': 'link', - '$value': '/icon/cics--explorer.svg', + id: 'icon.chart--error-bar', + $type: 'link', + $value: '/icon/chart--error-bar.svg', }, - 'icon.cics--system-group': { - '_original': { - '$value': '/icon/cics--system-group.svg', + 'icon.chart--error-bar--alt': { + _original: { + $value: '/icon/chart--error-bar--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics--system-group', - '$type': 'link', - '$value': '/icon/cics--system-group.svg', + id: 'icon.chart--error-bar--alt', + $type: 'link', + $value: '/icon/chart--error-bar--alt.svg', }, - 'icon.cics--wui-region': { - '_original': { - '$value': '/icon/cics--wui-region.svg', + 'icon.chart--evaluation': { + _original: { + $value: '/icon/chart--evaluation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics--wui-region', - '$type': 'link', - '$value': '/icon/cics--wui-region.svg', + id: 'icon.chart--evaluation', + $type: 'link', + $value: '/icon/chart--evaluation.svg', }, - 'icon.cics-region': { - '_original': { - '$value': '/icon/cics-region.svg', + 'icon.chart--high-low': { + _original: { + $value: '/icon/chart--high-low.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics-region', - '$type': 'link', - '$value': '/icon/cics-region.svg', + id: 'icon.chart--high-low', + $type: 'link', + $value: '/icon/chart--high-low.svg', }, - 'icon.cics-region--routing': { - '_original': { - '$value': '/icon/cics-region--routing.svg', + 'icon.chart--histogram': { + _original: { + $value: '/icon/chart--histogram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics-region--routing', - '$type': 'link', - '$value': '/icon/cics-region--routing.svg', + id: 'icon.chart--histogram', + $type: 'link', + $value: '/icon/chart--histogram.svg', }, - 'icon.cics-region--target': { - '_original': { - '$value': '/icon/cics-region--target.svg', + 'icon.chart--line': { + _original: { + $value: '/icon/chart--line.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cics-region--target', - '$type': 'link', - '$value': '/icon/cics-region--target.svg', + id: 'icon.chart--line', + $type: 'link', + $value: '/icon/chart--line.svg', }, - 'icon.cicsplex': { - '_original': { - '$value': '/icon/cicsplex.svg', + 'icon.chart--line--data': { + _original: { + $value: '/icon/chart--line--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cicsplex', - '$type': 'link', - '$value': '/icon/cicsplex.svg', + id: 'icon.chart--line--data', + $type: 'link', + $value: '/icon/chart--line--data.svg', }, - 'icon.circle--filled': { - '_original': { - '$value': '/icon/circle--filled.svg', + 'icon.chart--line-smooth': { + _original: { + $value: '/icon/chart--line-smooth.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle--filled', - '$type': 'link', - '$value': '/icon/circle--filled.svg', + id: 'icon.chart--line-smooth', + $type: 'link', + $value: '/icon/chart--line-smooth.svg', }, - 'icon.circle--solid': { - '_original': { - '$value': '/icon/circle--solid.svg', + 'icon.chart--marimekko': { + _original: { + $value: '/icon/chart--marimekko.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle--solid', - '$type': 'link', - '$value': '/icon/circle--solid.svg', + id: 'icon.chart--marimekko', + $type: 'link', + $value: '/icon/chart--marimekko.svg', }, - 'icon.circle-dash': { - '_original': { - '$value': '/icon/circle-dash.svg', + 'icon.chart--maximum': { + _original: { + $value: '/icon/chart--maximum.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle-dash', - '$type': 'link', - '$value': '/icon/circle-dash.svg', + id: 'icon.chart--maximum', + $type: 'link', + $value: '/icon/chart--maximum.svg', }, - 'icon.circle-fill': { - '_original': { - '$value': '/icon/circle-fill.svg', + 'icon.chart--median': { + _original: { + $value: '/icon/chart--median.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle-fill', - '$type': 'link', - '$value': '/icon/circle-fill.svg', + id: 'icon.chart--median', + $type: 'link', + $value: '/icon/chart--median.svg', }, - 'icon.circle-measurement': { - '_original': { - '$value': '/icon/circle-measurement.svg', + 'icon.chart--minimum': { + _original: { + $value: '/icon/chart--minimum.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle-measurement', - '$type': 'link', - '$value': '/icon/circle-measurement.svg', + id: 'icon.chart--minimum', + $type: 'link', + $value: '/icon/chart--minimum.svg', }, - 'icon.circle-packing': { - '_original': { - '$value': '/icon/circle-packing.svg', + 'icon.chart--multi-line': { + _original: { + $value: '/icon/chart--multi-line.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle-packing', - '$type': 'link', - '$value': '/icon/circle-packing.svg', + id: 'icon.chart--multi-line', + $type: 'link', + $value: '/icon/chart--multi-line.svg', }, - 'icon.circle-stroke': { - '_original': { - '$value': '/icon/circle-stroke.svg', + 'icon.chart--multitype': { + _original: { + $value: '/icon/chart--multitype.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circle-stroke', - '$type': 'link', - '$value': '/icon/circle-stroke.svg', + id: 'icon.chart--multitype', + $type: 'link', + $value: '/icon/chart--multitype.svg', }, - 'icon.circuit-composer': { - '_original': { - '$value': '/icon/circuit-composer.svg', + 'icon.chart--network': { + _original: { + $value: '/icon/chart--network.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.circuit-composer', - '$type': 'link', - '$value': '/icon/circuit-composer.svg', + id: 'icon.chart--network', + $type: 'link', + $value: '/icon/chart--network.svg', }, - 'icon.classification': { - '_original': { - '$value': '/icon/classification.svg', + 'icon.chart--parallel': { + _original: { + $value: '/icon/chart--parallel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.classification', - '$type': 'link', - '$value': '/icon/classification.svg', + id: 'icon.chart--parallel', + $type: 'link', + $value: '/icon/chart--parallel.svg', }, - 'icon.classifier--language': { - '_original': { - '$value': '/icon/classifier--language.svg', + 'icon.chart--pie': { + _original: { + $value: '/icon/chart--pie.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.classifier--language', - '$type': 'link', - '$value': '/icon/classifier--language.svg', + id: 'icon.chart--pie', + $type: 'link', + $value: '/icon/chart--pie.svg', }, - 'icon.clean': { - '_original': { - '$value': '/icon/clean.svg', + 'icon.chart--point': { + _original: { + $value: '/icon/chart--point.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.clean', - '$type': 'link', - '$value': '/icon/clean.svg', + id: 'icon.chart--point', + $type: 'link', + $value: '/icon/chart--point.svg', }, - 'icon.close': { - '_original': { - '$value': '/icon/close.svg', + 'icon.chart--population': { + _original: { + $value: '/icon/chart--population.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.close', - '$type': 'link', - '$value': '/icon/close.svg', + id: 'icon.chart--population', + $type: 'link', + $value: '/icon/chart--population.svg', }, - 'icon.close--filled': { - '_original': { - '$value': '/icon/close--filled.svg', + 'icon.chart--radar': { + _original: { + $value: '/icon/chart--radar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.close--filled', - '$type': 'link', - '$value': '/icon/close--filled.svg', + id: 'icon.chart--radar', + $type: 'link', + $value: '/icon/chart--radar.svg', }, - 'icon.close--outline': { - '_original': { - '$value': '/icon/close--outline.svg', + 'icon.chart--radial': { + _original: { + $value: '/icon/chart--radial.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.close--outline', - '$type': 'link', - '$value': '/icon/close--outline.svg', + id: 'icon.chart--radial', + $type: 'link', + $value: '/icon/chart--radial.svg', }, - 'icon.closed-caption': { - '_original': { - '$value': '/icon/closed-caption.svg', + 'icon.chart--relationship': { + _original: { + $value: '/icon/chart--relationship.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.closed-caption', - '$type': 'link', - '$value': '/icon/closed-caption.svg', + id: 'icon.chart--relationship', + $type: 'link', + $value: '/icon/chart--relationship.svg', }, - 'icon.closed-caption--alt': { - '_original': { - '$value': '/icon/closed-caption--alt.svg', + 'icon.chart--ring': { + _original: { + $value: '/icon/chart--ring.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.closed-caption--alt', - '$type': 'link', - '$value': '/icon/closed-caption--alt.svg', + id: 'icon.chart--ring', + $type: 'link', + $value: '/icon/chart--ring.svg', }, - 'icon.closed-caption--filled': { - '_original': { - '$value': '/icon/closed-caption--filled.svg', + 'icon.chart--river': { + _original: { + $value: '/icon/chart--river.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.closed-caption--filled', - '$type': 'link', - '$value': '/icon/closed-caption--filled.svg', + id: 'icon.chart--river', + $type: 'link', + $value: '/icon/chart--river.svg', }, - 'icon.cloud': { - '_original': { - '$value': '/icon/cloud.svg', + 'icon.chart--rose': { + _original: { + $value: '/icon/chart--rose.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud', - '$type': 'link', - '$value': '/icon/cloud.svg', + id: 'icon.chart--rose', + $type: 'link', + $value: '/icon/chart--rose.svg', }, - 'icon.cloud--alerting': { - '_original': { - '$value': '/icon/cloud--alerting.svg', + 'icon.chart--scatter': { + _original: { + $value: '/icon/chart--scatter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--alerting', - '$type': 'link', - '$value': '/icon/cloud--alerting.svg', + id: 'icon.chart--scatter', + $type: 'link', + $value: '/icon/chart--scatter.svg', }, - 'icon.cloud--auditing': { - '_original': { - '$value': '/icon/cloud--auditing.svg', + 'icon.chart--spiral': { + _original: { + $value: '/icon/chart--spiral.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--auditing', - '$type': 'link', - '$value': '/icon/cloud--auditing.svg', + id: 'icon.chart--spiral', + $type: 'link', + $value: '/icon/chart--spiral.svg', }, - 'icon.cloud--data-ops': { - '_original': { - '$value': '/icon/cloud--data-ops.svg', + 'icon.chart--stacked': { + _original: { + $value: '/icon/chart--stacked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--data-ops', - '$type': 'link', - '$value': '/icon/cloud--data-ops.svg', + id: 'icon.chart--stacked', + $type: 'link', + $value: '/icon/chart--stacked.svg', }, - 'icon.cloud--download': { - '_original': { - '$value': '/icon/cloud--download.svg', + 'icon.chart--stepper': { + _original: { + $value: '/icon/chart--stepper.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--download', - '$type': 'link', - '$value': '/icon/cloud--download.svg', + id: 'icon.chart--stepper', + $type: 'link', + $value: '/icon/chart--stepper.svg', }, - 'icon.cloud--lightning': { - '_original': { - '$value': '/icon/cloud--lightning.svg', + 'icon.chart--sunburst': { + _original: { + $value: '/icon/chart--sunburst.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--lightning', - '$type': 'link', - '$value': '/icon/cloud--lightning.svg', + id: 'icon.chart--sunburst', + $type: 'link', + $value: '/icon/chart--sunburst.svg', }, - 'icon.cloud--logging': { - '_original': { - '$value': '/icon/cloud--logging.svg', + 'icon.chart--t-sne': { + _original: { + $value: '/icon/chart--t-sne.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--logging', - '$type': 'link', - '$value': '/icon/cloud--logging.svg', + id: 'icon.chart--t-sne', + $type: 'link', + $value: '/icon/chart--t-sne.svg', }, - 'icon.cloud--monitoring': { - '_original': { - '$value': '/icon/cloud--monitoring.svg', + 'icon.chart--treemap': { + _original: { + $value: '/icon/chart--treemap.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--monitoring', - '$type': 'link', - '$value': '/icon/cloud--monitoring.svg', + id: 'icon.chart--treemap', + $type: 'link', + $value: '/icon/chart--treemap.svg', }, - 'icon.cloud--offline': { - '_original': { - '$value': '/icon/cloud--offline.svg', + 'icon.chart--venn-diagram': { + _original: { + $value: '/icon/chart--venn-diagram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--offline', - '$type': 'link', - '$value': '/icon/cloud--offline.svg', + id: 'icon.chart--venn-diagram', + $type: 'link', + $value: '/icon/chart--venn-diagram.svg', }, - 'icon.cloud--rain': { - '_original': { - '$value': '/icon/cloud--rain.svg', + 'icon.chart--violin-plot': { + _original: { + $value: '/icon/chart--violin-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--rain', - '$type': 'link', - '$value': '/icon/cloud--rain.svg', + id: 'icon.chart--violin-plot', + $type: 'link', + $value: '/icon/chart--violin-plot.svg', }, - 'icon.cloud--service-management': { - '_original': { - '$value': '/icon/cloud--service-management.svg', + 'icon.chart--waterfall': { + _original: { + $value: '/icon/chart--waterfall.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--service-management', - '$type': 'link', - '$value': '/icon/cloud--service-management.svg', + id: 'icon.chart--waterfall', + $type: 'link', + $value: '/icon/chart--waterfall.svg', }, - 'icon.cloud--snow': { - '_original': { - '$value': '/icon/cloud--snow.svg', + 'icon.chart--win-loss': { + _original: { + $value: '/icon/chart--win-loss.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--snow', - '$type': 'link', - '$value': '/icon/cloud--snow.svg', + id: 'icon.chart--win-loss', + $type: 'link', + $value: '/icon/chart--win-loss.svg', }, - 'icon.cloud--upload': { - '_original': { - '$value': '/icon/cloud--upload.svg', + 'icon.chat': { + _original: { + $value: '/icon/chat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud--upload', - '$type': 'link', - '$value': '/icon/cloud--upload.svg', + id: 'icon.chat', + $type: 'link', + $value: '/icon/chat.svg', }, - 'icon.cloud-app': { - '_original': { - '$value': '/icon/cloud-app.svg', + 'icon.chat--launch': { + _original: { + $value: '/icon/chat--launch.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-app', - '$type': 'link', - '$value': '/icon/cloud-app.svg', + id: 'icon.chat--launch', + $type: 'link', + $value: '/icon/chat--launch.svg', }, - 'icon.cloud-ceiling': { - '_original': { - '$value': '/icon/cloud-ceiling.svg', + 'icon.chat--off': { + _original: { + $value: '/icon/chat--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-ceiling', - '$type': 'link', - '$value': '/icon/cloud-ceiling.svg', + id: 'icon.chat--off', + $type: 'link', + $value: '/icon/chat--off.svg', }, - 'icon.cloud-foundry--1': { - '_original': { - '$value': '/icon/cloud-foundry--1.svg', + 'icon.chat--operational': { + _original: { + $value: '/icon/chat--operational.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-foundry--1', - '$type': 'link', - '$value': '/icon/cloud-foundry--1.svg', + id: 'icon.chat--operational', + $type: 'link', + $value: '/icon/chat--operational.svg', }, - 'icon.cloud-foundry--2': { - '_original': { - '$value': '/icon/cloud-foundry--2.svg', + 'icon.chat-bot': { + _original: { + $value: '/icon/chat-bot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-foundry--2', - '$type': 'link', - '$value': '/icon/cloud-foundry--2.svg', + id: 'icon.chat-bot', + $type: 'link', + $value: '/icon/chat-bot.svg', }, - 'icon.cloud-registry': { - '_original': { - '$value': '/icon/cloud-registry.svg', + 'icon.checkbox': { + _original: { + $value: '/icon/checkbox.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-registry', - '$type': 'link', - '$value': '/icon/cloud-registry.svg', + id: 'icon.checkbox', + $type: 'link', + $value: '/icon/checkbox.svg', }, - 'icon.cloud-satellite': { - '_original': { - '$value': '/icon/cloud-satellite.svg', + 'icon.checkbox--checked': { + _original: { + $value: '/icon/checkbox--checked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-satellite', - '$type': 'link', - '$value': '/icon/cloud-satellite.svg', + id: 'icon.checkbox--checked', + $type: 'link', + $value: '/icon/checkbox--checked.svg', }, - 'icon.cloud-satellite--config': { - '_original': { - '$value': '/icon/cloud-satellite--config.svg', + 'icon.checkbox--checked--filled': { + _original: { + $value: '/icon/checkbox--checked--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-satellite--config', - '$type': 'link', - '$value': '/icon/cloud-satellite--config.svg', + id: 'icon.checkbox--checked--filled', + $type: 'link', + $value: '/icon/checkbox--checked--filled.svg', }, - 'icon.cloud-satellite--link': { - '_original': { - '$value': '/icon/cloud-satellite--link.svg', + 'icon.checkbox--indeterminate': { + _original: { + $value: '/icon/checkbox--indeterminate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-satellite--link', - '$type': 'link', - '$value': '/icon/cloud-satellite--link.svg', + id: 'icon.checkbox--indeterminate', + $type: 'link', + $value: '/icon/checkbox--indeterminate.svg', }, - 'icon.cloud-satellite--services': { - '_original': { - '$value': '/icon/cloud-satellite--services.svg', + 'icon.checkbox--indeterminate--filled': { + _original: { + $value: '/icon/checkbox--indeterminate--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-satellite--services', - '$type': 'link', - '$value': '/icon/cloud-satellite--services.svg', + id: 'icon.checkbox--indeterminate--filled', + $type: 'link', + $value: '/icon/checkbox--indeterminate--filled.svg', }, - 'icon.cloud-services': { - '_original': { - '$value': '/icon/cloud-services.svg', + 'icon.checkbox--undeterminate': { + _original: { + $value: '/icon/checkbox--undeterminate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloud-services', - '$type': 'link', - '$value': '/icon/cloud-services.svg', + id: 'icon.checkbox--undeterminate', + $type: 'link', + $value: '/icon/checkbox--undeterminate.svg', }, - 'icon.cloudy': { - '_original': { - '$value': '/icon/cloudy.svg', + 'icon.checkbox--undeterminate--filled': { + _original: { + $value: '/icon/checkbox--undeterminate--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cloudy', - '$type': 'link', - '$value': '/icon/cloudy.svg', + id: 'icon.checkbox--undeterminate--filled', + $type: 'link', + $value: '/icon/checkbox--undeterminate--filled.svg', }, - 'icon.cobb-angle': { - '_original': { - '$value': '/icon/cobb-angle.svg', + 'icon.checkmark': { + _original: { + $value: '/icon/checkmark.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cobb-angle', - '$type': 'link', - '$value': '/icon/cobb-angle.svg', + id: 'icon.checkmark', + $type: 'link', + $value: '/icon/checkmark.svg', }, - 'icon.code': { - '_original': { - '$value': '/icon/code.svg', + 'icon.checkmark--filled': { + _original: { + $value: '/icon/checkmark--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.code', - '$type': 'link', - '$value': '/icon/code.svg', + id: 'icon.checkmark--filled', + $type: 'link', + $value: '/icon/checkmark--filled.svg', }, - 'icon.code--hide': { - '_original': { - '$value': '/icon/code--hide.svg', + 'icon.checkmark--filled--error': { + _original: { + $value: '/icon/checkmark--filled--error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.code--hide', - '$type': 'link', - '$value': '/icon/code--hide.svg', + id: 'icon.checkmark--filled--error', + $type: 'link', + $value: '/icon/checkmark--filled--error.svg', }, - 'icon.code--reference': { - '_original': { - '$value': '/icon/code--reference.svg', + 'icon.checkmark--filled--warning': { + _original: { + $value: '/icon/checkmark--filled--warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.code--reference', - '$type': 'link', - '$value': '/icon/code--reference.svg', + id: 'icon.checkmark--filled--warning', + $type: 'link', + $value: '/icon/checkmark--filled--warning.svg', }, - 'icon.code-signing-service': { - '_original': { - '$value': '/icon/code-signing-service.svg', + 'icon.checkmark--outline': { + _original: { + $value: '/icon/checkmark--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.code-signing-service', - '$type': 'link', - '$value': '/icon/code-signing-service.svg', + id: 'icon.checkmark--outline', + $type: 'link', + $value: '/icon/checkmark--outline.svg', }, - 'icon.cognitive': { - '_original': { - '$value': '/icon/cognitive.svg', + 'icon.checkmark--outline--error': { + _original: { + $value: '/icon/checkmark--outline--error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cognitive', - '$type': 'link', - '$value': '/icon/cognitive.svg', + id: 'icon.checkmark--outline--error', + $type: 'link', + $value: '/icon/checkmark--outline--error.svg', }, - 'icon.collaborate': { - '_original': { - '$value': '/icon/collaborate.svg', + 'icon.checkmark--outline--warning': { + _original: { + $value: '/icon/checkmark--outline--warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.collaborate', - '$type': 'link', - '$value': '/icon/collaborate.svg', + id: 'icon.checkmark--outline--warning', + $type: 'link', + $value: '/icon/checkmark--outline--warning.svg', }, - 'icon.collapse-all': { - '_original': { - '$value': '/icon/collapse-all.svg', + 'icon.chemistry': { + _original: { + $value: '/icon/chemistry.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.collapse-all', - '$type': 'link', - '$value': '/icon/collapse-all.svg', + id: 'icon.chemistry', + $type: 'link', + $value: '/icon/chemistry.svg', }, - 'icon.collapse-categories': { - '_original': { - '$value': '/icon/collapse-categories.svg', + 'icon.chemistry--reference': { + _original: { + $value: '/icon/chemistry--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.collapse-categories', - '$type': 'link', - '$value': '/icon/collapse-categories.svg', + id: 'icon.chemistry--reference', + $type: 'link', + $value: '/icon/chemistry--reference.svg', }, - 'icon.color-palette': { - '_original': { - '$value': '/icon/color-palette.svg', + 'icon.chevron--down': { + _original: { + $value: '/icon/chevron--down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.color-palette', - '$type': 'link', - '$value': '/icon/color-palette.svg', + id: 'icon.chevron--down', + $type: 'link', + $value: '/icon/chevron--down.svg', }, - 'icon.color-switch': { - '_original': { - '$value': '/icon/color-switch.svg', + 'icon.chevron--left': { + _original: { + $value: '/icon/chevron--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.color-switch', - '$type': 'link', - '$value': '/icon/color-switch.svg', + id: 'icon.chevron--left', + $type: 'link', + $value: '/icon/chevron--left.svg', }, - 'icon.column': { - '_original': { - '$value': '/icon/column.svg', + 'icon.chevron--mini': { + _original: { + $value: '/icon/chevron--mini.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.column', - '$type': 'link', - '$value': '/icon/column.svg', + id: 'icon.chevron--mini', + $type: 'link', + $value: '/icon/chevron--mini.svg', }, - 'icon.column--delete': { - '_original': { - '$value': '/icon/column--delete.svg', + 'icon.chevron--right': { + _original: { + $value: '/icon/chevron--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.column--delete', - '$type': 'link', - '$value': '/icon/column--delete.svg', + id: 'icon.chevron--right', + $type: 'link', + $value: '/icon/chevron--right.svg', }, - 'icon.column--insert': { - '_original': { - '$value': '/icon/column--insert.svg', + 'icon.chevron--sort': { + _original: { + $value: '/icon/chevron--sort.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.column--insert', - '$type': 'link', - '$value': '/icon/column--insert.svg', + id: 'icon.chevron--sort', + $type: 'link', + $value: '/icon/chevron--sort.svg', }, - 'icon.column-dependency': { - '_original': { - '$value': '/icon/column-dependency.svg', + 'icon.chevron--sort--down': { + _original: { + $value: '/icon/chevron--sort--down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.column-dependency', - '$type': 'link', - '$value': '/icon/column-dependency.svg', + id: 'icon.chevron--sort--down', + $type: 'link', + $value: '/icon/chevron--sort--down.svg', }, - 'icon.commit': { - '_original': { - '$value': '/icon/commit.svg', + 'icon.chevron--sort--up': { + _original: { + $value: '/icon/chevron--sort--up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.commit', - '$type': 'link', - '$value': '/icon/commit.svg', + id: 'icon.chevron--sort--up', + $type: 'link', + $value: '/icon/chevron--sort--up.svg', }, - 'icon.communication--unified': { - '_original': { - '$value': '/icon/communication--unified.svg', + 'icon.chevron--up': { + _original: { + $value: '/icon/chevron--up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.communication--unified', - '$type': 'link', - '$value': '/icon/communication--unified.svg', + id: 'icon.chevron--up', + $type: 'link', + $value: '/icon/chevron--up.svg', }, - 'icon.compare': { - '_original': { - '$value': '/icon/compare.svg', + 'icon.chip': { + _original: { + $value: '/icon/chip.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.compare', - '$type': 'link', - '$value': '/icon/compare.svg', + id: 'icon.chip', + $type: 'link', + $value: '/icon/chip.svg', }, - 'icon.compass': { - '_original': { - '$value': '/icon/compass.svg', + 'icon.choices': { + _original: { + $value: '/icon/choices.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.compass', - '$type': 'link', - '$value': '/icon/compass.svg', + id: 'icon.choices', + $type: 'link', + $value: '/icon/choices.svg', }, - 'icon.composer-edit': { - '_original': { - '$value': '/icon/composer-edit.svg', + 'icon.choose-item': { + _original: { + $value: '/icon/choose-item.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.composer-edit', - '$type': 'link', - '$value': '/icon/composer-edit.svg', + id: 'icon.choose-item', + $type: 'link', + $value: '/icon/choose-item.svg', }, - 'icon.concept': { - '_original': { - '$value': '/icon/concept.svg', + 'icon.choropleth-map': { + _original: { + $value: '/icon/choropleth-map.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.concept', - '$type': 'link', - '$value': '/icon/concept.svg', + id: 'icon.choropleth-map', + $type: 'link', + $value: '/icon/choropleth-map.svg', }, - 'icon.condition--point': { - '_original': { - '$value': '/icon/condition--point.svg', + 'icon.cics--cmas': { + _original: { + $value: '/icon/cics--cmas.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.condition--point', - '$type': 'link', - '$value': '/icon/condition--point.svg', + id: 'icon.cics--cmas', + $type: 'link', + $value: '/icon/cics--cmas.svg', }, - 'icon.condition--wait-point': { - '_original': { - '$value': '/icon/condition--wait-point.svg', + 'icon.cics--explorer': { + _original: { + $value: '/icon/cics--explorer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.condition--wait-point', - '$type': 'link', - '$value': '/icon/condition--wait-point.svg', + id: 'icon.cics--explorer', + $type: 'link', + $value: '/icon/cics--explorer.svg', }, - 'icon.connect': { - '_original': { - '$value': '/icon/connect.svg', + 'icon.cics--system-group': { + _original: { + $value: '/icon/cics--system-group.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connect', - '$type': 'link', - '$value': '/icon/connect.svg', + id: 'icon.cics--system-group', + $type: 'link', + $value: '/icon/cics--system-group.svg', }, - 'icon.connect--recursive': { - '_original': { - '$value': '/icon/connect--recursive.svg', + 'icon.cics--wui-region': { + _original: { + $value: '/icon/cics--wui-region.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connect--recursive', - '$type': 'link', - '$value': '/icon/connect--recursive.svg', + id: 'icon.cics--wui-region', + $type: 'link', + $value: '/icon/cics--wui-region.svg', }, - 'icon.connect--source': { - '_original': { - '$value': '/icon/connect--source.svg', + 'icon.cics-region': { + _original: { + $value: '/icon/cics-region.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connect--source', - '$type': 'link', - '$value': '/icon/connect--source.svg', + id: 'icon.cics-region', + $type: 'link', + $value: '/icon/cics-region.svg', }, - 'icon.connect--target': { - '_original': { - '$value': '/icon/connect--target.svg', + 'icon.cics-region--routing': { + _original: { + $value: '/icon/cics-region--routing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connect--target', - '$type': 'link', - '$value': '/icon/connect--target.svg', + id: 'icon.cics-region--routing', + $type: 'link', + $value: '/icon/cics-region--routing.svg', }, - 'icon.connection--receive': { - '_original': { - '$value': '/icon/connection--receive.svg', + 'icon.cics-region--target': { + _original: { + $value: '/icon/cics-region--target.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connection--receive', - '$type': 'link', - '$value': '/icon/connection--receive.svg', + id: 'icon.cics-region--target', + $type: 'link', + $value: '/icon/cics-region--target.svg', }, - 'icon.connection--send': { - '_original': { - '$value': '/icon/connection--send.svg', + 'icon.cicsplex': { + _original: { + $value: '/icon/cicsplex.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connection--send', - '$type': 'link', - '$value': '/icon/connection--send.svg', + id: 'icon.cicsplex', + $type: 'link', + $value: '/icon/cicsplex.svg', }, - 'icon.connection--two-way': { - '_original': { - '$value': '/icon/connection--two-way.svg', + 'icon.circle--filled': { + _original: { + $value: '/icon/circle--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connection--two-way', - '$type': 'link', - '$value': '/icon/connection--two-way.svg', + id: 'icon.circle--filled', + $type: 'link', + $value: '/icon/circle--filled.svg', }, - 'icon.connection-signal': { - '_original': { - '$value': '/icon/connection-signal.svg', + 'icon.circle--solid': { + _original: { + $value: '/icon/circle--solid.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connection-signal', - '$type': 'link', - '$value': '/icon/connection-signal.svg', + id: 'icon.circle--solid', + $type: 'link', + $value: '/icon/circle--solid.svg', }, - 'icon.connection-signal--off': { - '_original': { - '$value': '/icon/connection-signal--off.svg', + 'icon.circle-dash': { + _original: { + $value: '/icon/circle-dash.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.connection-signal--off', - '$type': 'link', - '$value': '/icon/connection-signal--off.svg', + id: 'icon.circle-dash', + $type: 'link', + $value: '/icon/circle-dash.svg', }, - 'icon.construction': { - '_original': { - '$value': '/icon/construction.svg', + 'icon.circle-fill': { + _original: { + $value: '/icon/circle-fill.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.construction', - '$type': 'link', - '$value': '/icon/construction.svg', + id: 'icon.circle-fill', + $type: 'link', + $value: '/icon/circle-fill.svg', }, - 'icon.container-registry': { - '_original': { - '$value': '/icon/container-registry.svg', + 'icon.circle-measurement': { + _original: { + $value: '/icon/circle-measurement.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.container-registry', - '$type': 'link', - '$value': '/icon/container-registry.svg', + id: 'icon.circle-measurement', + $type: 'link', + $value: '/icon/circle-measurement.svg', }, - 'icon.container-services': { - '_original': { - '$value': '/icon/container-services.svg', + 'icon.circle-packing': { + _original: { + $value: '/icon/circle-packing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.container-services', - '$type': 'link', - '$value': '/icon/container-services.svg', + id: 'icon.circle-packing', + $type: 'link', + $value: '/icon/circle-packing.svg', }, - 'icon.container-software': { - '_original': { - '$value': '/icon/container-software.svg', + 'icon.circle-stroke': { + _original: { + $value: '/icon/circle-stroke.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.container-software', - '$type': 'link', - '$value': '/icon/container-software.svg', + id: 'icon.circle-stroke', + $type: 'link', + $value: '/icon/circle-stroke.svg', }, - 'icon.content-delivery-network': { - '_original': { - '$value': '/icon/content-delivery-network.svg', + 'icon.circuit-composer': { + _original: { + $value: '/icon/circuit-composer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.content-delivery-network', - '$type': 'link', - '$value': '/icon/content-delivery-network.svg', + id: 'icon.circuit-composer', + $type: 'link', + $value: '/icon/circuit-composer.svg', }, - 'icon.content-view': { - '_original': { - '$value': '/icon/content-view.svg', + 'icon.classification': { + _original: { + $value: '/icon/classification.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.content-view', - '$type': 'link', - '$value': '/icon/content-view.svg', + id: 'icon.classification', + $type: 'link', + $value: '/icon/classification.svg', }, - 'icon.continue': { - '_original': { - '$value': '/icon/continue.svg', + 'icon.classifier--language': { + _original: { + $value: '/icon/classifier--language.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.continue', - '$type': 'link', - '$value': '/icon/continue.svg', + id: 'icon.classifier--language', + $type: 'link', + $value: '/icon/classifier--language.svg', }, - 'icon.continue--filled': { - '_original': { - '$value': '/icon/continue--filled.svg', + 'icon.clean': { + _original: { + $value: '/icon/clean.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.continue--filled', - '$type': 'link', - '$value': '/icon/continue--filled.svg', + id: 'icon.clean', + $type: 'link', + $value: '/icon/clean.svg', }, - 'icon.contour--draw': { - '_original': { - '$value': '/icon/contour--draw.svg', + 'icon.close': { + _original: { + $value: '/icon/close.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.contour--draw', - '$type': 'link', - '$value': '/icon/contour--draw.svg', + id: 'icon.close', + $type: 'link', + $value: '/icon/close.svg', }, - 'icon.contour--edit': { - '_original': { - '$value': '/icon/contour--edit.svg', + 'icon.close--filled': { + _original: { + $value: '/icon/close--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.contour--edit', - '$type': 'link', - '$value': '/icon/contour--edit.svg', + id: 'icon.close--filled', + $type: 'link', + $value: '/icon/close--filled.svg', }, - 'icon.contour-finding': { - '_original': { - '$value': '/icon/contour-finding.svg', + 'icon.close--outline': { + _original: { + $value: '/icon/close--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.contour-finding', - '$type': 'link', - '$value': '/icon/contour-finding.svg', + id: 'icon.close--outline', + $type: 'link', + $value: '/icon/close--outline.svg', }, - 'icon.contrast': { - '_original': { - '$value': '/icon/contrast.svg', + 'icon.closed-caption': { + _original: { + $value: '/icon/closed-caption.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.contrast', - '$type': 'link', - '$value': '/icon/contrast.svg', + id: 'icon.closed-caption', + $type: 'link', + $value: '/icon/closed-caption.svg', }, - 'icon.convert-to-cloud': { - '_original': { - '$value': '/icon/convert-to-cloud.svg', + 'icon.closed-caption--alt': { + _original: { + $value: '/icon/closed-caption--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.convert-to-cloud', - '$type': 'link', - '$value': '/icon/convert-to-cloud.svg', + id: 'icon.closed-caption--alt', + $type: 'link', + $value: '/icon/closed-caption--alt.svg', }, - 'icon.copy': { - '_original': { - '$value': '/icon/copy.svg', + 'icon.closed-caption--filled': { + _original: { + $value: '/icon/closed-caption--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.copy', - '$type': 'link', - '$value': '/icon/copy.svg', + id: 'icon.closed-caption--filled', + $type: 'link', + $value: '/icon/closed-caption--filled.svg', }, - 'icon.copy--file': { - '_original': { - '$value': '/icon/copy--file.svg', + 'icon.cloud': { + _original: { + $value: '/icon/cloud.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.copy--file', - '$type': 'link', - '$value': '/icon/copy--file.svg', + id: 'icon.cloud', + $type: 'link', + $value: '/icon/cloud.svg', }, - 'icon.copy--link': { - '_original': { - '$value': '/icon/copy--link.svg', + 'icon.cloud--alerting': { + _original: { + $value: '/icon/cloud--alerting.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.copy--link', - '$type': 'link', - '$value': '/icon/copy--link.svg', + id: 'icon.cloud--alerting', + $type: 'link', + $value: '/icon/cloud--alerting.svg', }, - 'icon.corn': { - '_original': { - '$value': '/icon/corn.svg', + 'icon.cloud--auditing': { + _original: { + $value: '/icon/cloud--auditing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.corn', - '$type': 'link', - '$value': '/icon/corn.svg', + id: 'icon.cloud--auditing', + $type: 'link', + $value: '/icon/cloud--auditing.svg', }, - 'icon.corner': { - '_original': { - '$value': '/icon/corner.svg', + 'icon.cloud--data-ops': { + _original: { + $value: '/icon/cloud--data-ops.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.corner', - '$type': 'link', - '$value': '/icon/corner.svg', + id: 'icon.cloud--data-ops', + $type: 'link', + $value: '/icon/cloud--data-ops.svg', }, - 'icon.coronavirus': { - '_original': { - '$value': '/icon/coronavirus.svg', + 'icon.cloud--download': { + _original: { + $value: '/icon/cloud--download.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.coronavirus', - '$type': 'link', - '$value': '/icon/coronavirus.svg', + id: 'icon.cloud--download', + $type: 'link', + $value: '/icon/cloud--download.svg', }, - 'icon.cost': { - '_original': { - '$value': '/icon/cost.svg', + 'icon.cloud--lightning': { + _original: { + $value: '/icon/cloud--lightning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cost', - '$type': 'link', - '$value': '/icon/cost.svg', + id: 'icon.cloud--lightning', + $type: 'link', + $value: '/icon/cloud--lightning.svg', }, - 'icon.cost--total': { - '_original': { - '$value': '/icon/cost--total.svg', + 'icon.cloud--logging': { + _original: { + $value: '/icon/cloud--logging.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cost--total', - '$type': 'link', - '$value': '/icon/cost--total.svg', + id: 'icon.cloud--logging', + $type: 'link', + $value: '/icon/cloud--logging.svg', }, - 'icon.cough': { - '_original': { - '$value': '/icon/cough.svg', + 'icon.cloud--monitoring': { + _original: { + $value: '/icon/cloud--monitoring.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cough', - '$type': 'link', - '$value': '/icon/cough.svg', + id: 'icon.cloud--monitoring', + $type: 'link', + $value: '/icon/cloud--monitoring.svg', }, - 'icon.course': { - '_original': { - '$value': '/icon/course.svg', + 'icon.cloud--offline': { + _original: { + $value: '/icon/cloud--offline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.course', - '$type': 'link', - '$value': '/icon/course.svg', + id: 'icon.cloud--offline', + $type: 'link', + $value: '/icon/cloud--offline.svg', }, - 'icon.covariate': { - '_original': { - '$value': '/icon/covariate.svg', + 'icon.cloud--rain': { + _original: { + $value: '/icon/cloud--rain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.covariate', - '$type': 'link', - '$value': '/icon/covariate.svg', + id: 'icon.cloud--rain', + $type: 'link', + $value: '/icon/cloud--rain.svg', }, - 'icon.credentials': { - '_original': { - '$value': '/icon/credentials.svg', + 'icon.cloud--service-management': { + _original: { + $value: '/icon/cloud--service-management.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.credentials', - '$type': 'link', - '$value': '/icon/credentials.svg', + id: 'icon.cloud--service-management', + $type: 'link', + $value: '/icon/cloud--service-management.svg', }, - 'icon.critical': { - '_original': { - '$value': '/icon/critical.svg', + 'icon.cloud--snow': { + _original: { + $value: '/icon/cloud--snow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.critical', - '$type': 'link', - '$value': '/icon/critical.svg', + id: 'icon.cloud--snow', + $type: 'link', + $value: '/icon/cloud--snow.svg', }, - 'icon.critical-severity': { - '_original': { - '$value': '/icon/critical-severity.svg', + 'icon.cloud--upload': { + _original: { + $value: '/icon/cloud--upload.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.critical-severity', - '$type': 'link', - '$value': '/icon/critical-severity.svg', + id: 'icon.cloud--upload', + $type: 'link', + $value: '/icon/cloud--upload.svg', }, - 'icon.crop': { - '_original': { - '$value': '/icon/crop.svg', + 'icon.cloud-app': { + _original: { + $value: '/icon/cloud-app.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.crop', - '$type': 'link', - '$value': '/icon/crop.svg', + id: 'icon.cloud-app', + $type: 'link', + $value: '/icon/cloud-app.svg', }, - 'icon.crop-growth': { - '_original': { - '$value': '/icon/crop-growth.svg', + 'icon.cloud-ceiling': { + _original: { + $value: '/icon/cloud-ceiling.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.crop-growth', - '$type': 'link', - '$value': '/icon/crop-growth.svg', + id: 'icon.cloud-ceiling', + $type: 'link', + $value: '/icon/cloud-ceiling.svg', }, - 'icon.crop-health': { - '_original': { - '$value': '/icon/crop-health.svg', + 'icon.cloud-foundry--1': { + _original: { + $value: '/icon/cloud-foundry--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.crop-health', - '$type': 'link', - '$value': '/icon/crop-health.svg', + id: 'icon.cloud-foundry--1', + $type: 'link', + $value: '/icon/cloud-foundry--1.svg', }, - 'icon.cross-reference': { - '_original': { - '$value': '/icon/cross-reference.svg', + 'icon.cloud-foundry--2': { + _original: { + $value: '/icon/cloud-foundry--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cross-reference', - '$type': 'link', - '$value': '/icon/cross-reference.svg', + id: 'icon.cloud-foundry--2', + $type: 'link', + $value: '/icon/cloud-foundry--2.svg', }, - 'icon.cross-tab': { - '_original': { - '$value': '/icon/cross-tab.svg', + 'icon.cloud-registry': { + _original: { + $value: '/icon/cloud-registry.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cross-tab', - '$type': 'link', - '$value': '/icon/cross-tab.svg', + id: 'icon.cloud-registry', + $type: 'link', + $value: '/icon/cloud-registry.svg', }, - 'icon.crossroads': { - '_original': { - '$value': '/icon/crossroads.svg', + 'icon.cloud-satellite': { + _original: { + $value: '/icon/cloud-satellite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.crossroads', - '$type': 'link', - '$value': '/icon/crossroads.svg', + id: 'icon.cloud-satellite', + $type: 'link', + $value: '/icon/cloud-satellite.svg', }, - 'icon.crowd-report': { - '_original': { - '$value': '/icon/crowd-report.svg', + 'icon.cloud-satellite--config': { + _original: { + $value: '/icon/cloud-satellite--config.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.crowd-report', - '$type': 'link', - '$value': '/icon/crowd-report.svg', + id: 'icon.cloud-satellite--config', + $type: 'link', + $value: '/icon/cloud-satellite--config.svg', }, - 'icon.crowd-report--filled': { - '_original': { - '$value': '/icon/crowd-report--filled.svg', + 'icon.cloud-satellite--link': { + _original: { + $value: '/icon/cloud-satellite--link.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.crowd-report--filled', - '$type': 'link', - '$value': '/icon/crowd-report--filled.svg', + id: 'icon.cloud-satellite--link', + $type: 'link', + $value: '/icon/cloud-satellite--link.svg', }, - 'icon.CSV': { - '_original': { - '$value': '/icon/CSV.svg', + 'icon.cloud-satellite--services': { + _original: { + $value: '/icon/cloud-satellite--services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.CSV', - '$type': 'link', - '$value': '/icon/CSV.svg', + id: 'icon.cloud-satellite--services', + $type: 'link', + $value: '/icon/cloud-satellite--services.svg', }, - 'icon.cU1': { - '_original': { - '$value': '/icon/cU1.svg', + 'icon.cloud-services': { + _original: { + $value: '/icon/cloud-services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cU1', - '$type': 'link', - '$value': '/icon/cU1.svg', + id: 'icon.cloud-services', + $type: 'link', + $value: '/icon/cloud-services.svg', }, - 'icon.cU3': { - '_original': { - '$value': '/icon/cU3.svg', + 'icon.cloudy': { + _original: { + $value: '/icon/cloudy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cU3', - '$type': 'link', - '$value': '/icon/cU3.svg', + id: 'icon.cloudy', + $type: 'link', + $value: '/icon/cloudy.svg', }, - 'icon.cube': { - '_original': { - '$value': '/icon/cube.svg', + 'icon.cobb-angle': { + _original: { + $value: '/icon/cobb-angle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cube', - '$type': 'link', - '$value': '/icon/cube.svg', + id: 'icon.cobb-angle', + $type: 'link', + $value: '/icon/cobb-angle.svg', }, - 'icon.cube-view': { - '_original': { - '$value': '/icon/cube-view.svg', + 'icon.code': { + _original: { + $value: '/icon/code.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cube-view', - '$type': 'link', - '$value': '/icon/cube-view.svg', + id: 'icon.code', + $type: 'link', + $value: '/icon/code.svg', }, - 'icon.currency': { - '_original': { - '$value': '/icon/currency.svg', + 'icon.code--hide': { + _original: { + $value: '/icon/code--hide.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency', - '$type': 'link', - '$value': '/icon/currency.svg', + id: 'icon.code--hide', + $type: 'link', + $value: '/icon/code--hide.svg', }, - 'icon.currency--baht': { - '_original': { - '$value': '/icon/currency--baht.svg', + 'icon.code--reference': { + _original: { + $value: '/icon/code--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--baht', - '$type': 'link', - '$value': '/icon/currency--baht.svg', + id: 'icon.code--reference', + $type: 'link', + $value: '/icon/code--reference.svg', }, - 'icon.currency--dollar': { - '_original': { - '$value': '/icon/currency--dollar.svg', + 'icon.code-signing-service': { + _original: { + $value: '/icon/code-signing-service.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--dollar', - '$type': 'link', - '$value': '/icon/currency--dollar.svg', + id: 'icon.code-signing-service', + $type: 'link', + $value: '/icon/code-signing-service.svg', }, - 'icon.currency--euro': { - '_original': { - '$value': '/icon/currency--euro.svg', + 'icon.cognitive': { + _original: { + $value: '/icon/cognitive.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--euro', - '$type': 'link', - '$value': '/icon/currency--euro.svg', + id: 'icon.cognitive', + $type: 'link', + $value: '/icon/cognitive.svg', }, - 'icon.currency--lira': { - '_original': { - '$value': '/icon/currency--lira.svg', + 'icon.collaborate': { + _original: { + $value: '/icon/collaborate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--lira', - '$type': 'link', - '$value': '/icon/currency--lira.svg', + id: 'icon.collaborate', + $type: 'link', + $value: '/icon/collaborate.svg', }, - 'icon.currency--pound': { - '_original': { - '$value': '/icon/currency--pound.svg', + 'icon.collapse-all': { + _original: { + $value: '/icon/collapse-all.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--pound', - '$type': 'link', - '$value': '/icon/currency--pound.svg', + id: 'icon.collapse-all', + $type: 'link', + $value: '/icon/collapse-all.svg', }, - 'icon.currency--ruble': { - '_original': { - '$value': '/icon/currency--ruble.svg', + 'icon.collapse-categories': { + _original: { + $value: '/icon/collapse-categories.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--ruble', - '$type': 'link', - '$value': '/icon/currency--ruble.svg', + id: 'icon.collapse-categories', + $type: 'link', + $value: '/icon/collapse-categories.svg', }, - 'icon.currency--rupee': { - '_original': { - '$value': '/icon/currency--rupee.svg', + 'icon.color-palette': { + _original: { + $value: '/icon/color-palette.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--rupee', - '$type': 'link', - '$value': '/icon/currency--rupee.svg', + id: 'icon.color-palette', + $type: 'link', + $value: '/icon/color-palette.svg', }, - 'icon.currency--shekel': { - '_original': { - '$value': '/icon/currency--shekel.svg', + 'icon.color-switch': { + _original: { + $value: '/icon/color-switch.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--shekel', - '$type': 'link', - '$value': '/icon/currency--shekel.svg', + id: 'icon.color-switch', + $type: 'link', + $value: '/icon/color-switch.svg', }, - 'icon.currency--won': { - '_original': { - '$value': '/icon/currency--won.svg', + 'icon.column': { + _original: { + $value: '/icon/column.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--won', - '$type': 'link', - '$value': '/icon/currency--won.svg', + id: 'icon.column', + $type: 'link', + $value: '/icon/column.svg', }, - 'icon.currency--yen': { - '_original': { - '$value': '/icon/currency--yen.svg', + 'icon.column--delete': { + _original: { + $value: '/icon/column--delete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.currency--yen', - '$type': 'link', - '$value': '/icon/currency--yen.svg', + id: 'icon.column--delete', + $type: 'link', + $value: '/icon/column--delete.svg', }, - 'icon.cursor--1': { - '_original': { - '$value': '/icon/cursor--1.svg', + 'icon.column--insert': { + _original: { + $value: '/icon/column--insert.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cursor--1', - '$type': 'link', - '$value': '/icon/cursor--1.svg', + id: 'icon.column--insert', + $type: 'link', + $value: '/icon/column--insert.svg', }, - 'icon.cursor--2': { - '_original': { - '$value': '/icon/cursor--2.svg', + 'icon.column-dependency': { + _original: { + $value: '/icon/column-dependency.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cursor--2', - '$type': 'link', - '$value': '/icon/cursor--2.svg', + id: 'icon.column-dependency', + $type: 'link', + $value: '/icon/column-dependency.svg', }, - 'icon.cut': { - '_original': { - '$value': '/icon/cut.svg', + 'icon.commit': { + _original: { + $value: '/icon/commit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cut', - '$type': 'link', - '$value': '/icon/cut.svg', + id: 'icon.commit', + $type: 'link', + $value: '/icon/commit.svg', }, - 'icon.cut-in-half': { - '_original': { - '$value': '/icon/cut-in-half.svg', + 'icon.communication--unified': { + _original: { + $value: '/icon/communication--unified.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cut-in-half', - '$type': 'link', - '$value': '/icon/cut-in-half.svg', + id: 'icon.communication--unified', + $type: 'link', + $value: '/icon/communication--unified.svg', }, - 'icon.cut-out': { - '_original': { - '$value': '/icon/cut-out.svg', + 'icon.compare': { + _original: { + $value: '/icon/compare.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cut-out', - '$type': 'link', - '$value': '/icon/cut-out.svg', + id: 'icon.compare', + $type: 'link', + $value: '/icon/compare.svg', }, - 'icon.cY': { - '_original': { - '$value': '/icon/cY.svg', + 'icon.compass': { + _original: { + $value: '/icon/compass.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cY', - '$type': 'link', - '$value': '/icon/cY.svg', + id: 'icon.compass', + $type: 'link', + $value: '/icon/compass.svg', }, - 'icon.cyclist': { - '_original': { - '$value': '/icon/cyclist.svg', + 'icon.composer-edit': { + _original: { + $value: '/icon/composer-edit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cyclist', - '$type': 'link', - '$value': '/icon/cyclist.svg', + id: 'icon.composer-edit', + $type: 'link', + $value: '/icon/composer-edit.svg', }, - 'icon.cZ': { - '_original': { - '$value': '/icon/cZ.svg', + 'icon.concept': { + _original: { + $value: '/icon/concept.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.cZ', - '$type': 'link', - '$value': '/icon/cZ.svg', + id: 'icon.concept', + $type: 'link', + $value: '/icon/concept.svg', }, - 'icon.dashboard': { - '_original': { - '$value': '/icon/dashboard.svg', + 'icon.condition--point': { + _original: { + $value: '/icon/condition--point.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dashboard', - '$type': 'link', - '$value': '/icon/dashboard.svg', + id: 'icon.condition--point', + $type: 'link', + $value: '/icon/condition--point.svg', }, - 'icon.dashboard--reference': { - '_original': { - '$value': '/icon/dashboard--reference.svg', + 'icon.condition--wait-point': { + _original: { + $value: '/icon/condition--wait-point.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dashboard--reference', - '$type': 'link', - '$value': '/icon/dashboard--reference.svg', + id: 'icon.condition--wait-point', + $type: 'link', + $value: '/icon/condition--wait-point.svg', }, - 'icon.data--1': { - '_original': { - '$value': '/icon/data--1.svg', + 'icon.connect': { + _original: { + $value: '/icon/connect.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--1', - '$type': 'link', - '$value': '/icon/data--1.svg', + id: 'icon.connect', + $type: 'link', + $value: '/icon/connect.svg', }, - 'icon.data--2': { - '_original': { - '$value': '/icon/data--2.svg', + 'icon.connect--recursive': { + _original: { + $value: '/icon/connect--recursive.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--2', - '$type': 'link', - '$value': '/icon/data--2.svg', + id: 'icon.connect--recursive', + $type: 'link', + $value: '/icon/connect--recursive.svg', }, - 'icon.data--base': { - '_original': { - '$value': '/icon/data--base.svg', + 'icon.connect--source': { + _original: { + $value: '/icon/connect--source.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--base', - '$type': 'link', - '$value': '/icon/data--base.svg', + id: 'icon.connect--source', + $type: 'link', + $value: '/icon/connect--source.svg', }, - 'icon.data--base--alt': { - '_original': { - '$value': '/icon/data--base--alt.svg', + 'icon.connect--target': { + _original: { + $value: '/icon/connect--target.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--base--alt', - '$type': 'link', - '$value': '/icon/data--base--alt.svg', + id: 'icon.connect--target', + $type: 'link', + $value: '/icon/connect--target.svg', }, - 'icon.data--center': { - '_original': { - '$value': '/icon/data--center.svg', + 'icon.connection--receive': { + _original: { + $value: '/icon/connection--receive.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--center', - '$type': 'link', - '$value': '/icon/data--center.svg', + id: 'icon.connection--receive', + $type: 'link', + $value: '/icon/connection--receive.svg', }, - 'icon.data--check': { - '_original': { - '$value': '/icon/data--check.svg', + 'icon.connection--send': { + _original: { + $value: '/icon/connection--send.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--check', - '$type': 'link', - '$value': '/icon/data--check.svg', + id: 'icon.connection--send', + $type: 'link', + $value: '/icon/connection--send.svg', }, - 'icon.data--connected': { - '_original': { - '$value': '/icon/data--connected.svg', + 'icon.connection--two-way': { + _original: { + $value: '/icon/connection--two-way.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--connected', - '$type': 'link', - '$value': '/icon/data--connected.svg', + id: 'icon.connection--two-way', + $type: 'link', + $value: '/icon/connection--two-way.svg', }, - 'icon.data--error': { - '_original': { - '$value': '/icon/data--error.svg', + 'icon.connection-signal': { + _original: { + $value: '/icon/connection-signal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--error', - '$type': 'link', - '$value': '/icon/data--error.svg', + id: 'icon.connection-signal', + $type: 'link', + $value: '/icon/connection-signal.svg', }, - 'icon.data--format': { - '_original': { - '$value': '/icon/data--format.svg', + 'icon.connection-signal--off': { + _original: { + $value: '/icon/connection-signal--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--format', - '$type': 'link', - '$value': '/icon/data--format.svg', + id: 'icon.connection-signal--off', + $type: 'link', + $value: '/icon/connection-signal--off.svg', }, - 'icon.data--reference': { - '_original': { - '$value': '/icon/data--reference.svg', + 'icon.construction': { + _original: { + $value: '/icon/construction.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--reference', - '$type': 'link', - '$value': '/icon/data--reference.svg', + id: 'icon.construction', + $type: 'link', + $value: '/icon/construction.svg', }, - 'icon.data--set': { - '_original': { - '$value': '/icon/data--set.svg', + 'icon.container-registry': { + _original: { + $value: '/icon/container-registry.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--set', - '$type': 'link', - '$value': '/icon/data--set.svg', + id: 'icon.container-registry', + $type: 'link', + $value: '/icon/container-registry.svg', }, - 'icon.data--structured': { - '_original': { - '$value': '/icon/data--structured.svg', + 'icon.container-services': { + _original: { + $value: '/icon/container-services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--structured', - '$type': 'link', - '$value': '/icon/data--structured.svg', + id: 'icon.container-services', + $type: 'link', + $value: '/icon/container-services.svg', }, - 'icon.data--unstructured': { - '_original': { - '$value': '/icon/data--unstructured.svg', + 'icon.container-software': { + _original: { + $value: '/icon/container-software.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--unstructured', - '$type': 'link', - '$value': '/icon/data--unstructured.svg', + id: 'icon.container-software', + $type: 'link', + $value: '/icon/container-software.svg', }, - 'icon.data--view': { - '_original': { - '$value': '/icon/data--view.svg', + 'icon.content-delivery-network': { + _original: { + $value: '/icon/content-delivery-network.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--view', - '$type': 'link', - '$value': '/icon/data--view.svg', + id: 'icon.content-delivery-network', + $type: 'link', + $value: '/icon/content-delivery-network.svg', }, - 'icon.data--view--alt': { - '_original': { - '$value': '/icon/data--view--alt.svg', + 'icon.content-view': { + _original: { + $value: '/icon/content-view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data--view--alt', - '$type': 'link', - '$value': '/icon/data--view--alt.svg', + id: 'icon.content-view', + $type: 'link', + $value: '/icon/content-view.svg', }, - 'icon.data-accessor': { - '_original': { - '$value': '/icon/data-accessor.svg', + 'icon.continue': { + _original: { + $value: '/icon/continue.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-accessor', - '$type': 'link', - '$value': '/icon/data-accessor.svg', + id: 'icon.continue', + $type: 'link', + $value: '/icon/continue.svg', }, - 'icon.data-backup': { - '_original': { - '$value': '/icon/data-backup.svg', + 'icon.continue--filled': { + _original: { + $value: '/icon/continue--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-backup', - '$type': 'link', - '$value': '/icon/data-backup.svg', + id: 'icon.continue--filled', + $type: 'link', + $value: '/icon/continue--filled.svg', }, - 'icon.data-bin': { - '_original': { - '$value': '/icon/data-bin.svg', + 'icon.contour--draw': { + _original: { + $value: '/icon/contour--draw.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-bin', - '$type': 'link', - '$value': '/icon/data-bin.svg', + id: 'icon.contour--draw', + $type: 'link', + $value: '/icon/contour--draw.svg', }, - 'icon.data-blob': { - '_original': { - '$value': '/icon/data-blob.svg', + 'icon.contour--edit': { + _original: { + $value: '/icon/contour--edit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-blob', - '$type': 'link', - '$value': '/icon/data-blob.svg', + id: 'icon.contour--edit', + $type: 'link', + $value: '/icon/contour--edit.svg', }, - 'icon.data-class': { - '_original': { - '$value': '/icon/data-class.svg', + 'icon.contour-finding': { + _original: { + $value: '/icon/contour-finding.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-class', - '$type': 'link', - '$value': '/icon/data-class.svg', + id: 'icon.contour-finding', + $type: 'link', + $value: '/icon/contour-finding.svg', }, - 'icon.data-collection': { - '_original': { - '$value': '/icon/data-collection.svg', + 'icon.contrast': { + _original: { + $value: '/icon/contrast.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-collection', - '$type': 'link', - '$value': '/icon/data-collection.svg', + id: 'icon.contrast', + $type: 'link', + $value: '/icon/contrast.svg', }, - 'icon.data-definition': { - '_original': { - '$value': '/icon/data-definition.svg', + 'icon.convert-to-cloud': { + _original: { + $value: '/icon/convert-to-cloud.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-definition', - '$type': 'link', - '$value': '/icon/data-definition.svg', + id: 'icon.convert-to-cloud', + $type: 'link', + $value: '/icon/convert-to-cloud.svg', }, - 'icon.data-diode': { - '_original': { - '$value': '/icon/data-diode.svg', + 'icon.copy': { + _original: { + $value: '/icon/copy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-diode', - '$type': 'link', - '$value': '/icon/data-diode.svg', + id: 'icon.copy', + $type: 'link', + $value: '/icon/copy.svg', }, - 'icon.data-player': { - '_original': { - '$value': '/icon/data-player.svg', + 'icon.copy--file': { + _original: { + $value: '/icon/copy--file.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-player', - '$type': 'link', - '$value': '/icon/data-player.svg', + id: 'icon.copy--file', + $type: 'link', + $value: '/icon/copy--file.svg', }, - 'icon.data-refinery': { - '_original': { - '$value': '/icon/data-refinery.svg', + 'icon.copy--link': { + _original: { + $value: '/icon/copy--link.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-refinery', - '$type': 'link', - '$value': '/icon/data-refinery.svg', + id: 'icon.copy--link', + $type: 'link', + $value: '/icon/copy--link.svg', }, - 'icon.data-refinery--reference': { - '_original': { - '$value': '/icon/data-refinery--reference.svg', + 'icon.corn': { + _original: { + $value: '/icon/corn.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-refinery--reference', - '$type': 'link', - '$value': '/icon/data-refinery--reference.svg', + id: 'icon.corn', + $type: 'link', + $value: '/icon/corn.svg', }, - 'icon.data-share': { - '_original': { - '$value': '/icon/data-share.svg', + 'icon.corner': { + _original: { + $value: '/icon/corner.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-share', - '$type': 'link', - '$value': '/icon/data-share.svg', + id: 'icon.corner', + $type: 'link', + $value: '/icon/corner.svg', }, - 'icon.data-table': { - '_original': { - '$value': '/icon/data-table.svg', + 'icon.coronavirus': { + _original: { + $value: '/icon/coronavirus.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-table', - '$type': 'link', - '$value': '/icon/data-table.svg', + id: 'icon.coronavirus', + $type: 'link', + $value: '/icon/coronavirus.svg', }, - 'icon.data-table--reference': { - '_original': { - '$value': '/icon/data-table--reference.svg', + 'icon.cost': { + _original: { + $value: '/icon/cost.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-table--reference', - '$type': 'link', - '$value': '/icon/data-table--reference.svg', + id: 'icon.cost', + $type: 'link', + $value: '/icon/cost.svg', }, - 'icon.data-vis--1': { - '_original': { - '$value': '/icon/data-vis--1.svg', + 'icon.cost--total': { + _original: { + $value: '/icon/cost--total.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-vis--1', - '$type': 'link', - '$value': '/icon/data-vis--1.svg', + id: 'icon.cost--total', + $type: 'link', + $value: '/icon/cost--total.svg', }, - 'icon.data-vis--2': { - '_original': { - '$value': '/icon/data-vis--2.svg', + 'icon.cough': { + _original: { + $value: '/icon/cough.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-vis--2', - '$type': 'link', - '$value': '/icon/data-vis--2.svg', + id: 'icon.cough', + $type: 'link', + $value: '/icon/cough.svg', }, - 'icon.data-vis--3': { - '_original': { - '$value': '/icon/data-vis--3.svg', + 'icon.course': { + _original: { + $value: '/icon/course.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-vis--3', - '$type': 'link', - '$value': '/icon/data-vis--3.svg', + id: 'icon.course', + $type: 'link', + $value: '/icon/course.svg', }, - 'icon.data-vis--4': { - '_original': { - '$value': '/icon/data-vis--4.svg', + 'icon.covariate': { + _original: { + $value: '/icon/covariate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.data-vis--4', - '$type': 'link', - '$value': '/icon/data-vis--4.svg', + id: 'icon.covariate', + $type: 'link', + $value: '/icon/covariate.svg', }, - 'icon.database--datastax': { - '_original': { - '$value': '/icon/database--datastax.svg', + 'icon.credentials': { + _original: { + $value: '/icon/credentials.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--datastax', - '$type': 'link', - '$value': '/icon/database--datastax.svg', + id: 'icon.credentials', + $type: 'link', + $value: '/icon/credentials.svg', }, - 'icon.database--elastic': { - '_original': { - '$value': '/icon/database--elastic.svg', + 'icon.critical': { + _original: { + $value: '/icon/critical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--elastic', - '$type': 'link', - '$value': '/icon/database--elastic.svg', + id: 'icon.critical', + $type: 'link', + $value: '/icon/critical.svg', }, - 'icon.database--enterprise-db2': { - '_original': { - '$value': '/icon/database--enterprise-db2.svg', + 'icon.critical-severity': { + _original: { + $value: '/icon/critical-severity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--enterprise-db2', - '$type': 'link', - '$value': '/icon/database--enterprise-db2.svg', + id: 'icon.critical-severity', + $type: 'link', + $value: '/icon/critical-severity.svg', }, - 'icon.database--etcd': { - '_original': { - '$value': '/icon/database--etcd.svg', + 'icon.crop': { + _original: { + $value: '/icon/crop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--etcd', - '$type': 'link', - '$value': '/icon/database--etcd.svg', + id: 'icon.crop', + $type: 'link', + $value: '/icon/crop.svg', }, - 'icon.database--mongodb': { - '_original': { - '$value': '/icon/database--mongodb.svg', + 'icon.crop-growth': { + _original: { + $value: '/icon/crop-growth.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--mongodb', - '$type': 'link', - '$value': '/icon/database--mongodb.svg', + id: 'icon.crop-growth', + $type: 'link', + $value: '/icon/crop-growth.svg', }, - 'icon.database--postgreSQL': { - '_original': { - '$value': '/icon/database--postgreSQL.svg', + 'icon.crop-health': { + _original: { + $value: '/icon/crop-health.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--postgreSQL', - '$type': 'link', - '$value': '/icon/database--postgreSQL.svg', + id: 'icon.crop-health', + $type: 'link', + $value: '/icon/crop-health.svg', }, - 'icon.database--rabbit': { - '_original': { - '$value': '/icon/database--rabbit.svg', + 'icon.cross-reference': { + _original: { + $value: '/icon/cross-reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--rabbit', - '$type': 'link', - '$value': '/icon/database--rabbit.svg', + id: 'icon.cross-reference', + $type: 'link', + $value: '/icon/cross-reference.svg', }, - 'icon.database--redis': { - '_original': { - '$value': '/icon/database--redis.svg', + 'icon.cross-tab': { + _original: { + $value: '/icon/cross-tab.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.database--redis', - '$type': 'link', - '$value': '/icon/database--redis.svg', + id: 'icon.cross-tab', + $type: 'link', + $value: '/icon/cross-tab.svg', }, - 'icon.datastore': { - '_original': { - '$value': '/icon/datastore.svg', + 'icon.crossroads': { + _original: { + $value: '/icon/crossroads.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.datastore', - '$type': 'link', - '$value': '/icon/datastore.svg', + id: 'icon.crossroads', + $type: 'link', + $value: '/icon/crossroads.svg', }, - 'icon.debug': { - '_original': { - '$value': '/icon/debug.svg', + 'icon.crowd-report': { + _original: { + $value: '/icon/crowd-report.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.debug', - '$type': 'link', - '$value': '/icon/debug.svg', + id: 'icon.crowd-report', + $type: 'link', + $value: '/icon/crowd-report.svg', }, - 'icon.decision-tree': { - '_original': { - '$value': '/icon/decision-tree.svg', + 'icon.crowd-report--filled': { + _original: { + $value: '/icon/crowd-report--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.decision-tree', - '$type': 'link', - '$value': '/icon/decision-tree.svg', + id: 'icon.crowd-report--filled', + $type: 'link', + $value: '/icon/crowd-report--filled.svg', }, - 'icon.delete': { - '_original': { - '$value': '/icon/delete.svg', + 'icon.CSV': { + _original: { + $value: '/icon/CSV.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.delete', - '$type': 'link', - '$value': '/icon/delete.svg', + id: 'icon.CSV', + $type: 'link', + $value: '/icon/CSV.svg', }, - 'icon.delivery': { - '_original': { - '$value': '/icon/delivery.svg', + 'icon.cU1': { + _original: { + $value: '/icon/cU1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.delivery', - '$type': 'link', - '$value': '/icon/delivery.svg', + id: 'icon.cU1', + $type: 'link', + $value: '/icon/cU1.svg', }, - 'icon.delivery--add': { - '_original': { - '$value': '/icon/delivery--add.svg', + 'icon.cU3': { + _original: { + $value: '/icon/cU3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.delivery--add', - '$type': 'link', - '$value': '/icon/delivery--add.svg', + id: 'icon.cU3', + $type: 'link', + $value: '/icon/cU3.svg', }, - 'icon.delivery--parcel': { - '_original': { - '$value': '/icon/delivery--parcel.svg', + 'icon.cube': { + _original: { + $value: '/icon/cube.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.delivery--parcel', - '$type': 'link', - '$value': '/icon/delivery--parcel.svg', + id: 'icon.cube', + $type: 'link', + $value: '/icon/cube.svg', }, - 'icon.delivery-truck': { - '_original': { - '$value': '/icon/delivery-truck.svg', + 'icon.cube-view': { + _original: { + $value: '/icon/cube-view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.delivery-truck', - '$type': 'link', - '$value': '/icon/delivery-truck.svg', + id: 'icon.cube-view', + $type: 'link', + $value: '/icon/cube-view.svg', }, - 'icon.denominate': { - '_original': { - '$value': '/icon/denominate.svg', + 'icon.currency': { + _original: { + $value: '/icon/currency.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.denominate', - '$type': 'link', - '$value': '/icon/denominate.svg', + id: 'icon.currency', + $type: 'link', + $value: '/icon/currency.svg', }, - 'icon.departure': { - '_original': { - '$value': '/icon/departure.svg', + 'icon.currency--baht': { + _original: { + $value: '/icon/currency--baht.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.departure', - '$type': 'link', - '$value': '/icon/departure.svg', + id: 'icon.currency--baht', + $type: 'link', + $value: '/icon/currency--baht.svg', }, - 'icon.deploy': { - '_original': { - '$value': '/icon/deploy.svg', + 'icon.currency--dollar': { + _original: { + $value: '/icon/currency--dollar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deploy', - '$type': 'link', - '$value': '/icon/deploy.svg', + id: 'icon.currency--dollar', + $type: 'link', + $value: '/icon/currency--dollar.svg', }, - 'icon.deploy-rules': { - '_original': { - '$value': '/icon/deploy-rules.svg', + 'icon.currency--euro': { + _original: { + $value: '/icon/currency--euro.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deploy-rules', - '$type': 'link', - '$value': '/icon/deploy-rules.svg', + id: 'icon.currency--euro', + $type: 'link', + $value: '/icon/currency--euro.svg', }, - 'icon.deployment-pattern': { - '_original': { - '$value': '/icon/deployment-pattern.svg', + 'icon.currency--lira': { + _original: { + $value: '/icon/currency--lira.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-pattern', - '$type': 'link', - '$value': '/icon/deployment-pattern.svg', + id: 'icon.currency--lira', + $type: 'link', + $value: '/icon/currency--lira.svg', }, - 'icon.deployment-policy': { - '_original': { - '$value': '/icon/deployment-policy.svg', + 'icon.currency--pound': { + _original: { + $value: '/icon/currency--pound.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-policy', - '$type': 'link', - '$value': '/icon/deployment-policy.svg', + id: 'icon.currency--pound', + $type: 'link', + $value: '/icon/currency--pound.svg', }, - 'icon.deployment-unit--data': { - '_original': { - '$value': '/icon/deployment-unit--data.svg', + 'icon.currency--ruble': { + _original: { + $value: '/icon/currency--ruble.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--data', - '$type': 'link', - '$value': '/icon/deployment-unit--data.svg', + id: 'icon.currency--ruble', + $type: 'link', + $value: '/icon/currency--ruble.svg', }, - 'icon.deployment-unit--execution': { - '_original': { - '$value': '/icon/deployment-unit--execution.svg', + 'icon.currency--rupee': { + _original: { + $value: '/icon/currency--rupee.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--execution', - '$type': 'link', - '$value': '/icon/deployment-unit--execution.svg', + id: 'icon.currency--rupee', + $type: 'link', + $value: '/icon/currency--rupee.svg', }, - 'icon.deployment-unit--installation': { - '_original': { - '$value': '/icon/deployment-unit--installation.svg', + 'icon.currency--shekel': { + _original: { + $value: '/icon/currency--shekel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--installation', - '$type': 'link', - '$value': '/icon/deployment-unit--installation.svg', + id: 'icon.currency--shekel', + $type: 'link', + $value: '/icon/currency--shekel.svg', }, - 'icon.deployment-unit--presentation': { - '_original': { - '$value': '/icon/deployment-unit--presentation.svg', + 'icon.currency--won': { + _original: { + $value: '/icon/currency--won.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--presentation', - '$type': 'link', - '$value': '/icon/deployment-unit--presentation.svg', + id: 'icon.currency--won', + $type: 'link', + $value: '/icon/currency--won.svg', }, - 'icon.deployment-unit--technical--data': { - '_original': { - '$value': '/icon/deployment-unit--technical--data.svg', + 'icon.currency--yen': { + _original: { + $value: '/icon/currency--yen.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--technical--data', - '$type': 'link', - '$value': '/icon/deployment-unit--technical--data.svg', + id: 'icon.currency--yen', + $type: 'link', + $value: '/icon/currency--yen.svg', }, - 'icon.deployment-unit--technical--execution': { - '_original': { - '$value': '/icon/deployment-unit--technical--execution.svg', + 'icon.cursor--1': { + _original: { + $value: '/icon/cursor--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--technical--execution', - '$type': 'link', - '$value': '/icon/deployment-unit--technical--execution.svg', + id: 'icon.cursor--1', + $type: 'link', + $value: '/icon/cursor--1.svg', }, - 'icon.deployment-unit--technical--installation': { - '_original': { - '$value': '/icon/deployment-unit--technical--installation.svg', + 'icon.cursor--2': { + _original: { + $value: '/icon/cursor--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--technical--installation', - '$type': 'link', - '$value': '/icon/deployment-unit--technical--installation.svg', + id: 'icon.cursor--2', + $type: 'link', + $value: '/icon/cursor--2.svg', }, - 'icon.deployment-unit--technical--presentation': { - '_original': { - '$value': '/icon/deployment-unit--technical--presentation.svg', + 'icon.cut': { + _original: { + $value: '/icon/cut.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.deployment-unit--technical--presentation', - '$type': 'link', - '$value': '/icon/deployment-unit--technical--presentation.svg', + id: 'icon.cut', + $type: 'link', + $value: '/icon/cut.svg', }, - 'icon.desk--adjustable': { - '_original': { - '$value': '/icon/desk--adjustable.svg', + 'icon.cut-in-half': { + _original: { + $value: '/icon/cut-in-half.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.desk--adjustable', - '$type': 'link', - '$value': '/icon/desk--adjustable.svg', + id: 'icon.cut-in-half', + $type: 'link', + $value: '/icon/cut-in-half.svg', }, - 'icon.development': { - '_original': { - '$value': '/icon/development.svg', + 'icon.cut-out': { + _original: { + $value: '/icon/cut-out.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.development', - '$type': 'link', - '$value': '/icon/development.svg', + id: 'icon.cut-out', + $type: 'link', + $value: '/icon/cut-out.svg', }, - 'icon.devices': { - '_original': { - '$value': '/icon/devices.svg', + 'icon.cY': { + _original: { + $value: '/icon/cY.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.devices', - '$type': 'link', - '$value': '/icon/devices.svg', + id: 'icon.cY', + $type: 'link', + $value: '/icon/cY.svg', }, - 'icon.dew-point': { - '_original': { - '$value': '/icon/dew-point.svg', + 'icon.cyclist': { + _original: { + $value: '/icon/cyclist.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dew-point', - '$type': 'link', - '$value': '/icon/dew-point.svg', + id: 'icon.cyclist', + $type: 'link', + $value: '/icon/cyclist.svg', }, - 'icon.dew-point--filled': { - '_original': { - '$value': '/icon/dew-point--filled.svg', + 'icon.cZ': { + _original: { + $value: '/icon/cZ.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dew-point--filled', - '$type': 'link', - '$value': '/icon/dew-point--filled.svg', + id: 'icon.cZ', + $type: 'link', + $value: '/icon/cZ.svg', }, - 'icon.diagram': { - '_original': { - '$value': '/icon/diagram.svg', + 'icon.dashboard': { + _original: { + $value: '/icon/dashboard.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.diagram', - '$type': 'link', - '$value': '/icon/diagram.svg', + id: 'icon.dashboard', + $type: 'link', + $value: '/icon/dashboard.svg', }, - 'icon.diagram--reference': { - '_original': { - '$value': '/icon/diagram--reference.svg', + 'icon.dashboard--reference': { + _original: { + $value: '/icon/dashboard--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.diagram--reference', - '$type': 'link', - '$value': '/icon/diagram--reference.svg', + id: 'icon.dashboard--reference', + $type: 'link', + $value: '/icon/dashboard--reference.svg', }, - 'icon.dicom--6000': { - '_original': { - '$value': '/icon/dicom--6000.svg', + 'icon.data--1': { + _original: { + $value: '/icon/data--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dicom--6000', - '$type': 'link', - '$value': '/icon/dicom--6000.svg', + id: 'icon.data--1', + $type: 'link', + $value: '/icon/data--1.svg', }, - 'icon.dicom--overlay': { - '_original': { - '$value': '/icon/dicom--overlay.svg', + 'icon.data--2': { + _original: { + $value: '/icon/data--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dicom--overlay', - '$type': 'link', - '$value': '/icon/dicom--overlay.svg', + id: 'icon.data--2', + $type: 'link', + $value: '/icon/data--2.svg', }, - 'icon.direct-link': { - '_original': { - '$value': '/icon/direct-link.svg', + 'icon.data--base': { + _original: { + $value: '/icon/data--base.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direct-link', - '$type': 'link', - '$value': '/icon/direct-link.svg', + id: 'icon.data--base', + $type: 'link', + $value: '/icon/data--base.svg', }, - 'icon.direction--bear-right--01': { - '_original': { - '$value': '/icon/direction--bear-right--01.svg', + 'icon.data--base--alt': { + _original: { + $value: '/icon/data--base--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--bear-right--01', - '$type': 'link', - '$value': '/icon/direction--bear-right--01.svg', + id: 'icon.data--base--alt', + $type: 'link', + $value: '/icon/data--base--alt.svg', }, - 'icon.direction--bear-right--01--filled': { - '_original': { - '$value': '/icon/direction--bear-right--01--filled.svg', + 'icon.data--center': { + _original: { + $value: '/icon/data--center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--bear-right--01--filled', - '$type': 'link', - '$value': '/icon/direction--bear-right--01--filled.svg', + id: 'icon.data--center', + $type: 'link', + $value: '/icon/data--center.svg', }, - 'icon.direction--bear-right--02': { - '_original': { - '$value': '/icon/direction--bear-right--02.svg', + 'icon.data--check': { + _original: { + $value: '/icon/data--check.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--bear-right--02', - '$type': 'link', - '$value': '/icon/direction--bear-right--02.svg', + id: 'icon.data--check', + $type: 'link', + $value: '/icon/data--check.svg', }, - 'icon.direction--bear-right--02--filled': { - '_original': { - '$value': '/icon/direction--bear-right--02--filled.svg', + 'icon.data--connected': { + _original: { + $value: '/icon/data--connected.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--bear-right--02--filled', - '$type': 'link', - '$value': '/icon/direction--bear-right--02--filled.svg', + id: 'icon.data--connected', + $type: 'link', + $value: '/icon/data--connected.svg', }, - 'icon.direction--curve': { - '_original': { - '$value': '/icon/direction--curve.svg', + 'icon.data--error': { + _original: { + $value: '/icon/data--error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--curve', - '$type': 'link', - '$value': '/icon/direction--curve.svg', + id: 'icon.data--error', + $type: 'link', + $value: '/icon/data--error.svg', }, - 'icon.direction--curve--filled': { - '_original': { - '$value': '/icon/direction--curve--filled.svg', + 'icon.data--format': { + _original: { + $value: '/icon/data--format.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--curve--filled', - '$type': 'link', - '$value': '/icon/direction--curve--filled.svg', + id: 'icon.data--format', + $type: 'link', + $value: '/icon/data--format.svg', }, - 'icon.direction--fork': { - '_original': { - '$value': '/icon/direction--fork.svg', + 'icon.data--reference': { + _original: { + $value: '/icon/data--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--fork', - '$type': 'link', - '$value': '/icon/direction--fork.svg', + id: 'icon.data--reference', + $type: 'link', + $value: '/icon/data--reference.svg', }, - 'icon.direction--fork--filled': { - '_original': { - '$value': '/icon/direction--fork--filled.svg', + 'icon.data--set': { + _original: { + $value: '/icon/data--set.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--fork--filled', - '$type': 'link', - '$value': '/icon/direction--fork--filled.svg', + id: 'icon.data--set', + $type: 'link', + $value: '/icon/data--set.svg', }, - 'icon.direction--loop-left': { - '_original': { - '$value': '/icon/direction--loop-left.svg', + 'icon.data--structured': { + _original: { + $value: '/icon/data--structured.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--loop-left', - '$type': 'link', - '$value': '/icon/direction--loop-left.svg', + id: 'icon.data--structured', + $type: 'link', + $value: '/icon/data--structured.svg', }, - 'icon.direction--loop-left--filled': { - '_original': { - '$value': '/icon/direction--loop-left--filled.svg', + 'icon.data--unstructured': { + _original: { + $value: '/icon/data--unstructured.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--loop-left--filled', - '$type': 'link', - '$value': '/icon/direction--loop-left--filled.svg', + id: 'icon.data--unstructured', + $type: 'link', + $value: '/icon/data--unstructured.svg', }, - 'icon.direction--loop-right': { - '_original': { - '$value': '/icon/direction--loop-right.svg', + 'icon.data--view': { + _original: { + $value: '/icon/data--view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--loop-right', - '$type': 'link', - '$value': '/icon/direction--loop-right.svg', + id: 'icon.data--view', + $type: 'link', + $value: '/icon/data--view.svg', }, - 'icon.direction--loop-right--filled': { - '_original': { - '$value': '/icon/direction--loop-right--filled.svg', + 'icon.data--view--alt': { + _original: { + $value: '/icon/data--view--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--loop-right--filled', - '$type': 'link', - '$value': '/icon/direction--loop-right--filled.svg', + id: 'icon.data--view--alt', + $type: 'link', + $value: '/icon/data--view--alt.svg', }, - 'icon.direction--merge': { - '_original': { - '$value': '/icon/direction--merge.svg', + 'icon.data-accessor': { + _original: { + $value: '/icon/data-accessor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--merge', - '$type': 'link', - '$value': '/icon/direction--merge.svg', + id: 'icon.data-accessor', + $type: 'link', + $value: '/icon/data-accessor.svg', }, - 'icon.direction--merge--filled': { - '_original': { - '$value': '/icon/direction--merge--filled.svg', + 'icon.data-backup': { + _original: { + $value: '/icon/data-backup.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--merge--filled', - '$type': 'link', - '$value': '/icon/direction--merge--filled.svg', + id: 'icon.data-backup', + $type: 'link', + $value: '/icon/data-backup.svg', }, - 'icon.direction--right--01': { - '_original': { - '$value': '/icon/direction--right--01.svg', + 'icon.data-bin': { + _original: { + $value: '/icon/data-bin.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--right--01', - '$type': 'link', - '$value': '/icon/direction--right--01.svg', + id: 'icon.data-bin', + $type: 'link', + $value: '/icon/data-bin.svg', }, - 'icon.direction--right--01--filled': { - '_original': { - '$value': '/icon/direction--right--01--filled.svg', + 'icon.data-blob': { + _original: { + $value: '/icon/data-blob.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--right--01--filled', - '$type': 'link', - '$value': '/icon/direction--right--01--filled.svg', + id: 'icon.data-blob', + $type: 'link', + $value: '/icon/data-blob.svg', }, - 'icon.direction--right--02': { - '_original': { - '$value': '/icon/direction--right--02.svg', + 'icon.data-class': { + _original: { + $value: '/icon/data-class.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--right--02', - '$type': 'link', - '$value': '/icon/direction--right--02.svg', + id: 'icon.data-class', + $type: 'link', + $value: '/icon/data-class.svg', }, - 'icon.direction--right--02--filled': { - '_original': { - '$value': '/icon/direction--right--02--filled.svg', + 'icon.data-collection': { + _original: { + $value: '/icon/data-collection.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--right--02--filled', - '$type': 'link', - '$value': '/icon/direction--right--02--filled.svg', + id: 'icon.data-collection', + $type: 'link', + $value: '/icon/data-collection.svg', }, - 'icon.direction--rotary--first-right': { - '_original': { - '$value': '/icon/direction--rotary--first-right.svg', + 'icon.data-definition': { + _original: { + $value: '/icon/data-definition.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--rotary--first-right', - '$type': 'link', - '$value': '/icon/direction--rotary--first-right.svg', + id: 'icon.data-definition', + $type: 'link', + $value: '/icon/data-definition.svg', }, - 'icon.direction--rotary--first-right--filled': { - '_original': { - '$value': '/icon/direction--rotary--first-right--filled.svg', + 'icon.data-diode': { + _original: { + $value: '/icon/data-diode.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--rotary--first-right--filled', - '$type': 'link', - '$value': '/icon/direction--rotary--first-right--filled.svg', + id: 'icon.data-diode', + $type: 'link', + $value: '/icon/data-diode.svg', }, - 'icon.direction--rotary--right': { - '_original': { - '$value': '/icon/direction--rotary--right.svg', + 'icon.data-player': { + _original: { + $value: '/icon/data-player.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--rotary--right', - '$type': 'link', - '$value': '/icon/direction--rotary--right.svg', + id: 'icon.data-player', + $type: 'link', + $value: '/icon/data-player.svg', }, - 'icon.direction--rotary--right--filled': { - '_original': { - '$value': '/icon/direction--rotary--right--filled.svg', + 'icon.data-refinery': { + _original: { + $value: '/icon/data-refinery.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--rotary--right--filled', - '$type': 'link', - '$value': '/icon/direction--rotary--right--filled.svg', + id: 'icon.data-refinery', + $type: 'link', + $value: '/icon/data-refinery.svg', }, - 'icon.direction--rotary--straight': { - '_original': { - '$value': '/icon/direction--rotary--straight.svg', + 'icon.data-refinery--reference': { + _original: { + $value: '/icon/data-refinery--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--rotary--straight', - '$type': 'link', - '$value': '/icon/direction--rotary--straight.svg', + id: 'icon.data-refinery--reference', + $type: 'link', + $value: '/icon/data-refinery--reference.svg', }, - 'icon.direction--rotary--straight--filled': { - '_original': { - '$value': '/icon/direction--rotary--straight--filled.svg', + 'icon.data-share': { + _original: { + $value: '/icon/data-share.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--rotary--straight--filled', - '$type': 'link', - '$value': '/icon/direction--rotary--straight--filled.svg', + id: 'icon.data-share', + $type: 'link', + $value: '/icon/data-share.svg', }, - 'icon.direction--sharp-turn': { - '_original': { - '$value': '/icon/direction--sharp-turn.svg', + 'icon.data-table': { + _original: { + $value: '/icon/data-table.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--sharp-turn', - '$type': 'link', - '$value': '/icon/direction--sharp-turn.svg', + id: 'icon.data-table', + $type: 'link', + $value: '/icon/data-table.svg', }, - 'icon.direction--sharp-turn--filled': { - '_original': { - '$value': '/icon/direction--sharp-turn--filled.svg', + 'icon.data-table--reference': { + _original: { + $value: '/icon/data-table--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--sharp-turn--filled', - '$type': 'link', - '$value': '/icon/direction--sharp-turn--filled.svg', + id: 'icon.data-table--reference', + $type: 'link', + $value: '/icon/data-table--reference.svg', }, - 'icon.direction--straight': { - '_original': { - '$value': '/icon/direction--straight.svg', + 'icon.data-vis--1': { + _original: { + $value: '/icon/data-vis--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--straight', - '$type': 'link', - '$value': '/icon/direction--straight.svg', + id: 'icon.data-vis--1', + $type: 'link', + $value: '/icon/data-vis--1.svg', }, - 'icon.direction--straight--filled': { - '_original': { - '$value': '/icon/direction--straight--filled.svg', + 'icon.data-vis--2': { + _original: { + $value: '/icon/data-vis--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--straight--filled', - '$type': 'link', - '$value': '/icon/direction--straight--filled.svg', + id: 'icon.data-vis--2', + $type: 'link', + $value: '/icon/data-vis--2.svg', }, - 'icon.direction--straight--right': { - '_original': { - '$value': '/icon/direction--straight--right.svg', + 'icon.data-vis--3': { + _original: { + $value: '/icon/data-vis--3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--straight--right', - '$type': 'link', - '$value': '/icon/direction--straight--right.svg', + id: 'icon.data-vis--3', + $type: 'link', + $value: '/icon/data-vis--3.svg', }, - 'icon.direction--straight--right--filled': { - '_original': { - '$value': '/icon/direction--straight--right--filled.svg', + 'icon.data-vis--4': { + _original: { + $value: '/icon/data-vis--4.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--straight--right--filled', - '$type': 'link', - '$value': '/icon/direction--straight--right--filled.svg', + id: 'icon.data-vis--4', + $type: 'link', + $value: '/icon/data-vis--4.svg', }, - 'icon.direction--u-turn': { - '_original': { - '$value': '/icon/direction--u-turn.svg', + 'icon.database--datastax': { + _original: { + $value: '/icon/database--datastax.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--u-turn', - '$type': 'link', - '$value': '/icon/direction--u-turn.svg', + id: 'icon.database--datastax', + $type: 'link', + $value: '/icon/database--datastax.svg', }, - 'icon.direction--u-turn--filled': { - '_original': { - '$value': '/icon/direction--u-turn--filled.svg', + 'icon.database--elastic': { + _original: { + $value: '/icon/database--elastic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.direction--u-turn--filled', - '$type': 'link', - '$value': '/icon/direction--u-turn--filled.svg', + id: 'icon.database--elastic', + $type: 'link', + $value: '/icon/database--elastic.svg', }, - 'icon.directory-domain': { - '_original': { - '$value': '/icon/directory-domain.svg', + 'icon.database--enterprise-db2': { + _original: { + $value: '/icon/database--enterprise-db2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.directory-domain', - '$type': 'link', - '$value': '/icon/directory-domain.svg', + id: 'icon.database--enterprise-db2', + $type: 'link', + $value: '/icon/database--enterprise-db2.svg', }, - 'icon.distribute--horizontal-center': { - '_original': { - '$value': '/icon/distribute--horizontal-center.svg', + 'icon.database--etcd': { + _original: { + $value: '/icon/database--etcd.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.distribute--horizontal-center', - '$type': 'link', - '$value': '/icon/distribute--horizontal-center.svg', + id: 'icon.database--etcd', + $type: 'link', + $value: '/icon/database--etcd.svg', }, - 'icon.distribute--horizontal-left': { - '_original': { - '$value': '/icon/distribute--horizontal-left.svg', + 'icon.database--mongodb': { + _original: { + $value: '/icon/database--mongodb.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.distribute--horizontal-left', - '$type': 'link', - '$value': '/icon/distribute--horizontal-left.svg', + id: 'icon.database--mongodb', + $type: 'link', + $value: '/icon/database--mongodb.svg', }, - 'icon.distribute--horizontal-right': { - '_original': { - '$value': '/icon/distribute--horizontal-right.svg', + 'icon.database--postgreSQL': { + _original: { + $value: '/icon/database--postgreSQL.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.distribute--horizontal-right', - '$type': 'link', - '$value': '/icon/distribute--horizontal-right.svg', + id: 'icon.database--postgreSQL', + $type: 'link', + $value: '/icon/database--postgreSQL.svg', }, - 'icon.distribute--vertical-bottom': { - '_original': { - '$value': '/icon/distribute--vertical-bottom.svg', + 'icon.database--rabbit': { + _original: { + $value: '/icon/database--rabbit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.distribute--vertical-bottom', - '$type': 'link', - '$value': '/icon/distribute--vertical-bottom.svg', + id: 'icon.database--rabbit', + $type: 'link', + $value: '/icon/database--rabbit.svg', }, - 'icon.distribute--vertical-center': { - '_original': { - '$value': '/icon/distribute--vertical-center.svg', + 'icon.database--redis': { + _original: { + $value: '/icon/database--redis.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.distribute--vertical-center', - '$type': 'link', - '$value': '/icon/distribute--vertical-center.svg', + id: 'icon.database--redis', + $type: 'link', + $value: '/icon/database--redis.svg', }, - 'icon.distribute--vertical-top': { - '_original': { - '$value': '/icon/distribute--vertical-top.svg', + 'icon.datastore': { + _original: { + $value: '/icon/datastore.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.distribute--vertical-top', - '$type': 'link', - '$value': '/icon/distribute--vertical-top.svg', + id: 'icon.datastore', + $type: 'link', + $value: '/icon/datastore.svg', }, - 'icon.dna': { - '_original': { - '$value': '/icon/dna.svg', + 'icon.debug': { + _original: { + $value: '/icon/debug.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dna', - '$type': 'link', - '$value': '/icon/dna.svg', + id: 'icon.debug', + $type: 'link', + $value: '/icon/debug.svg', }, - 'icon.dns-services': { - '_original': { - '$value': '/icon/dns-services.svg', + 'icon.decision-tree': { + _original: { + $value: '/icon/decision-tree.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dns-services', - '$type': 'link', - '$value': '/icon/dns-services.svg', + id: 'icon.decision-tree', + $type: 'link', + $value: '/icon/decision-tree.svg', }, - 'icon.DOC': { - '_original': { - '$value': '/icon/DOC.svg', + 'icon.delete': { + _original: { + $value: '/icon/delete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.DOC', - '$type': 'link', - '$value': '/icon/DOC.svg', + id: 'icon.delete', + $type: 'link', + $value: '/icon/delete.svg', }, - 'icon.document': { - '_original': { - '$value': '/icon/document.svg', + 'icon.delivery': { + _original: { + $value: '/icon/delivery.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document', - '$type': 'link', - '$value': '/icon/document.svg', + id: 'icon.delivery', + $type: 'link', + $value: '/icon/delivery.svg', }, - 'icon.document--add': { - '_original': { - '$value': '/icon/document--add.svg', + 'icon.delivery--add': { + _original: { + $value: '/icon/delivery--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--add', - '$type': 'link', - '$value': '/icon/document--add.svg', + id: 'icon.delivery--add', + $type: 'link', + $value: '/icon/delivery--add.svg', }, - 'icon.document--attachment': { - '_original': { - '$value': '/icon/document--attachment.svg', + 'icon.delivery--parcel': { + _original: { + $value: '/icon/delivery--parcel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--attachment', - '$type': 'link', - '$value': '/icon/document--attachment.svg', + id: 'icon.delivery--parcel', + $type: 'link', + $value: '/icon/delivery--parcel.svg', }, - 'icon.document--audio': { - '_original': { - '$value': '/icon/document--audio.svg', + 'icon.delivery-truck': { + _original: { + $value: '/icon/delivery-truck.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--audio', - '$type': 'link', - '$value': '/icon/document--audio.svg', + id: 'icon.delivery-truck', + $type: 'link', + $value: '/icon/delivery-truck.svg', }, - 'icon.document--blank': { - '_original': { - '$value': '/icon/document--blank.svg', + 'icon.denominate': { + _original: { + $value: '/icon/denominate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--blank', - '$type': 'link', - '$value': '/icon/document--blank.svg', + id: 'icon.denominate', + $type: 'link', + $value: '/icon/denominate.svg', }, - 'icon.document--download': { - '_original': { - '$value': '/icon/document--download.svg', + 'icon.departure': { + _original: { + $value: '/icon/departure.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--download', - '$type': 'link', - '$value': '/icon/document--download.svg', + id: 'icon.departure', + $type: 'link', + $value: '/icon/departure.svg', }, - 'icon.document--epdf': { - '_original': { - '$value': '/icon/document--epdf.svg', + 'icon.deploy': { + _original: { + $value: '/icon/deploy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--epdf', - '$type': 'link', - '$value': '/icon/document--epdf.svg', + id: 'icon.deploy', + $type: 'link', + $value: '/icon/deploy.svg', }, - 'icon.document--export': { - '_original': { - '$value': '/icon/document--export.svg', + 'icon.deploy-rules': { + _original: { + $value: '/icon/deploy-rules.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--export', - '$type': 'link', - '$value': '/icon/document--export.svg', + id: 'icon.deploy-rules', + $type: 'link', + $value: '/icon/deploy-rules.svg', }, - 'icon.document--horizontal': { - '_original': { - '$value': '/icon/document--horizontal.svg', + 'icon.deployment-pattern': { + _original: { + $value: '/icon/deployment-pattern.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--horizontal', - '$type': 'link', - '$value': '/icon/document--horizontal.svg', + id: 'icon.deployment-pattern', + $type: 'link', + $value: '/icon/deployment-pattern.svg', }, - 'icon.document--import': { - '_original': { - '$value': '/icon/document--import.svg', + 'icon.deployment-policy': { + _original: { + $value: '/icon/deployment-policy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--import', - '$type': 'link', - '$value': '/icon/document--import.svg', + id: 'icon.deployment-policy', + $type: 'link', + $value: '/icon/deployment-policy.svg', }, - 'icon.document--pdf': { - '_original': { - '$value': '/icon/document--pdf.svg', + 'icon.deployment-unit--data': { + _original: { + $value: '/icon/deployment-unit--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--pdf', - '$type': 'link', - '$value': '/icon/document--pdf.svg', + id: 'icon.deployment-unit--data', + $type: 'link', + $value: '/icon/deployment-unit--data.svg', }, - 'icon.document--preliminary': { - '_original': { - '$value': '/icon/document--preliminary.svg', + 'icon.deployment-unit--execution': { + _original: { + $value: '/icon/deployment-unit--execution.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--preliminary', - '$type': 'link', - '$value': '/icon/document--preliminary.svg', + id: 'icon.deployment-unit--execution', + $type: 'link', + $value: '/icon/deployment-unit--execution.svg', }, - 'icon.document--protected': { - '_original': { - '$value': '/icon/document--protected.svg', + 'icon.deployment-unit--installation': { + _original: { + $value: '/icon/deployment-unit--installation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--protected', - '$type': 'link', - '$value': '/icon/document--protected.svg', + id: 'icon.deployment-unit--installation', + $type: 'link', + $value: '/icon/deployment-unit--installation.svg', }, - 'icon.document--security': { - '_original': { - '$value': '/icon/document--security.svg', + 'icon.deployment-unit--presentation': { + _original: { + $value: '/icon/deployment-unit--presentation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--security', - '$type': 'link', - '$value': '/icon/document--security.svg', + id: 'icon.deployment-unit--presentation', + $type: 'link', + $value: '/icon/deployment-unit--presentation.svg', }, - 'icon.document--signed': { - '_original': { - '$value': '/icon/document--signed.svg', + 'icon.deployment-unit--technical--data': { + _original: { + $value: '/icon/deployment-unit--technical--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--signed', - '$type': 'link', - '$value': '/icon/document--signed.svg', + id: 'icon.deployment-unit--technical--data', + $type: 'link', + $value: '/icon/deployment-unit--technical--data.svg', }, - 'icon.document--sketch': { - '_original': { - '$value': '/icon/document--sketch.svg', + 'icon.deployment-unit--technical--execution': { + _original: { + $value: '/icon/deployment-unit--technical--execution.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--sketch', - '$type': 'link', - '$value': '/icon/document--sketch.svg', + id: 'icon.deployment-unit--technical--execution', + $type: 'link', + $value: '/icon/deployment-unit--technical--execution.svg', }, - 'icon.document--subtract': { - '_original': { - '$value': '/icon/document--subtract.svg', + 'icon.deployment-unit--technical--installation': { + _original: { + $value: '/icon/deployment-unit--technical--installation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--subtract', - '$type': 'link', - '$value': '/icon/document--subtract.svg', + id: 'icon.deployment-unit--technical--installation', + $type: 'link', + $value: '/icon/deployment-unit--technical--installation.svg', }, - 'icon.document--tasks': { - '_original': { - '$value': '/icon/document--tasks.svg', + 'icon.deployment-unit--technical--presentation': { + _original: { + $value: '/icon/deployment-unit--technical--presentation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--tasks', - '$type': 'link', - '$value': '/icon/document--tasks.svg', + id: 'icon.deployment-unit--technical--presentation', + $type: 'link', + $value: '/icon/deployment-unit--technical--presentation.svg', }, - 'icon.document--unknown': { - '_original': { - '$value': '/icon/document--unknown.svg', + 'icon.desk--adjustable': { + _original: { + $value: '/icon/desk--adjustable.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--unknown', - '$type': 'link', - '$value': '/icon/document--unknown.svg', + id: 'icon.desk--adjustable', + $type: 'link', + $value: '/icon/desk--adjustable.svg', }, - 'icon.document--unprotected': { - '_original': { - '$value': '/icon/document--unprotected.svg', + 'icon.development': { + _original: { + $value: '/icon/development.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--unprotected', - '$type': 'link', - '$value': '/icon/document--unprotected.svg', + id: 'icon.development', + $type: 'link', + $value: '/icon/development.svg', }, - 'icon.document--vertical': { - '_original': { - '$value': '/icon/document--vertical.svg', + 'icon.devices': { + _original: { + $value: '/icon/devices.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--vertical', - '$type': 'link', - '$value': '/icon/document--vertical.svg', + id: 'icon.devices', + $type: 'link', + $value: '/icon/devices.svg', }, - 'icon.document--video': { - '_original': { - '$value': '/icon/document--video.svg', + 'icon.dew-point': { + _original: { + $value: '/icon/dew-point.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--video', - '$type': 'link', - '$value': '/icon/document--video.svg', + id: 'icon.dew-point', + $type: 'link', + $value: '/icon/dew-point.svg', }, - 'icon.document--view': { - '_original': { - '$value': '/icon/document--view.svg', + 'icon.dew-point--filled': { + _original: { + $value: '/icon/dew-point--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--view', - '$type': 'link', - '$value': '/icon/document--view.svg', + id: 'icon.dew-point--filled', + $type: 'link', + $value: '/icon/dew-point--filled.svg', }, - 'icon.document--word-processor': { - '_original': { - '$value': '/icon/document--word-processor.svg', + 'icon.diagram': { + _original: { + $value: '/icon/diagram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--word-processor', - '$type': 'link', - '$value': '/icon/document--word-processor.svg', + id: 'icon.diagram', + $type: 'link', + $value: '/icon/diagram.svg', }, - 'icon.document--word-processor--reference': { - '_original': { - '$value': '/icon/document--word-processor--reference.svg', + 'icon.diagram--reference': { + _original: { + $value: '/icon/diagram--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document--word-processor--reference', - '$type': 'link', - '$value': '/icon/document--word-processor--reference.svg', + id: 'icon.diagram--reference', + $type: 'link', + $value: '/icon/diagram--reference.svg', }, - 'icon.document-sentiment': { - '_original': { - '$value': '/icon/document-sentiment.svg', + 'icon.dicom--6000': { + _original: { + $value: '/icon/dicom--6000.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.document-sentiment', - '$type': 'link', - '$value': '/icon/document-sentiment.svg', + id: 'icon.dicom--6000', + $type: 'link', + $value: '/icon/dicom--6000.svg', }, - 'icon.dog-walker': { - '_original': { - '$value': '/icon/dog-walker.svg', + 'icon.dicom--overlay': { + _original: { + $value: '/icon/dicom--overlay.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dog-walker', - '$type': 'link', - '$value': '/icon/dog-walker.svg', + id: 'icon.dicom--overlay', + $type: 'link', + $value: '/icon/dicom--overlay.svg', }, - 'icon.dot-mark': { - '_original': { - '$value': '/icon/dot-mark.svg', + 'icon.direct-link': { + _original: { + $value: '/icon/direct-link.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.dot-mark', - '$type': 'link', - '$value': '/icon/dot-mark.svg', + id: 'icon.direct-link', + $type: 'link', + $value: '/icon/direct-link.svg', }, - 'icon.double-integer': { - '_original': { - '$value': '/icon/double-integer.svg', + 'icon.direction--bear-right--01': { + _original: { + $value: '/icon/direction--bear-right--01.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.double-integer', - '$type': 'link', - '$value': '/icon/double-integer.svg', + id: 'icon.direction--bear-right--01', + $type: 'link', + $value: '/icon/direction--bear-right--01.svg', }, - 'icon.down-to-bottom': { - '_original': { - '$value': '/icon/down-to-bottom.svg', + 'icon.direction--bear-right--01--filled': { + _original: { + $value: '/icon/direction--bear-right--01--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.down-to-bottom', - '$type': 'link', - '$value': '/icon/down-to-bottom.svg', + id: 'icon.direction--bear-right--01--filled', + $type: 'link', + $value: '/icon/direction--bear-right--01--filled.svg', }, - 'icon.download': { - '_original': { - '$value': '/icon/download.svg', + 'icon.direction--bear-right--02': { + _original: { + $value: '/icon/direction--bear-right--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.download', - '$type': 'link', - '$value': '/icon/download.svg', + id: 'icon.direction--bear-right--02', + $type: 'link', + $value: '/icon/direction--bear-right--02.svg', }, - 'icon.download-study': { - '_original': { - '$value': '/icon/download-study.svg', + 'icon.direction--bear-right--02--filled': { + _original: { + $value: '/icon/direction--bear-right--02--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.download-study', - '$type': 'link', - '$value': '/icon/download-study.svg', + id: 'icon.direction--bear-right--02--filled', + $type: 'link', + $value: '/icon/direction--bear-right--02--filled.svg', }, - 'icon.drag--horizontal': { - '_original': { - '$value': '/icon/drag--horizontal.svg', + 'icon.direction--curve': { + _original: { + $value: '/icon/direction--curve.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drag--horizontal', - '$type': 'link', - '$value': '/icon/drag--horizontal.svg', + id: 'icon.direction--curve', + $type: 'link', + $value: '/icon/direction--curve.svg', }, - 'icon.drag--vertical': { - '_original': { - '$value': '/icon/drag--vertical.svg', + 'icon.direction--curve--filled': { + _original: { + $value: '/icon/direction--curve--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drag--vertical', - '$type': 'link', - '$value': '/icon/drag--vertical.svg', + id: 'icon.direction--curve--filled', + $type: 'link', + $value: '/icon/direction--curve--filled.svg', }, - 'icon.draggable': { - '_original': { - '$value': '/icon/draggable.svg', + 'icon.direction--fork': { + _original: { + $value: '/icon/direction--fork.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.draggable', - '$type': 'link', - '$value': '/icon/draggable.svg', + id: 'icon.direction--fork', + $type: 'link', + $value: '/icon/direction--fork.svg', }, - 'icon.draw': { - '_original': { - '$value': '/icon/draw.svg', + 'icon.direction--fork--filled': { + _original: { + $value: '/icon/direction--fork--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.draw', - '$type': 'link', - '$value': '/icon/draw.svg', + id: 'icon.direction--fork--filled', + $type: 'link', + $value: '/icon/direction--fork--filled.svg', }, - 'icon.drill-back': { - '_original': { - '$value': '/icon/drill-back.svg', + 'icon.direction--loop-left': { + _original: { + $value: '/icon/direction--loop-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drill-back', - '$type': 'link', - '$value': '/icon/drill-back.svg', + id: 'icon.direction--loop-left', + $type: 'link', + $value: '/icon/direction--loop-left.svg', }, - 'icon.drill-down': { - '_original': { - '$value': '/icon/drill-down.svg', + 'icon.direction--loop-left--filled': { + _original: { + $value: '/icon/direction--loop-left--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drill-down', - '$type': 'link', - '$value': '/icon/drill-down.svg', + id: 'icon.direction--loop-left--filled', + $type: 'link', + $value: '/icon/direction--loop-left--filled.svg', }, - 'icon.drill-through': { - '_original': { - '$value': '/icon/drill-through.svg', + 'icon.direction--loop-right': { + _original: { + $value: '/icon/direction--loop-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drill-through', - '$type': 'link', - '$value': '/icon/drill-through.svg', + id: 'icon.direction--loop-right', + $type: 'link', + $value: '/icon/direction--loop-right.svg', }, - 'icon.driver-analysis': { - '_original': { - '$value': '/icon/driver-analysis.svg', + 'icon.direction--loop-right--filled': { + _original: { + $value: '/icon/direction--loop-right--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.driver-analysis', - '$type': 'link', - '$value': '/icon/driver-analysis.svg', + id: 'icon.direction--loop-right--filled', + $type: 'link', + $value: '/icon/direction--loop-right--filled.svg', }, - 'icon.drone': { - '_original': { - '$value': '/icon/drone.svg', + 'icon.direction--merge': { + _original: { + $value: '/icon/direction--merge.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drone', - '$type': 'link', - '$value': '/icon/drone.svg', + id: 'icon.direction--merge', + $type: 'link', + $value: '/icon/direction--merge.svg', }, - 'icon.drone--delivery': { - '_original': { - '$value': '/icon/drone--delivery.svg', + 'icon.direction--merge--filled': { + _original: { + $value: '/icon/direction--merge--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drone--delivery', - '$type': 'link', - '$value': '/icon/drone--delivery.svg', + id: 'icon.direction--merge--filled', + $type: 'link', + $value: '/icon/direction--merge--filled.svg', }, - 'icon.drone--front': { - '_original': { - '$value': '/icon/drone--front.svg', + 'icon.direction--right--01': { + _original: { + $value: '/icon/direction--right--01.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drone--front', - '$type': 'link', - '$value': '/icon/drone--front.svg', + id: 'icon.direction--right--01', + $type: 'link', + $value: '/icon/direction--right--01.svg', }, - 'icon.drone--video': { - '_original': { - '$value': '/icon/drone--video.svg', + 'icon.direction--right--01--filled': { + _original: { + $value: '/icon/direction--right--01--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drone--video', - '$type': 'link', - '$value': '/icon/drone--video.svg', + id: 'icon.direction--right--01--filled', + $type: 'link', + $value: '/icon/direction--right--01--filled.svg', }, - 'icon.drop-photo': { - '_original': { - '$value': '/icon/drop-photo.svg', + 'icon.direction--right--02': { + _original: { + $value: '/icon/direction--right--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drop-photo', - '$type': 'link', - '$value': '/icon/drop-photo.svg', + id: 'icon.direction--right--02', + $type: 'link', + $value: '/icon/direction--right--02.svg', }, - 'icon.drop-photo--filled': { - '_original': { - '$value': '/icon/drop-photo--filled.svg', + 'icon.direction--right--02--filled': { + _original: { + $value: '/icon/direction--right--02--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drop-photo--filled', - '$type': 'link', - '$value': '/icon/drop-photo--filled.svg', + id: 'icon.direction--right--02--filled', + $type: 'link', + $value: '/icon/direction--right--02--filled.svg', }, - 'icon.drought': { - '_original': { - '$value': '/icon/drought.svg', + 'icon.direction--rotary--first-right': { + _original: { + $value: '/icon/direction--rotary--first-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.drought', - '$type': 'link', - '$value': '/icon/drought.svg', + id: 'icon.direction--rotary--first-right', + $type: 'link', + $value: '/icon/direction--rotary--first-right.svg', }, - 'icon.DVR': { - '_original': { - '$value': '/icon/DVR.svg', + 'icon.direction--rotary--first-right--filled': { + _original: { + $value: '/icon/direction--rotary--first-right--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.DVR', - '$type': 'link', - '$value': '/icon/DVR.svg', + id: 'icon.direction--rotary--first-right--filled', + $type: 'link', + $value: '/icon/direction--rotary--first-right--filled.svg', }, - 'icon.earth': { - '_original': { - '$value': '/icon/earth.svg', + 'icon.direction--rotary--right': { + _original: { + $value: '/icon/direction--rotary--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth', - '$type': 'link', - '$value': '/icon/earth.svg', + id: 'icon.direction--rotary--right', + $type: 'link', + $value: '/icon/direction--rotary--right.svg', }, - 'icon.earth--americas': { - '_original': { - '$value': '/icon/earth--americas.svg', + 'icon.direction--rotary--right--filled': { + _original: { + $value: '/icon/direction--rotary--right--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--americas', - '$type': 'link', - '$value': '/icon/earth--americas.svg', + id: 'icon.direction--rotary--right--filled', + $type: 'link', + $value: '/icon/direction--rotary--right--filled.svg', }, - 'icon.earth--americas--filled': { - '_original': { - '$value': '/icon/earth--americas--filled.svg', + 'icon.direction--rotary--straight': { + _original: { + $value: '/icon/direction--rotary--straight.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--americas--filled', - '$type': 'link', - '$value': '/icon/earth--americas--filled.svg', + id: 'icon.direction--rotary--straight', + $type: 'link', + $value: '/icon/direction--rotary--straight.svg', }, - 'icon.earth--europe-africa': { - '_original': { - '$value': '/icon/earth--europe-africa.svg', + 'icon.direction--rotary--straight--filled': { + _original: { + $value: '/icon/direction--rotary--straight--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--europe-africa', - '$type': 'link', - '$value': '/icon/earth--europe-africa.svg', + id: 'icon.direction--rotary--straight--filled', + $type: 'link', + $value: '/icon/direction--rotary--straight--filled.svg', }, - 'icon.earth--europe-africa--filled': { - '_original': { - '$value': '/icon/earth--europe-africa--filled.svg', + 'icon.direction--sharp-turn': { + _original: { + $value: '/icon/direction--sharp-turn.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--europe-africa--filled', - '$type': 'link', - '$value': '/icon/earth--europe-africa--filled.svg', + id: 'icon.direction--sharp-turn', + $type: 'link', + $value: '/icon/direction--sharp-turn.svg', }, - 'icon.earth--filled': { - '_original': { - '$value': '/icon/earth--filled.svg', + 'icon.direction--sharp-turn--filled': { + _original: { + $value: '/icon/direction--sharp-turn--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--filled', - '$type': 'link', - '$value': '/icon/earth--filled.svg', + id: 'icon.direction--sharp-turn--filled', + $type: 'link', + $value: '/icon/direction--sharp-turn--filled.svg', }, - 'icon.earth--southeast-asia': { - '_original': { - '$value': '/icon/earth--southeast-asia.svg', + 'icon.direction--straight': { + _original: { + $value: '/icon/direction--straight.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--southeast-asia', - '$type': 'link', - '$value': '/icon/earth--southeast-asia.svg', + id: 'icon.direction--straight', + $type: 'link', + $value: '/icon/direction--straight.svg', }, - 'icon.earth--southeast-asia--filled': { - '_original': { - '$value': '/icon/earth--southeast-asia--filled.svg', + 'icon.direction--straight--filled': { + _original: { + $value: '/icon/direction--straight--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earth--southeast-asia--filled', - '$type': 'link', - '$value': '/icon/earth--southeast-asia--filled.svg', + id: 'icon.direction--straight--filled', + $type: 'link', + $value: '/icon/direction--straight--filled.svg', }, - 'icon.earthquake': { - '_original': { - '$value': '/icon/earthquake.svg', + 'icon.direction--straight--right': { + _original: { + $value: '/icon/direction--straight--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.earthquake', - '$type': 'link', - '$value': '/icon/earthquake.svg', + id: 'icon.direction--straight--right', + $type: 'link', + $value: '/icon/direction--straight--right.svg', }, - 'icon.edge-cluster': { - '_original': { - '$value': '/icon/edge-cluster.svg', + 'icon.direction--straight--right--filled': { + _original: { + $value: '/icon/direction--straight--right--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-cluster', - '$type': 'link', - '$value': '/icon/edge-cluster.svg', + id: 'icon.direction--straight--right--filled', + $type: 'link', + $value: '/icon/direction--straight--right--filled.svg', }, - 'icon.edge-device': { - '_original': { - '$value': '/icon/edge-device.svg', + 'icon.direction--u-turn': { + _original: { + $value: '/icon/direction--u-turn.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-device', - '$type': 'link', - '$value': '/icon/edge-device.svg', + id: 'icon.direction--u-turn', + $type: 'link', + $value: '/icon/direction--u-turn.svg', }, - 'icon.edge-enhancement': { - '_original': { - '$value': '/icon/edge-enhancement.svg', + 'icon.direction--u-turn--filled': { + _original: { + $value: '/icon/direction--u-turn--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-enhancement', - '$type': 'link', - '$value': '/icon/edge-enhancement.svg', + id: 'icon.direction--u-turn--filled', + $type: 'link', + $value: '/icon/direction--u-turn--filled.svg', }, - 'icon.edge-enhancement--01': { - '_original': { - '$value': '/icon/edge-enhancement--01.svg', + 'icon.directory-domain': { + _original: { + $value: '/icon/directory-domain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-enhancement--01', - '$type': 'link', - '$value': '/icon/edge-enhancement--01.svg', + id: 'icon.directory-domain', + $type: 'link', + $value: '/icon/directory-domain.svg', }, - 'icon.edge-enhancement--02': { - '_original': { - '$value': '/icon/edge-enhancement--02.svg', + 'icon.distribute--horizontal-center': { + _original: { + $value: '/icon/distribute--horizontal-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-enhancement--02', - '$type': 'link', - '$value': '/icon/edge-enhancement--02.svg', + id: 'icon.distribute--horizontal-center', + $type: 'link', + $value: '/icon/distribute--horizontal-center.svg', }, - 'icon.edge-enhancement--03': { - '_original': { - '$value': '/icon/edge-enhancement--03.svg', + 'icon.distribute--horizontal-left': { + _original: { + $value: '/icon/distribute--horizontal-left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-enhancement--03', - '$type': 'link', - '$value': '/icon/edge-enhancement--03.svg', + id: 'icon.distribute--horizontal-left', + $type: 'link', + $value: '/icon/distribute--horizontal-left.svg', }, - 'icon.edge-node': { - '_original': { - '$value': '/icon/edge-node.svg', + 'icon.distribute--horizontal-right': { + _original: { + $value: '/icon/distribute--horizontal-right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-node', - '$type': 'link', - '$value': '/icon/edge-node.svg', + id: 'icon.distribute--horizontal-right', + $type: 'link', + $value: '/icon/distribute--horizontal-right.svg', }, - 'icon.edge-node--alt': { - '_original': { - '$value': '/icon/edge-node--alt.svg', + 'icon.distribute--vertical-bottom': { + _original: { + $value: '/icon/distribute--vertical-bottom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-node--alt', - '$type': 'link', - '$value': '/icon/edge-node--alt.svg', + id: 'icon.distribute--vertical-bottom', + $type: 'link', + $value: '/icon/distribute--vertical-bottom.svg', }, - 'icon.edge-service': { - '_original': { - '$value': '/icon/edge-service.svg', + 'icon.distribute--vertical-center': { + _original: { + $value: '/icon/distribute--vertical-center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edge-service', - '$type': 'link', - '$value': '/icon/edge-service.svg', + id: 'icon.distribute--vertical-center', + $type: 'link', + $value: '/icon/distribute--vertical-center.svg', }, - 'icon.edit': { - '_original': { - '$value': '/icon/edit.svg', + 'icon.distribute--vertical-top': { + _original: { + $value: '/icon/distribute--vertical-top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edit', - '$type': 'link', - '$value': '/icon/edit.svg', + id: 'icon.distribute--vertical-top', + $type: 'link', + $value: '/icon/distribute--vertical-top.svg', }, - 'icon.edit--off': { - '_original': { - '$value': '/icon/edit--off.svg', + 'icon.dna': { + _original: { + $value: '/icon/dna.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edit--off', - '$type': 'link', - '$value': '/icon/edit--off.svg', + id: 'icon.dna', + $type: 'link', + $value: '/icon/dna.svg', }, - 'icon.edit-filter': { - '_original': { - '$value': '/icon/edit-filter.svg', + 'icon.dns-services': { + _original: { + $value: '/icon/dns-services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edit-filter', - '$type': 'link', - '$value': '/icon/edit-filter.svg', + id: 'icon.dns-services', + $type: 'link', + $value: '/icon/dns-services.svg', }, - 'icon.edt-loop': { - '_original': { - '$value': '/icon/edt-loop.svg', + 'icon.DOC': { + _original: { + $value: '/icon/DOC.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.edt-loop', - '$type': 'link', - '$value': '/icon/edt-loop.svg', + id: 'icon.DOC', + $type: 'link', + $value: '/icon/DOC.svg', }, - 'icon.education': { - '_original': { - '$value': '/icon/education.svg', + 'icon.document': { + _original: { + $value: '/icon/document.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.education', - '$type': 'link', - '$value': '/icon/education.svg', + id: 'icon.document', + $type: 'link', + $value: '/icon/document.svg', }, - 'icon.email': { - '_original': { - '$value': '/icon/email.svg', + 'icon.document--add': { + _original: { + $value: '/icon/document--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.email', - '$type': 'link', - '$value': '/icon/email.svg', + id: 'icon.document--add', + $type: 'link', + $value: '/icon/document--add.svg', }, - 'icon.email--new': { - '_original': { - '$value': '/icon/email--new.svg', + 'icon.document--attachment': { + _original: { + $value: '/icon/document--attachment.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.email--new', - '$type': 'link', - '$value': '/icon/email--new.svg', + id: 'icon.document--attachment', + $type: 'link', + $value: '/icon/document--attachment.svg', }, - 'icon.encryption': { - '_original': { - '$value': '/icon/encryption.svg', + 'icon.document--audio': { + _original: { + $value: '/icon/document--audio.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.encryption', - '$type': 'link', - '$value': '/icon/encryption.svg', + id: 'icon.document--audio', + $type: 'link', + $value: '/icon/document--audio.svg', }, - 'icon.energy--renewable': { - '_original': { - '$value': '/icon/energy--renewable.svg', + 'icon.document--blank': { + _original: { + $value: '/icon/document--blank.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.energy--renewable', - '$type': 'link', - '$value': '/icon/energy--renewable.svg', + id: 'icon.document--blank', + $type: 'link', + $value: '/icon/document--blank.svg', }, - 'icon.enterprise': { - '_original': { - '$value': '/icon/enterprise.svg', + 'icon.document--download': { + _original: { + $value: '/icon/document--download.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.enterprise', - '$type': 'link', - '$value': '/icon/enterprise.svg', + id: 'icon.document--download', + $type: 'link', + $value: '/icon/document--download.svg', }, - 'icon.equalizer': { - '_original': { - '$value': '/icon/equalizer.svg', + 'icon.document--epdf': { + _original: { + $value: '/icon/document--epdf.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.equalizer', - '$type': 'link', - '$value': '/icon/equalizer.svg', + id: 'icon.document--epdf', + $type: 'link', + $value: '/icon/document--epdf.svg', }, - 'icon.erase': { - '_original': { - '$value': '/icon/erase.svg', + 'icon.document--export': { + _original: { + $value: '/icon/document--export.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.erase', - '$type': 'link', - '$value': '/icon/erase.svg', + id: 'icon.document--export', + $type: 'link', + $value: '/icon/document--export.svg', }, - 'icon.erase--3D': { - '_original': { - '$value': '/icon/erase--3D.svg', + 'icon.document--horizontal': { + _original: { + $value: '/icon/document--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.erase--3D', - '$type': 'link', - '$value': '/icon/erase--3D.svg', + id: 'icon.document--horizontal', + $type: 'link', + $value: '/icon/document--horizontal.svg', }, - 'icon.error': { - '_original': { - '$value': '/icon/error.svg', + 'icon.document--import': { + _original: { + $value: '/icon/document--import.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.error', - '$type': 'link', - '$value': '/icon/error.svg', + id: 'icon.document--import', + $type: 'link', + $value: '/icon/document--import.svg', }, - 'icon.error--filled': { - '_original': { - '$value': '/icon/error--filled.svg', + 'icon.document--pdf': { + _original: { + $value: '/icon/document--pdf.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.error--filled', - '$type': 'link', - '$value': '/icon/error--filled.svg', + id: 'icon.document--pdf', + $type: 'link', + $value: '/icon/document--pdf.svg', }, - 'icon.error--outline': { - '_original': { - '$value': '/icon/error--outline.svg', + 'icon.document--preliminary': { + _original: { + $value: '/icon/document--preliminary.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.error--outline', - '$type': 'link', - '$value': '/icon/error--outline.svg', + id: 'icon.document--preliminary', + $type: 'link', + $value: '/icon/document--preliminary.svg', }, - 'icon.event': { - '_original': { - '$value': '/icon/event.svg', + 'icon.document--protected': { + _original: { + $value: '/icon/document--protected.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.event', - '$type': 'link', - '$value': '/icon/event.svg', + id: 'icon.document--protected', + $type: 'link', + $value: '/icon/document--protected.svg', }, - 'icon.event--schedule': { - '_original': { - '$value': '/icon/event--schedule.svg', + 'icon.document--security': { + _original: { + $value: '/icon/document--security.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.event--schedule', - '$type': 'link', - '$value': '/icon/event--schedule.svg', + id: 'icon.document--security', + $type: 'link', + $value: '/icon/document--security.svg', }, - 'icon.events': { - '_original': { - '$value': '/icon/events.svg', + 'icon.document--signed': { + _original: { + $value: '/icon/document--signed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.events', - '$type': 'link', - '$value': '/icon/events.svg', + id: 'icon.document--signed', + $type: 'link', + $value: '/icon/document--signed.svg', }, - 'icon.events--alt': { - '_original': { - '$value': '/icon/events--alt.svg', + 'icon.document--sketch': { + _original: { + $value: '/icon/document--sketch.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.events--alt', - '$type': 'link', - '$value': '/icon/events--alt.svg', + id: 'icon.document--sketch', + $type: 'link', + $value: '/icon/document--sketch.svg', }, - 'icon.exam-mode': { - '_original': { - '$value': '/icon/exam-mode.svg', + 'icon.document--subtract': { + _original: { + $value: '/icon/document--subtract.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.exam-mode', - '$type': 'link', - '$value': '/icon/exam-mode.svg', + id: 'icon.document--subtract', + $type: 'link', + $value: '/icon/document--subtract.svg', }, - 'icon.exit': { - '_original': { - '$value': '/icon/exit.svg', + 'icon.document--tasks': { + _original: { + $value: '/icon/document--tasks.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.exit', - '$type': 'link', - '$value': '/icon/exit.svg', + id: 'icon.document--tasks', + $type: 'link', + $value: '/icon/document--tasks.svg', }, - 'icon.expand-all': { - '_original': { - '$value': '/icon/expand-all.svg', + 'icon.document--unknown': { + _original: { + $value: '/icon/document--unknown.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.expand-all', - '$type': 'link', - '$value': '/icon/expand-all.svg', + id: 'icon.document--unknown', + $type: 'link', + $value: '/icon/document--unknown.svg', }, - 'icon.expand-categories': { - '_original': { - '$value': '/icon/expand-categories.svg', + 'icon.document--unprotected': { + _original: { + $value: '/icon/document--unprotected.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.expand-categories', - '$type': 'link', - '$value': '/icon/expand-categories.svg', + id: 'icon.document--unprotected', + $type: 'link', + $value: '/icon/document--unprotected.svg', }, - 'icon.explore': { - '_original': { - '$value': '/icon/explore.svg', + 'icon.document--vertical': { + _original: { + $value: '/icon/document--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.explore', - '$type': 'link', - '$value': '/icon/explore.svg', + id: 'icon.document--vertical', + $type: 'link', + $value: '/icon/document--vertical.svg', }, - 'icon.export': { - '_original': { - '$value': '/icon/export.svg', + 'icon.document--video': { + _original: { + $value: '/icon/document--video.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.export', - '$type': 'link', - '$value': '/icon/export.svg', + id: 'icon.document--video', + $type: 'link', + $value: '/icon/document--video.svg', }, - 'icon.eyedropper': { - '_original': { - '$value': '/icon/eyedropper.svg', + 'icon.document--view': { + _original: { + $value: '/icon/document--view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.eyedropper', - '$type': 'link', - '$value': '/icon/eyedropper.svg', + id: 'icon.document--view', + $type: 'link', + $value: '/icon/document--view.svg', }, - 'icon.face--activated': { - '_original': { - '$value': '/icon/face--activated.svg', + 'icon.document--word-processor': { + _original: { + $value: '/icon/document--word-processor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--activated', - '$type': 'link', - '$value': '/icon/face--activated.svg', + id: 'icon.document--word-processor', + $type: 'link', + $value: '/icon/document--word-processor.svg', }, - 'icon.face--activated--add': { - '_original': { - '$value': '/icon/face--activated--add.svg', + 'icon.document--word-processor--reference': { + _original: { + $value: '/icon/document--word-processor--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--activated--add', - '$type': 'link', - '$value': '/icon/face--activated--add.svg', + id: 'icon.document--word-processor--reference', + $type: 'link', + $value: '/icon/document--word-processor--reference.svg', }, - 'icon.face--activated--filled': { - '_original': { - '$value': '/icon/face--activated--filled.svg', + 'icon.document-sentiment': { + _original: { + $value: '/icon/document-sentiment.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--activated--filled', - '$type': 'link', - '$value': '/icon/face--activated--filled.svg', + id: 'icon.document-sentiment', + $type: 'link', + $value: '/icon/document-sentiment.svg', }, - 'icon.face--add': { - '_original': { - '$value': '/icon/face--add.svg', + 'icon.dog-walker': { + _original: { + $value: '/icon/dog-walker.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--add', - '$type': 'link', - '$value': '/icon/face--add.svg', + id: 'icon.dog-walker', + $type: 'link', + $value: '/icon/dog-walker.svg', }, - 'icon.face--cool': { - '_original': { - '$value': '/icon/face--cool.svg', + 'icon.dot-mark': { + _original: { + $value: '/icon/dot-mark.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--cool', - '$type': 'link', - '$value': '/icon/face--cool.svg', + id: 'icon.dot-mark', + $type: 'link', + $value: '/icon/dot-mark.svg', }, - 'icon.face--dissatisfied': { - '_original': { - '$value': '/icon/face--dissatisfied.svg', + 'icon.double-integer': { + _original: { + $value: '/icon/double-integer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--dissatisfied', - '$type': 'link', - '$value': '/icon/face--dissatisfied.svg', + id: 'icon.double-integer', + $type: 'link', + $value: '/icon/double-integer.svg', }, - 'icon.face--dissatisfied--filled': { - '_original': { - '$value': '/icon/face--dissatisfied--filled.svg', + 'icon.down-to-bottom': { + _original: { + $value: '/icon/down-to-bottom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--dissatisfied--filled', - '$type': 'link', - '$value': '/icon/face--dissatisfied--filled.svg', + id: 'icon.down-to-bottom', + $type: 'link', + $value: '/icon/down-to-bottom.svg', }, - 'icon.face--dizzy': { - '_original': { - '$value': '/icon/face--dizzy.svg', + 'icon.download': { + _original: { + $value: '/icon/download.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--dizzy', - '$type': 'link', - '$value': '/icon/face--dizzy.svg', + id: 'icon.download', + $type: 'link', + $value: '/icon/download.svg', }, - 'icon.face--dizzy--filled': { - '_original': { - '$value': '/icon/face--dizzy--filled.svg', + 'icon.download-study': { + _original: { + $value: '/icon/download-study.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--dizzy--filled', - '$type': 'link', - '$value': '/icon/face--dizzy--filled.svg', + id: 'icon.download-study', + $type: 'link', + $value: '/icon/download-study.svg', }, - 'icon.face--mask': { - '_original': { - '$value': '/icon/face--mask.svg', + 'icon.drag--horizontal': { + _original: { + $value: '/icon/drag--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--mask', - '$type': 'link', - '$value': '/icon/face--mask.svg', + id: 'icon.drag--horizontal', + $type: 'link', + $value: '/icon/drag--horizontal.svg', }, - 'icon.face--neutral': { - '_original': { - '$value': '/icon/face--neutral.svg', + 'icon.drag--vertical': { + _original: { + $value: '/icon/drag--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--neutral', - '$type': 'link', - '$value': '/icon/face--neutral.svg', + id: 'icon.drag--vertical', + $type: 'link', + $value: '/icon/drag--vertical.svg', }, - 'icon.face--neutral--filled': { - '_original': { - '$value': '/icon/face--neutral--filled.svg', + 'icon.draggable': { + _original: { + $value: '/icon/draggable.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--neutral--filled', - '$type': 'link', - '$value': '/icon/face--neutral--filled.svg', + id: 'icon.draggable', + $type: 'link', + $value: '/icon/draggable.svg', }, - 'icon.face--pending': { - '_original': { - '$value': '/icon/face--pending.svg', + 'icon.draw': { + _original: { + $value: '/icon/draw.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--pending', - '$type': 'link', - '$value': '/icon/face--pending.svg', + id: 'icon.draw', + $type: 'link', + $value: '/icon/draw.svg', }, - 'icon.face--pending--filled': { - '_original': { - '$value': '/icon/face--pending--filled.svg', + 'icon.drill-back': { + _original: { + $value: '/icon/drill-back.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--pending--filled', - '$type': 'link', - '$value': '/icon/face--pending--filled.svg', + id: 'icon.drill-back', + $type: 'link', + $value: '/icon/drill-back.svg', }, - 'icon.face--satisfied': { - '_original': { - '$value': '/icon/face--satisfied.svg', + 'icon.drill-down': { + _original: { + $value: '/icon/drill-down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--satisfied', - '$type': 'link', - '$value': '/icon/face--satisfied.svg', + id: 'icon.drill-down', + $type: 'link', + $value: '/icon/drill-down.svg', }, - 'icon.face--satisfied--filled': { - '_original': { - '$value': '/icon/face--satisfied--filled.svg', + 'icon.drill-through': { + _original: { + $value: '/icon/drill-through.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--satisfied--filled', - '$type': 'link', - '$value': '/icon/face--satisfied--filled.svg', + id: 'icon.drill-through', + $type: 'link', + $value: '/icon/drill-through.svg', }, - 'icon.face--wink': { - '_original': { - '$value': '/icon/face--wink.svg', + 'icon.driver-analysis': { + _original: { + $value: '/icon/driver-analysis.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--wink', - '$type': 'link', - '$value': '/icon/face--wink.svg', + id: 'icon.driver-analysis', + $type: 'link', + $value: '/icon/driver-analysis.svg', }, - 'icon.face--wink--filled': { - '_original': { - '$value': '/icon/face--wink--filled.svg', + 'icon.drone': { + _original: { + $value: '/icon/drone.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.face--wink--filled', - '$type': 'link', - '$value': '/icon/face--wink--filled.svg', + id: 'icon.drone', + $type: 'link', + $value: '/icon/drone.svg', }, - 'icon.factor': { - '_original': { - '$value': '/icon/factor.svg', + 'icon.drone--delivery': { + _original: { + $value: '/icon/drone--delivery.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.factor', - '$type': 'link', - '$value': '/icon/factor.svg', + id: 'icon.drone--delivery', + $type: 'link', + $value: '/icon/drone--delivery.svg', }, - 'icon.fade': { - '_original': { - '$value': '/icon/fade.svg', + 'icon.drone--front': { + _original: { + $value: '/icon/drone--front.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fade', - '$type': 'link', - '$value': '/icon/fade.svg', + id: 'icon.drone--front', + $type: 'link', + $value: '/icon/drone--front.svg', }, - 'icon.favorite': { - '_original': { - '$value': '/icon/favorite.svg', + 'icon.drone--video': { + _original: { + $value: '/icon/drone--video.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.favorite', - '$type': 'link', - '$value': '/icon/favorite.svg', + id: 'icon.drone--video', + $type: 'link', + $value: '/icon/drone--video.svg', }, - 'icon.favorite--filled': { - '_original': { - '$value': '/icon/favorite--filled.svg', + 'icon.drop-photo': { + _original: { + $value: '/icon/drop-photo.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.favorite--filled', - '$type': 'link', - '$value': '/icon/favorite--filled.svg', + id: 'icon.drop-photo', + $type: 'link', + $value: '/icon/drop-photo.svg', }, - 'icon.favorite--half': { - '_original': { - '$value': '/icon/favorite--half.svg', + 'icon.drop-photo--filled': { + _original: { + $value: '/icon/drop-photo--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.favorite--half', - '$type': 'link', - '$value': '/icon/favorite--half.svg', + id: 'icon.drop-photo--filled', + $type: 'link', + $value: '/icon/drop-photo--filled.svg', }, - 'icon.fetch-upload': { - '_original': { - '$value': '/icon/fetch-upload.svg', + 'icon.drought': { + _original: { + $value: '/icon/drought.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fetch-upload', - '$type': 'link', - '$value': '/icon/fetch-upload.svg', + id: 'icon.drought', + $type: 'link', + $value: '/icon/drought.svg', }, - 'icon.fetch-upload--cloud': { - '_original': { - '$value': '/icon/fetch-upload--cloud.svg', + 'icon.DVR': { + _original: { + $value: '/icon/DVR.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fetch-upload--cloud', - '$type': 'link', - '$value': '/icon/fetch-upload--cloud.svg', + id: 'icon.DVR', + $type: 'link', + $value: '/icon/DVR.svg', }, - 'icon.file-storage': { - '_original': { - '$value': '/icon/file-storage.svg', + 'icon.earth': { + _original: { + $value: '/icon/earth.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.file-storage', - '$type': 'link', - '$value': '/icon/file-storage.svg', + id: 'icon.earth', + $type: 'link', + $value: '/icon/earth.svg', }, - 'icon.filter': { - '_original': { - '$value': '/icon/filter.svg', + 'icon.earth--americas': { + _original: { + $value: '/icon/earth--americas.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.filter', - '$type': 'link', - '$value': '/icon/filter.svg', + id: 'icon.earth--americas', + $type: 'link', + $value: '/icon/earth--americas.svg', }, - 'icon.filter--edit': { - '_original': { - '$value': '/icon/filter--edit.svg', + 'icon.earth--americas--filled': { + _original: { + $value: '/icon/earth--americas--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.filter--edit', - '$type': 'link', - '$value': '/icon/filter--edit.svg', + id: 'icon.earth--americas--filled', + $type: 'link', + $value: '/icon/earth--americas--filled.svg', }, - 'icon.filter--remove': { - '_original': { - '$value': '/icon/filter--remove.svg', + 'icon.earth--europe-africa': { + _original: { + $value: '/icon/earth--europe-africa.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.filter--remove', - '$type': 'link', - '$value': '/icon/filter--remove.svg', + id: 'icon.earth--europe-africa', + $type: 'link', + $value: '/icon/earth--europe-africa.svg', }, - 'icon.filter--reset': { - '_original': { - '$value': '/icon/filter--reset.svg', + 'icon.earth--europe-africa--filled': { + _original: { + $value: '/icon/earth--europe-africa--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.filter--reset', - '$type': 'link', - '$value': '/icon/filter--reset.svg', + id: 'icon.earth--europe-africa--filled', + $type: 'link', + $value: '/icon/earth--europe-africa--filled.svg', }, - 'icon.finance': { - '_original': { - '$value': '/icon/finance.svg', + 'icon.earth--filled': { + _original: { + $value: '/icon/earth--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.finance', - '$type': 'link', - '$value': '/icon/finance.svg', + id: 'icon.earth--filled', + $type: 'link', + $value: '/icon/earth--filled.svg', }, - 'icon.fingerprint-recognition': { - '_original': { - '$value': '/icon/fingerprint-recognition.svg', + 'icon.earth--southeast-asia': { + _original: { + $value: '/icon/earth--southeast-asia.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fingerprint-recognition', - '$type': 'link', - '$value': '/icon/fingerprint-recognition.svg', + id: 'icon.earth--southeast-asia', + $type: 'link', + $value: '/icon/earth--southeast-asia.svg', }, - 'icon.fire': { - '_original': { - '$value': '/icon/fire.svg', + 'icon.earth--southeast-asia--filled': { + _original: { + $value: '/icon/earth--southeast-asia--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fire', - '$type': 'link', - '$value': '/icon/fire.svg', + id: 'icon.earth--southeast-asia--filled', + $type: 'link', + $value: '/icon/earth--southeast-asia--filled.svg', }, - 'icon.firewall': { - '_original': { - '$value': '/icon/firewall.svg', + 'icon.earthquake': { + _original: { + $value: '/icon/earthquake.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.firewall', - '$type': 'link', - '$value': '/icon/firewall.svg', + id: 'icon.earthquake', + $type: 'link', + $value: '/icon/earthquake.svg', }, - 'icon.firewall--classic': { - '_original': { - '$value': '/icon/firewall--classic.svg', + 'icon.edge-cluster': { + _original: { + $value: '/icon/edge-cluster.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.firewall--classic', - '$type': 'link', - '$value': '/icon/firewall--classic.svg', + id: 'icon.edge-cluster', + $type: 'link', + $value: '/icon/edge-cluster.svg', }, - 'icon.fish': { - '_original': { - '$value': '/icon/fish.svg', + 'icon.edge-device': { + _original: { + $value: '/icon/edge-device.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fish', - '$type': 'link', - '$value': '/icon/fish.svg', + id: 'icon.edge-device', + $type: 'link', + $value: '/icon/edge-device.svg', }, - 'icon.fish--multiple': { - '_original': { - '$value': '/icon/fish--multiple.svg', + 'icon.edge-enhancement': { + _original: { + $value: '/icon/edge-enhancement.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fish--multiple', - '$type': 'link', - '$value': '/icon/fish--multiple.svg', + id: 'icon.edge-enhancement', + $type: 'link', + $value: '/icon/edge-enhancement.svg', }, - 'icon.fit-to-height': { - '_original': { - '$value': '/icon/fit-to-height.svg', + 'icon.edge-enhancement--01': { + _original: { + $value: '/icon/edge-enhancement--01.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fit-to-height', - '$type': 'link', - '$value': '/icon/fit-to-height.svg', + id: 'icon.edge-enhancement--01', + $type: 'link', + $value: '/icon/edge-enhancement--01.svg', }, - 'icon.fit-to-screen': { - '_original': { - '$value': '/icon/fit-to-screen.svg', + 'icon.edge-enhancement--02': { + _original: { + $value: '/icon/edge-enhancement--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fit-to-screen', - '$type': 'link', - '$value': '/icon/fit-to-screen.svg', + id: 'icon.edge-enhancement--02', + $type: 'link', + $value: '/icon/edge-enhancement--02.svg', }, - 'icon.fit-to-width': { - '_original': { - '$value': '/icon/fit-to-width.svg', + 'icon.edge-enhancement--03': { + _original: { + $value: '/icon/edge-enhancement--03.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fit-to-width', - '$type': 'link', - '$value': '/icon/fit-to-width.svg', + id: 'icon.edge-enhancement--03', + $type: 'link', + $value: '/icon/edge-enhancement--03.svg', }, - 'icon.flag': { - '_original': { - '$value': '/icon/flag.svg', + 'icon.edge-node': { + _original: { + $value: '/icon/edge-node.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flag', - '$type': 'link', - '$value': '/icon/flag.svg', + id: 'icon.edge-node', + $type: 'link', + $value: '/icon/edge-node.svg', }, - 'icon.flag--filled': { - '_original': { - '$value': '/icon/flag--filled.svg', + 'icon.edge-node--alt': { + _original: { + $value: '/icon/edge-node--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flag--filled', - '$type': 'link', - '$value': '/icon/flag--filled.svg', + id: 'icon.edge-node--alt', + $type: 'link', + $value: '/icon/edge-node--alt.svg', }, - 'icon.flagging-taxi': { - '_original': { - '$value': '/icon/flagging-taxi.svg', + 'icon.edge-service': { + _original: { + $value: '/icon/edge-service.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flagging-taxi', - '$type': 'link', - '$value': '/icon/flagging-taxi.svg', + id: 'icon.edge-service', + $type: 'link', + $value: '/icon/edge-service.svg', }, - 'icon.flash': { - '_original': { - '$value': '/icon/flash.svg', + 'icon.edit': { + _original: { + $value: '/icon/edit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flash', - '$type': 'link', - '$value': '/icon/flash.svg', + id: 'icon.edit', + $type: 'link', + $value: '/icon/edit.svg', }, - 'icon.flash--filled': { - '_original': { - '$value': '/icon/flash--filled.svg', + 'icon.edit--off': { + _original: { + $value: '/icon/edit--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flash--filled', - '$type': 'link', - '$value': '/icon/flash--filled.svg', + id: 'icon.edit--off', + $type: 'link', + $value: '/icon/edit--off.svg', }, - 'icon.flash--off': { - '_original': { - '$value': '/icon/flash--off.svg', + 'icon.edit-filter': { + _original: { + $value: '/icon/edit-filter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flash--off', - '$type': 'link', - '$value': '/icon/flash--off.svg', + id: 'icon.edit-filter', + $type: 'link', + $value: '/icon/edit-filter.svg', }, - 'icon.flash--off--filled': { - '_original': { - '$value': '/icon/flash--off--filled.svg', + 'icon.edt-loop': { + _original: { + $value: '/icon/edt-loop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flash--off--filled', - '$type': 'link', - '$value': '/icon/flash--off--filled.svg', + id: 'icon.edt-loop', + $type: 'link', + $value: '/icon/edt-loop.svg', }, - 'icon.flight--international': { - '_original': { - '$value': '/icon/flight--international.svg', + 'icon.education': { + _original: { + $value: '/icon/education.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flight--international', - '$type': 'link', - '$value': '/icon/flight--international.svg', + id: 'icon.education', + $type: 'link', + $value: '/icon/education.svg', }, - 'icon.flight--roster': { - '_original': { - '$value': '/icon/flight--roster.svg', + 'icon.email': { + _original: { + $value: '/icon/email.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flight--roster', - '$type': 'link', - '$value': '/icon/flight--roster.svg', + id: 'icon.email', + $type: 'link', + $value: '/icon/email.svg', }, - 'icon.flight--schedule': { - '_original': { - '$value': '/icon/flight--schedule.svg', + 'icon.email--new': { + _original: { + $value: '/icon/email--new.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flight--schedule', - '$type': 'link', - '$value': '/icon/flight--schedule.svg', + id: 'icon.email--new', + $type: 'link', + $value: '/icon/email--new.svg', }, - 'icon.floating-ip': { - '_original': { - '$value': '/icon/floating-ip.svg', + 'icon.encryption': { + _original: { + $value: '/icon/encryption.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.floating-ip', - '$type': 'link', - '$value': '/icon/floating-ip.svg', + id: 'icon.encryption', + $type: 'link', + $value: '/icon/encryption.svg', }, - 'icon.flood': { - '_original': { - '$value': '/icon/flood.svg', + 'icon.energy--renewable': { + _original: { + $value: '/icon/energy--renewable.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flood', - '$type': 'link', - '$value': '/icon/flood.svg', + id: 'icon.energy--renewable', + $type: 'link', + $value: '/icon/energy--renewable.svg', }, - 'icon.flood--warning': { - '_original': { - '$value': '/icon/flood--warning.svg', + 'icon.enterprise': { + _original: { + $value: '/icon/enterprise.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flood--warning', - '$type': 'link', - '$value': '/icon/flood--warning.svg', + id: 'icon.enterprise', + $type: 'link', + $value: '/icon/enterprise.svg', }, - 'icon.flow': { - '_original': { - '$value': '/icon/flow.svg', + 'icon.equalizer': { + _original: { + $value: '/icon/equalizer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow', - '$type': 'link', - '$value': '/icon/flow.svg', + id: 'icon.equalizer', + $type: 'link', + $value: '/icon/equalizer.svg', }, - 'icon.flow--connection': { - '_original': { - '$value': '/icon/flow--connection.svg', + 'icon.erase': { + _original: { + $value: '/icon/erase.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow--connection', - '$type': 'link', - '$value': '/icon/flow--connection.svg', + id: 'icon.erase', + $type: 'link', + $value: '/icon/erase.svg', }, - 'icon.flow--data': { - '_original': { - '$value': '/icon/flow--data.svg', + 'icon.erase--3D': { + _original: { + $value: '/icon/erase--3D.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow--data', - '$type': 'link', - '$value': '/icon/flow--data.svg', + id: 'icon.erase--3D', + $type: 'link', + $value: '/icon/erase--3D.svg', }, - 'icon.flow--modeler': { - '_original': { - '$value': '/icon/flow--modeler.svg', + 'icon.error': { + _original: { + $value: '/icon/error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow--modeler', - '$type': 'link', - '$value': '/icon/flow--modeler.svg', + id: 'icon.error', + $type: 'link', + $value: '/icon/error.svg', }, - 'icon.flow--modeler--reference': { - '_original': { - '$value': '/icon/flow--modeler--reference.svg', + 'icon.error--filled': { + _original: { + $value: '/icon/error--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow--modeler--reference', - '$type': 'link', - '$value': '/icon/flow--modeler--reference.svg', + id: 'icon.error--filled', + $type: 'link', + $value: '/icon/error--filled.svg', }, - 'icon.flow--stream': { - '_original': { - '$value': '/icon/flow--stream.svg', + 'icon.error--outline': { + _original: { + $value: '/icon/error--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow--stream', - '$type': 'link', - '$value': '/icon/flow--stream.svg', + id: 'icon.error--outline', + $type: 'link', + $value: '/icon/error--outline.svg', }, - 'icon.flow--stream--reference': { - '_original': { - '$value': '/icon/flow--stream--reference.svg', + 'icon.event': { + _original: { + $value: '/icon/event.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow--stream--reference', - '$type': 'link', - '$value': '/icon/flow--stream--reference.svg', + id: 'icon.event', + $type: 'link', + $value: '/icon/event.svg', }, - 'icon.flow-logs-vpc': { - '_original': { - '$value': '/icon/flow-logs-vpc.svg', + 'icon.event--schedule': { + _original: { + $value: '/icon/event--schedule.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.flow-logs-vpc', - '$type': 'link', - '$value': '/icon/flow-logs-vpc.svg', + id: 'icon.event--schedule', + $type: 'link', + $value: '/icon/event--schedule.svg', }, - 'icon.fog': { - '_original': { - '$value': '/icon/fog.svg', + 'icon.events': { + _original: { + $value: '/icon/events.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fog', - '$type': 'link', - '$value': '/icon/fog.svg', + id: 'icon.events', + $type: 'link', + $value: '/icon/events.svg', }, - 'icon.folder': { - '_original': { - '$value': '/icon/folder.svg', + 'icon.events--alt': { + _original: { + $value: '/icon/events--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder', - '$type': 'link', - '$value': '/icon/folder.svg', + id: 'icon.events--alt', + $type: 'link', + $value: '/icon/events--alt.svg', }, - 'icon.folder--add': { - '_original': { - '$value': '/icon/folder--add.svg', + 'icon.exam-mode': { + _original: { + $value: '/icon/exam-mode.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--add', - '$type': 'link', - '$value': '/icon/folder--add.svg', + id: 'icon.exam-mode', + $type: 'link', + $value: '/icon/exam-mode.svg', }, - 'icon.folder--details': { - '_original': { - '$value': '/icon/folder--details.svg', + 'icon.exit': { + _original: { + $value: '/icon/exit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--details', - '$type': 'link', - '$value': '/icon/folder--details.svg', + id: 'icon.exit', + $type: 'link', + $value: '/icon/exit.svg', }, - 'icon.folder--details--reference': { - '_original': { - '$value': '/icon/folder--details--reference.svg', + 'icon.expand-all': { + _original: { + $value: '/icon/expand-all.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--details--reference', - '$type': 'link', - '$value': '/icon/folder--details--reference.svg', + id: 'icon.expand-all', + $type: 'link', + $value: '/icon/expand-all.svg', }, - 'icon.folder--move-to': { - '_original': { - '$value': '/icon/folder--move-to.svg', + 'icon.expand-categories': { + _original: { + $value: '/icon/expand-categories.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--move-to', - '$type': 'link', - '$value': '/icon/folder--move-to.svg', + id: 'icon.expand-categories', + $type: 'link', + $value: '/icon/expand-categories.svg', }, - 'icon.folder--off': { - '_original': { - '$value': '/icon/folder--off.svg', + 'icon.explore': { + _original: { + $value: '/icon/explore.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--off', - '$type': 'link', - '$value': '/icon/folder--off.svg', + id: 'icon.explore', + $type: 'link', + $value: '/icon/explore.svg', }, - 'icon.folder--open': { - '_original': { - '$value': '/icon/folder--open.svg', + 'icon.export': { + _original: { + $value: '/icon/export.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--open', - '$type': 'link', - '$value': '/icon/folder--open.svg', + id: 'icon.export', + $type: 'link', + $value: '/icon/export.svg', }, - 'icon.folder--parent': { - '_original': { - '$value': '/icon/folder--parent.svg', + 'icon.eyedropper': { + _original: { + $value: '/icon/eyedropper.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--parent', - '$type': 'link', - '$value': '/icon/folder--parent.svg', + id: 'icon.eyedropper', + $type: 'link', + $value: '/icon/eyedropper.svg', }, - 'icon.folder--shared': { - '_original': { - '$value': '/icon/folder--shared.svg', + 'icon.face--activated': { + _original: { + $value: '/icon/face--activated.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folder--shared', - '$type': 'link', - '$value': '/icon/folder--shared.svg', + id: 'icon.face--activated', + $type: 'link', + $value: '/icon/face--activated.svg', }, - 'icon.folders': { - '_original': { - '$value': '/icon/folders.svg', + 'icon.face--activated--add': { + _original: { + $value: '/icon/face--activated--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.folders', - '$type': 'link', - '$value': '/icon/folders.svg', + id: 'icon.face--activated--add', + $type: 'link', + $value: '/icon/face--activated--add.svg', }, - 'icon.forecast--hail': { - '_original': { - '$value': '/icon/forecast--hail.svg', + 'icon.face--activated--filled': { + _original: { + $value: '/icon/face--activated--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forecast--hail', - '$type': 'link', - '$value': '/icon/forecast--hail.svg', + id: 'icon.face--activated--filled', + $type: 'link', + $value: '/icon/face--activated--filled.svg', }, - 'icon.forecast--hail-30': { - '_original': { - '$value': '/icon/forecast--hail-30.svg', + 'icon.face--add': { + _original: { + $value: '/icon/face--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forecast--hail-30', - '$type': 'link', - '$value': '/icon/forecast--hail-30.svg', + id: 'icon.face--add', + $type: 'link', + $value: '/icon/face--add.svg', }, - 'icon.forecast--lightning': { - '_original': { - '$value': '/icon/forecast--lightning.svg', + 'icon.face--cool': { + _original: { + $value: '/icon/face--cool.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forecast--lightning', - '$type': 'link', - '$value': '/icon/forecast--lightning.svg', + id: 'icon.face--cool', + $type: 'link', + $value: '/icon/face--cool.svg', }, - 'icon.forecast--lightning-30': { - '_original': { - '$value': '/icon/forecast--lightning-30.svg', + 'icon.face--dissatisfied': { + _original: { + $value: '/icon/face--dissatisfied.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forecast--lightning-30', - '$type': 'link', - '$value': '/icon/forecast--lightning-30.svg', + id: 'icon.face--dissatisfied', + $type: 'link', + $value: '/icon/face--dissatisfied.svg', }, - 'icon.fork': { - '_original': { - '$value': '/icon/fork.svg', + 'icon.face--dissatisfied--filled': { + _original: { + $value: '/icon/face--dissatisfied--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fork', - '$type': 'link', - '$value': '/icon/fork.svg', + id: 'icon.face--dissatisfied--filled', + $type: 'link', + $value: '/icon/face--dissatisfied--filled.svg', }, - 'icon.forum': { - '_original': { - '$value': '/icon/forum.svg', + 'icon.face--dizzy': { + _original: { + $value: '/icon/face--dizzy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forum', - '$type': 'link', - '$value': '/icon/forum.svg', + id: 'icon.face--dizzy', + $type: 'link', + $value: '/icon/face--dizzy.svg', }, - 'icon.forward--10': { - '_original': { - '$value': '/icon/forward--10.svg', + 'icon.face--dizzy--filled': { + _original: { + $value: '/icon/face--dizzy--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forward--10', - '$type': 'link', - '$value': '/icon/forward--10.svg', + id: 'icon.face--dizzy--filled', + $type: 'link', + $value: '/icon/face--dizzy--filled.svg', }, - 'icon.forward--30': { - '_original': { - '$value': '/icon/forward--30.svg', + 'icon.face--mask': { + _original: { + $value: '/icon/face--mask.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forward--30', - '$type': 'link', - '$value': '/icon/forward--30.svg', + id: 'icon.face--mask', + $type: 'link', + $value: '/icon/face--mask.svg', }, - 'icon.forward--5': { - '_original': { - '$value': '/icon/forward--5.svg', + 'icon.face--neutral': { + _original: { + $value: '/icon/face--neutral.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.forward--5', - '$type': 'link', - '$value': '/icon/forward--5.svg', + id: 'icon.face--neutral', + $type: 'link', + $value: '/icon/face--neutral.svg', }, - 'icon.fragile': { - '_original': { - '$value': '/icon/fragile.svg', + 'icon.face--neutral--filled': { + _original: { + $value: '/icon/face--neutral--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fragile', - '$type': 'link', - '$value': '/icon/fragile.svg', + id: 'icon.face--neutral--filled', + $type: 'link', + $value: '/icon/face--neutral--filled.svg', }, - 'icon.friendship': { - '_original': { - '$value': '/icon/friendship.svg', + 'icon.face--pending': { + _original: { + $value: '/icon/face--pending.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.friendship', - '$type': 'link', - '$value': '/icon/friendship.svg', + id: 'icon.face--pending', + $type: 'link', + $value: '/icon/face--pending.svg', }, - 'icon.fruit-bowl': { - '_original': { - '$value': '/icon/fruit-bowl.svg', + 'icon.face--pending--filled': { + _original: { + $value: '/icon/face--pending--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fruit-bowl', - '$type': 'link', - '$value': '/icon/fruit-bowl.svg', + id: 'icon.face--pending--filled', + $type: 'link', + $value: '/icon/face--pending--filled.svg', }, - 'icon.function': { - '_original': { - '$value': '/icon/function.svg', + 'icon.face--satisfied': { + _original: { + $value: '/icon/face--satisfied.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.function', - '$type': 'link', - '$value': '/icon/function.svg', + id: 'icon.face--satisfied', + $type: 'link', + $value: '/icon/face--satisfied.svg', }, - 'icon.function-math': { - '_original': { - '$value': '/icon/function-math.svg', + 'icon.face--satisfied--filled': { + _original: { + $value: '/icon/face--satisfied--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.function-math', - '$type': 'link', - '$value': '/icon/function-math.svg', + id: 'icon.face--satisfied--filled', + $type: 'link', + $value: '/icon/face--satisfied--filled.svg', }, - 'icon.fusion-blender': { - '_original': { - '$value': '/icon/fusion-blender.svg', + 'icon.face--wink': { + _original: { + $value: '/icon/face--wink.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.fusion-blender', - '$type': 'link', - '$value': '/icon/fusion-blender.svg', + id: 'icon.face--wink', + $type: 'link', + $value: '/icon/face--wink.svg', }, - 'icon.game--console': { - '_original': { - '$value': '/icon/game--console.svg', + 'icon.face--wink--filled': { + _original: { + $value: '/icon/face--wink--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.game--console', - '$type': 'link', - '$value': '/icon/game--console.svg', + id: 'icon.face--wink--filled', + $type: 'link', + $value: '/icon/face--wink--filled.svg', }, - 'icon.game--wireless': { - '_original': { - '$value': '/icon/game--wireless.svg', + 'icon.factor': { + _original: { + $value: '/icon/factor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.game--wireless', - '$type': 'link', - '$value': '/icon/game--wireless.svg', + id: 'icon.factor', + $type: 'link', + $value: '/icon/factor.svg', }, - 'icon.gamification': { - '_original': { - '$value': '/icon/gamification.svg', + 'icon.fade': { + _original: { + $value: '/icon/fade.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gamification', - '$type': 'link', - '$value': '/icon/gamification.svg', + id: 'icon.fade', + $type: 'link', + $value: '/icon/fade.svg', }, - 'icon.gas-station': { - '_original': { - '$value': '/icon/gas-station.svg', + 'icon.favorite': { + _original: { + $value: '/icon/favorite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gas-station', - '$type': 'link', - '$value': '/icon/gas-station.svg', + id: 'icon.favorite', + $type: 'link', + $value: '/icon/favorite.svg', }, - 'icon.gas-station--filled': { - '_original': { - '$value': '/icon/gas-station--filled.svg', + 'icon.favorite--filled': { + _original: { + $value: '/icon/favorite--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gas-station--filled', - '$type': 'link', - '$value': '/icon/gas-station--filled.svg', + id: 'icon.favorite--filled', + $type: 'link', + $value: '/icon/favorite--filled.svg', }, - 'icon.gateway': { - '_original': { - '$value': '/icon/gateway.svg', + 'icon.favorite--half': { + _original: { + $value: '/icon/favorite--half.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway', - '$type': 'link', - '$value': '/icon/gateway.svg', + id: 'icon.favorite--half', + $type: 'link', + $value: '/icon/favorite--half.svg', }, - 'icon.gateway--api': { - '_original': { - '$value': '/icon/gateway--api.svg', + 'icon.fetch-upload': { + _original: { + $value: '/icon/fetch-upload.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway--api', - '$type': 'link', - '$value': '/icon/gateway--api.svg', + id: 'icon.fetch-upload', + $type: 'link', + $value: '/icon/fetch-upload.svg', }, - 'icon.gateway--mail': { - '_original': { - '$value': '/icon/gateway--mail.svg', + 'icon.fetch-upload--cloud': { + _original: { + $value: '/icon/fetch-upload--cloud.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway--mail', - '$type': 'link', - '$value': '/icon/gateway--mail.svg', + id: 'icon.fetch-upload--cloud', + $type: 'link', + $value: '/icon/fetch-upload--cloud.svg', }, - 'icon.gateway--public': { - '_original': { - '$value': '/icon/gateway--public.svg', + 'icon.file-storage': { + _original: { + $value: '/icon/file-storage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway--public', - '$type': 'link', - '$value': '/icon/gateway--public.svg', + id: 'icon.file-storage', + $type: 'link', + $value: '/icon/file-storage.svg', }, - 'icon.gateway--security': { - '_original': { - '$value': '/icon/gateway--security.svg', + 'icon.filter': { + _original: { + $value: '/icon/filter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway--security', - '$type': 'link', - '$value': '/icon/gateway--security.svg', + id: 'icon.filter', + $type: 'link', + $value: '/icon/filter.svg', }, - 'icon.gateway--user-access': { - '_original': { - '$value': '/icon/gateway--user-access.svg', + 'icon.filter--edit': { + _original: { + $value: '/icon/filter--edit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway--user-access', - '$type': 'link', - '$value': '/icon/gateway--user-access.svg', + id: 'icon.filter--edit', + $type: 'link', + $value: '/icon/filter--edit.svg', }, - 'icon.gateway--vpn': { - '_original': { - '$value': '/icon/gateway--vpn.svg', + 'icon.filter--remove': { + _original: { + $value: '/icon/filter--remove.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gateway--vpn', - '$type': 'link', - '$value': '/icon/gateway--vpn.svg', + id: 'icon.filter--remove', + $type: 'link', + $value: '/icon/filter--remove.svg', }, - 'icon.gender--female': { - '_original': { - '$value': '/icon/gender--female.svg', + 'icon.filter--reset': { + _original: { + $value: '/icon/filter--reset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gender--female', - '$type': 'link', - '$value': '/icon/gender--female.svg', + id: 'icon.filter--reset', + $type: 'link', + $value: '/icon/filter--reset.svg', }, - 'icon.gender--male': { - '_original': { - '$value': '/icon/gender--male.svg', + 'icon.finance': { + _original: { + $value: '/icon/finance.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gender--male', - '$type': 'link', - '$value': '/icon/gender--male.svg', + id: 'icon.finance', + $type: 'link', + $value: '/icon/finance.svg', }, - 'icon.generate-pdf': { - '_original': { - '$value': '/icon/generate-pdf.svg', + 'icon.fingerprint-recognition': { + _original: { + $value: '/icon/fingerprint-recognition.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.generate-pdf', - '$type': 'link', - '$value': '/icon/generate-pdf.svg', + id: 'icon.fingerprint-recognition', + $type: 'link', + $value: '/icon/fingerprint-recognition.svg', }, - 'icon.GIF': { - '_original': { - '$value': '/icon/GIF.svg', + 'icon.fire': { + _original: { + $value: '/icon/fire.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.GIF', - '$type': 'link', - '$value': '/icon/GIF.svg', + id: 'icon.fire', + $type: 'link', + $value: '/icon/fire.svg', }, - 'icon.gift': { - '_original': { - '$value': '/icon/gift.svg', + 'icon.firewall': { + _original: { + $value: '/icon/firewall.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gift', - '$type': 'link', - '$value': '/icon/gift.svg', + id: 'icon.firewall', + $type: 'link', + $value: '/icon/firewall.svg', }, - 'icon.globe': { - '_original': { - '$value': '/icon/globe.svg', + 'icon.firewall--classic': { + _original: { + $value: '/icon/firewall--classic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.globe', - '$type': 'link', - '$value': '/icon/globe.svg', + id: 'icon.firewall--classic', + $type: 'link', + $value: '/icon/firewall--classic.svg', }, - 'icon.glyph--caution': { - '_original': { - '$value': '/icon/glyph--caution.svg', + 'icon.fish': { + _original: { + $value: '/icon/fish.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--caution', - '$type': 'link', - '$value': '/icon/glyph--caution.svg', + id: 'icon.fish', + $type: 'link', + $value: '/icon/fish.svg', }, - 'icon.glyph--caution-inverted': { - '_original': { - '$value': '/icon/glyph--caution-inverted.svg', + 'icon.fish--multiple': { + _original: { + $value: '/icon/fish--multiple.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--caution-inverted', - '$type': 'link', - '$value': '/icon/glyph--caution-inverted.svg', + id: 'icon.fish--multiple', + $type: 'link', + $value: '/icon/fish--multiple.svg', }, - 'icon.glyph--circle-fill': { - '_original': { - '$value': '/icon/glyph--circle-fill.svg', + 'icon.fit-to-height': { + _original: { + $value: '/icon/fit-to-height.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--circle-fill', - '$type': 'link', - '$value': '/icon/glyph--circle-fill.svg', + id: 'icon.fit-to-height', + $type: 'link', + $value: '/icon/fit-to-height.svg', }, - 'icon.glyph--circle-stroke': { - '_original': { - '$value': '/icon/glyph--circle-stroke.svg', + 'icon.fit-to-screen': { + _original: { + $value: '/icon/fit-to-screen.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--circle-stroke', - '$type': 'link', - '$value': '/icon/glyph--circle-stroke.svg', + id: 'icon.fit-to-screen', + $type: 'link', + $value: '/icon/fit-to-screen.svg', }, - 'icon.glyph--critical': { - '_original': { - '$value': '/icon/glyph--critical.svg', + 'icon.fit-to-width': { + _original: { + $value: '/icon/fit-to-width.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--critical', - '$type': 'link', - '$value': '/icon/glyph--critical.svg', + id: 'icon.fit-to-width', + $type: 'link', + $value: '/icon/fit-to-width.svg', }, - 'icon.glyph--incomplete': { - '_original': { - '$value': '/icon/glyph--incomplete.svg', + 'icon.flag': { + _original: { + $value: '/icon/flag.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--incomplete', - '$type': 'link', - '$value': '/icon/glyph--incomplete.svg', + id: 'icon.flag', + $type: 'link', + $value: '/icon/flag.svg', }, - 'icon.glyph--square-fill': { - '_original': { - '$value': '/icon/glyph--square-fill.svg', + 'icon.flag--filled': { + _original: { + $value: '/icon/flag--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--square-fill', - '$type': 'link', - '$value': '/icon/glyph--square-fill.svg', + id: 'icon.flag--filled', + $type: 'link', + $value: '/icon/flag--filled.svg', }, - 'icon.glyph--undefined': { - '_original': { - '$value': '/icon/glyph--undefined.svg', + 'icon.flagging-taxi': { + _original: { + $value: '/icon/flagging-taxi.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.glyph--undefined', - '$type': 'link', - '$value': '/icon/glyph--undefined.svg', + id: 'icon.flagging-taxi', + $type: 'link', + $value: '/icon/flagging-taxi.svg', }, - 'icon.gradient': { - '_original': { - '$value': '/icon/gradient.svg', + 'icon.flash': { + _original: { + $value: '/icon/flash.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gradient', - '$type': 'link', - '$value': '/icon/gradient.svg', + id: 'icon.flash', + $type: 'link', + $value: '/icon/flash.svg', }, - 'icon.graphical-data-flow': { - '_original': { - '$value': '/icon/graphical-data-flow.svg', + 'icon.flash--filled': { + _original: { + $value: '/icon/flash--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.graphical-data-flow', - '$type': 'link', - '$value': '/icon/graphical-data-flow.svg', + id: 'icon.flash--filled', + $type: 'link', + $value: '/icon/flash--filled.svg', }, - 'icon.grid': { - '_original': { - '$value': '/icon/grid.svg', + 'icon.flash--off': { + _original: { + $value: '/icon/flash--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.grid', - '$type': 'link', - '$value': '/icon/grid.svg', + id: 'icon.flash--off', + $type: 'link', + $value: '/icon/flash--off.svg', }, - 'icon.group': { - '_original': { - '$value': '/icon/group.svg', + 'icon.flash--off--filled': { + _original: { + $value: '/icon/flash--off--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group', - '$type': 'link', - '$value': '/icon/group.svg', + id: 'icon.flash--off--filled', + $type: 'link', + $value: '/icon/flash--off--filled.svg', }, - 'icon.group--access': { - '_original': { - '$value': '/icon/group--access.svg', + 'icon.flight--international': { + _original: { + $value: '/icon/flight--international.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group--access', - '$type': 'link', - '$value': '/icon/group--access.svg', + id: 'icon.flight--international', + $type: 'link', + $value: '/icon/flight--international.svg', }, - 'icon.group--account': { - '_original': { - '$value': '/icon/group--account.svg', + 'icon.flight--roster': { + _original: { + $value: '/icon/flight--roster.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group--account', - '$type': 'link', - '$value': '/icon/group--account.svg', + id: 'icon.flight--roster', + $type: 'link', + $value: '/icon/flight--roster.svg', }, - 'icon.group--presentation': { - '_original': { - '$value': '/icon/group--presentation.svg', + 'icon.flight--schedule': { + _original: { + $value: '/icon/flight--schedule.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group--presentation', - '$type': 'link', - '$value': '/icon/group--presentation.svg', + id: 'icon.flight--schedule', + $type: 'link', + $value: '/icon/flight--schedule.svg', }, - 'icon.group--resource': { - '_original': { - '$value': '/icon/group--resource.svg', + 'icon.floating-ip': { + _original: { + $value: '/icon/floating-ip.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group--resource', - '$type': 'link', - '$value': '/icon/group--resource.svg', + id: 'icon.floating-ip', + $type: 'link', + $value: '/icon/floating-ip.svg', }, - 'icon.group--security': { - '_original': { - '$value': '/icon/group--security.svg', + 'icon.flood': { + _original: { + $value: '/icon/flood.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group--security', - '$type': 'link', - '$value': '/icon/group--security.svg', + id: 'icon.flood', + $type: 'link', + $value: '/icon/flood.svg', }, - 'icon.group-objects': { - '_original': { - '$value': '/icon/group-objects.svg', + 'icon.flood--warning': { + _original: { + $value: '/icon/flood--warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group-objects', - '$type': 'link', - '$value': '/icon/group-objects.svg', + id: 'icon.flood--warning', + $type: 'link', + $value: '/icon/flood--warning.svg', }, - 'icon.group-objects--new': { - '_original': { - '$value': '/icon/group-objects--new.svg', + 'icon.flow': { + _original: { + $value: '/icon/flow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group-objects--new', - '$type': 'link', - '$value': '/icon/group-objects--new.svg', + id: 'icon.flow', + $type: 'link', + $value: '/icon/flow.svg', }, - 'icon.group-objects--save': { - '_original': { - '$value': '/icon/group-objects--save.svg', + 'icon.flow--connection': { + _original: { + $value: '/icon/flow--connection.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.group-objects--save', - '$type': 'link', - '$value': '/icon/group-objects--save.svg', + id: 'icon.flow--connection', + $type: 'link', + $value: '/icon/flow--connection.svg', }, - 'icon.growth': { - '_original': { - '$value': '/icon/growth.svg', + 'icon.flow--data': { + _original: { + $value: '/icon/flow--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.growth', - '$type': 'link', - '$value': '/icon/growth.svg', + id: 'icon.flow--data', + $type: 'link', + $value: '/icon/flow--data.svg', }, - 'icon.gui': { - '_original': { - '$value': '/icon/gui.svg', + 'icon.flow--modeler': { + _original: { + $value: '/icon/flow--modeler.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gui', - '$type': 'link', - '$value': '/icon/gui.svg', + id: 'icon.flow--modeler', + $type: 'link', + $value: '/icon/flow--modeler.svg', }, - 'icon.gui--management': { - '_original': { - '$value': '/icon/gui--management.svg', + 'icon.flow--modeler--reference': { + _original: { + $value: '/icon/flow--modeler--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.gui--management', - '$type': 'link', - '$value': '/icon/gui--management.svg', + id: 'icon.flow--modeler--reference', + $type: 'link', + $value: '/icon/flow--modeler--reference.svg', }, - 'icon.H': { - '_original': { - '$value': '/icon/H.svg', + 'icon.flow--stream': { + _original: { + $value: '/icon/flow--stream.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.H', - '$type': 'link', - '$value': '/icon/H.svg', + id: 'icon.flow--stream', + $type: 'link', + $value: '/icon/flow--stream.svg', }, - 'icon.hail': { - '_original': { - '$value': '/icon/hail.svg', + 'icon.flow--stream--reference': { + _original: { + $value: '/icon/flow--stream--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hail', - '$type': 'link', - '$value': '/icon/hail.svg', + id: 'icon.flow--stream--reference', + $type: 'link', + $value: '/icon/flow--stream--reference.svg', }, - 'icon.hanging-protocol': { - '_original': { - '$value': '/icon/hanging-protocol.svg', + 'icon.flow-logs-vpc': { + _original: { + $value: '/icon/flow-logs-vpc.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hanging-protocol', - '$type': 'link', - '$value': '/icon/hanging-protocol.svg', + id: 'icon.flow-logs-vpc', + $type: 'link', + $value: '/icon/flow-logs-vpc.svg', }, - 'icon.harbor': { - '_original': { - '$value': '/icon/harbor.svg', + 'icon.fog': { + _original: { + $value: '/icon/fog.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.harbor', - '$type': 'link', - '$value': '/icon/harbor.svg', + id: 'icon.fog', + $type: 'link', + $value: '/icon/fog.svg', }, - 'icon.hardware-security-module': { - '_original': { - '$value': '/icon/hardware-security-module.svg', + 'icon.folder': { + _original: { + $value: '/icon/folder.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hardware-security-module', - '$type': 'link', - '$value': '/icon/hardware-security-module.svg', + id: 'icon.folder', + $type: 'link', + $value: '/icon/folder.svg', }, - 'icon.hashtag': { - '_original': { - '$value': '/icon/hashtag.svg', + 'icon.folder--add': { + _original: { + $value: '/icon/folder--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hashtag', - '$type': 'link', - '$value': '/icon/hashtag.svg', + id: 'icon.folder--add', + $type: 'link', + $value: '/icon/folder--add.svg', }, - 'icon.haze': { - '_original': { - '$value': '/icon/haze.svg', + 'icon.folder--details': { + _original: { + $value: '/icon/folder--details.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.haze', - '$type': 'link', - '$value': '/icon/haze.svg', + id: 'icon.folder--details', + $type: 'link', + $value: '/icon/folder--details.svg', }, - 'icon.haze--night': { - '_original': { - '$value': '/icon/haze--night.svg', + 'icon.folder--details--reference': { + _original: { + $value: '/icon/folder--details--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.haze--night', - '$type': 'link', - '$value': '/icon/haze--night.svg', + id: 'icon.folder--details--reference', + $type: 'link', + $value: '/icon/folder--details--reference.svg', }, - 'icon.HD': { - '_original': { - '$value': '/icon/HD.svg', + 'icon.folder--move-to': { + _original: { + $value: '/icon/folder--move-to.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HD', - '$type': 'link', - '$value': '/icon/HD.svg', + id: 'icon.folder--move-to', + $type: 'link', + $value: '/icon/folder--move-to.svg', }, - 'icon.HD--filled': { - '_original': { - '$value': '/icon/HD--filled.svg', + 'icon.folder--off': { + _original: { + $value: '/icon/folder--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HD--filled', - '$type': 'link', - '$value': '/icon/HD--filled.svg', + id: 'icon.folder--off', + $type: 'link', + $value: '/icon/folder--off.svg', }, - 'icon.HDR': { - '_original': { - '$value': '/icon/HDR.svg', + 'icon.folder--open': { + _original: { + $value: '/icon/folder--open.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HDR', - '$type': 'link', - '$value': '/icon/HDR.svg', + id: 'icon.folder--open', + $type: 'link', + $value: '/icon/folder--open.svg', }, - 'icon.headphones': { - '_original': { - '$value': '/icon/headphones.svg', + 'icon.folder--parent': { + _original: { + $value: '/icon/folder--parent.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.headphones', - '$type': 'link', - '$value': '/icon/headphones.svg', + id: 'icon.folder--parent', + $type: 'link', + $value: '/icon/folder--parent.svg', }, - 'icon.headset': { - '_original': { - '$value': '/icon/headset.svg', + 'icon.folder--shared': { + _original: { + $value: '/icon/folder--shared.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.headset', - '$type': 'link', - '$value': '/icon/headset.svg', + id: 'icon.folder--shared', + $type: 'link', + $value: '/icon/folder--shared.svg', }, - 'icon.health-cross': { - '_original': { - '$value': '/icon/health-cross.svg', + 'icon.folders': { + _original: { + $value: '/icon/folders.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.health-cross', - '$type': 'link', - '$value': '/icon/health-cross.svg', + id: 'icon.folders', + $type: 'link', + $value: '/icon/folders.svg', }, - 'icon.hearing': { - '_original': { - '$value': '/icon/hearing.svg', + 'icon.forecast--hail': { + _original: { + $value: '/icon/forecast--hail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hearing', - '$type': 'link', - '$value': '/icon/hearing.svg', + id: 'icon.forecast--hail', + $type: 'link', + $value: '/icon/forecast--hail.svg', }, - 'icon.heat-map': { - '_original': { - '$value': '/icon/heat-map.svg', + 'icon.forecast--hail-30': { + _original: { + $value: '/icon/forecast--hail-30.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.heat-map', - '$type': 'link', - '$value': '/icon/heat-map.svg', + id: 'icon.forecast--hail-30', + $type: 'link', + $value: '/icon/forecast--hail-30.svg', }, - 'icon.heat-map--02': { - '_original': { - '$value': '/icon/heat-map--02.svg', + 'icon.forecast--lightning': { + _original: { + $value: '/icon/forecast--lightning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.heat-map--02', - '$type': 'link', - '$value': '/icon/heat-map--02.svg', + id: 'icon.forecast--lightning', + $type: 'link', + $value: '/icon/forecast--lightning.svg', }, - 'icon.heat-map--03': { - '_original': { - '$value': '/icon/heat-map--03.svg', + 'icon.forecast--lightning-30': { + _original: { + $value: '/icon/forecast--lightning-30.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.heat-map--03', - '$type': 'link', - '$value': '/icon/heat-map--03.svg', + id: 'icon.forecast--lightning-30', + $type: 'link', + $value: '/icon/forecast--lightning-30.svg', }, - 'icon.heat-map--stocks': { - '_original': { - '$value': '/icon/heat-map--stocks.svg', + 'icon.fork': { + _original: { + $value: '/icon/fork.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.heat-map--stocks', - '$type': 'link', - '$value': '/icon/heat-map--stocks.svg', + id: 'icon.fork', + $type: 'link', + $value: '/icon/fork.svg', }, - 'icon.helicopter': { - '_original': { - '$value': '/icon/helicopter.svg', + 'icon.forum': { + _original: { + $value: '/icon/forum.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.helicopter', - '$type': 'link', - '$value': '/icon/helicopter.svg', + id: 'icon.forum', + $type: 'link', + $value: '/icon/forum.svg', }, - 'icon.help': { - '_original': { - '$value': '/icon/help.svg', + 'icon.forward--5': { + _original: { + $value: '/icon/forward--5.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.help', - '$type': 'link', - '$value': '/icon/help.svg', + id: 'icon.forward--5', + $type: 'link', + $value: '/icon/forward--5.svg', }, - 'icon.help--filled': { - '_original': { - '$value': '/icon/help--filled.svg', + 'icon.forward--10': { + _original: { + $value: '/icon/forward--10.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.help--filled', - '$type': 'link', - '$value': '/icon/help--filled.svg', + id: 'icon.forward--10', + $type: 'link', + $value: '/icon/forward--10.svg', }, - 'icon.help-desk': { - '_original': { - '$value': '/icon/help-desk.svg', + 'icon.forward--30': { + _original: { + $value: '/icon/forward--30.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.help-desk', - '$type': 'link', - '$value': '/icon/help-desk.svg', + id: 'icon.forward--30', + $type: 'link', + $value: '/icon/forward--30.svg', }, - 'icon.hinton-plot': { - '_original': { - '$value': '/icon/hinton-plot.svg', + 'icon.fragile': { + _original: { + $value: '/icon/fragile.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hinton-plot', - '$type': 'link', - '$value': '/icon/hinton-plot.svg', + id: 'icon.fragile', + $type: 'link', + $value: '/icon/fragile.svg', }, - 'icon.HL7-attributes': { - '_original': { - '$value': '/icon/HL7-attributes.svg', + 'icon.friendship': { + _original: { + $value: '/icon/friendship.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HL7-attributes', - '$type': 'link', - '$value': '/icon/HL7-attributes.svg', + id: 'icon.friendship', + $type: 'link', + $value: '/icon/friendship.svg', }, - 'icon.hole-filling': { - '_original': { - '$value': '/icon/hole-filling.svg', + 'icon.fruit-bowl': { + _original: { + $value: '/icon/fruit-bowl.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hole-filling', - '$type': 'link', - '$value': '/icon/hole-filling.svg', + id: 'icon.fruit-bowl', + $type: 'link', + $value: '/icon/fruit-bowl.svg', }, - 'icon.hole-filling--cursor': { - '_original': { - '$value': '/icon/hole-filling--cursor.svg', + 'icon.function': { + _original: { + $value: '/icon/function.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hole-filling--cursor', - '$type': 'link', - '$value': '/icon/hole-filling--cursor.svg', + id: 'icon.function', + $type: 'link', + $value: '/icon/function.svg', }, - 'icon.home': { - '_original': { - '$value': '/icon/home.svg', + 'icon.function-math': { + _original: { + $value: '/icon/function-math.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.home', - '$type': 'link', - '$value': '/icon/home.svg', + id: 'icon.function-math', + $type: 'link', + $value: '/icon/function-math.svg', }, - 'icon.horizontal-view': { - '_original': { - '$value': '/icon/horizontal-view.svg', + 'icon.fusion-blender': { + _original: { + $value: '/icon/fusion-blender.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.horizontal-view', - '$type': 'link', - '$value': '/icon/horizontal-view.svg', + id: 'icon.fusion-blender', + $type: 'link', + $value: '/icon/fusion-blender.svg', }, - 'icon.hospital': { - '_original': { - '$value': '/icon/hospital.svg', + 'icon.game--console': { + _original: { + $value: '/icon/game--console.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hospital', - '$type': 'link', - '$value': '/icon/hospital.svg', + id: 'icon.game--console', + $type: 'link', + $value: '/icon/game--console.svg', }, - 'icon.hospital-bed': { - '_original': { - '$value': '/icon/hospital-bed.svg', + 'icon.game--wireless': { + _original: { + $value: '/icon/game--wireless.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hospital-bed', - '$type': 'link', - '$value': '/icon/hospital-bed.svg', + id: 'icon.game--wireless', + $type: 'link', + $value: '/icon/game--wireless.svg', }, - 'icon.hotel': { - '_original': { - '$value': '/icon/hotel.svg', + 'icon.gamification': { + _original: { + $value: '/icon/gamification.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hotel', - '$type': 'link', - '$value': '/icon/hotel.svg', + id: 'icon.gamification', + $type: 'link', + $value: '/icon/gamification.svg', }, - 'icon.hourglass': { - '_original': { - '$value': '/icon/hourglass.svg', + 'icon.gas-station': { + _original: { + $value: '/icon/gas-station.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hourglass', - '$type': 'link', - '$value': '/icon/hourglass.svg', + id: 'icon.gas-station', + $type: 'link', + $value: '/icon/gas-station.svg', }, - 'icon.HTML': { - '_original': { - '$value': '/icon/HTML.svg', + 'icon.gas-station--filled': { + _original: { + $value: '/icon/gas-station--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HTML', - '$type': 'link', - '$value': '/icon/HTML.svg', + id: 'icon.gas-station--filled', + $type: 'link', + $value: '/icon/gas-station--filled.svg', }, - 'icon.HTML--reference': { - '_original': { - '$value': '/icon/HTML--reference.svg', + 'icon.gateway': { + _original: { + $value: '/icon/gateway.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HTML--reference', - '$type': 'link', - '$value': '/icon/HTML--reference.svg', + id: 'icon.gateway', + $type: 'link', + $value: '/icon/gateway.svg', }, - 'icon.HTTP': { - '_original': { - '$value': '/icon/HTTP.svg', + 'icon.gateway--api': { + _original: { + $value: '/icon/gateway--api.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.HTTP', - '$type': 'link', - '$value': '/icon/HTTP.svg', + id: 'icon.gateway--api', + $type: 'link', + $value: '/icon/gateway--api.svg', }, - 'icon.humidity': { - '_original': { - '$value': '/icon/humidity.svg', + 'icon.gateway--mail': { + _original: { + $value: '/icon/gateway--mail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.humidity', - '$type': 'link', - '$value': '/icon/humidity.svg', + id: 'icon.gateway--mail', + $type: 'link', + $value: '/icon/gateway--mail.svg', }, - 'icon.humidity--alt': { - '_original': { - '$value': '/icon/humidity--alt.svg', + 'icon.gateway--public': { + _original: { + $value: '/icon/gateway--public.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.humidity--alt', - '$type': 'link', - '$value': '/icon/humidity--alt.svg', + id: 'icon.gateway--public', + $type: 'link', + $value: '/icon/gateway--public.svg', }, - 'icon.hurricane': { - '_original': { - '$value': '/icon/hurricane.svg', + 'icon.gateway--security': { + _original: { + $value: '/icon/gateway--security.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hurricane', - '$type': 'link', - '$value': '/icon/hurricane.svg', + id: 'icon.gateway--security', + $type: 'link', + $value: '/icon/gateway--security.svg', }, - 'icon.hybrid-networking': { - '_original': { - '$value': '/icon/hybrid-networking.svg', + 'icon.gateway--user-access': { + _original: { + $value: '/icon/gateway--user-access.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hybrid-networking', - '$type': 'link', - '$value': '/icon/hybrid-networking.svg', + id: 'icon.gateway--user-access', + $type: 'link', + $value: '/icon/gateway--user-access.svg', }, - 'icon.hybrid-networking--alt': { - '_original': { - '$value': '/icon/hybrid-networking--alt.svg', + 'icon.gateway--vpn': { + _original: { + $value: '/icon/gateway--vpn.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.hybrid-networking--alt', - '$type': 'link', - '$value': '/icon/hybrid-networking--alt.svg', + id: 'icon.gateway--vpn', + $type: 'link', + $value: '/icon/gateway--vpn.svg', }, - 'icon.ibm--data-replication': { - '_original': { - '$value': '/icon/ibm--data-replication.svg', + 'icon.gender--female': { + _original: { + $value: '/icon/gender--female.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm--data-replication', - '$type': 'link', - '$value': '/icon/ibm--data-replication.svg', + id: 'icon.gender--female', + $type: 'link', + $value: '/icon/gender--female.svg', }, - 'icon.ibm--match-360': { - '_original': { - '$value': '/icon/ibm--match-360.svg', + 'icon.gender--male': { + _original: { + $value: '/icon/gender--male.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm--match-360', - '$type': 'link', - '$value': '/icon/ibm--match-360.svg', + id: 'icon.gender--male', + $type: 'link', + $value: '/icon/gender--male.svg', }, - 'icon.ibm-cloud': { - '_original': { - '$value': '/icon/ibm-cloud.svg', + 'icon.generate-pdf': { + _original: { + $value: '/icon/generate-pdf.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud', - '$type': 'link', - '$value': '/icon/ibm-cloud.svg', + id: 'icon.generate-pdf', + $type: 'link', + $value: '/icon/generate-pdf.svg', }, - 'icon.ibm-cloud--dedicated-host': { - '_original': { - '$value': '/icon/ibm-cloud--dedicated-host.svg', + 'icon.GIF': { + _original: { + $value: '/icon/GIF.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud--dedicated-host', - '$type': 'link', - '$value': '/icon/ibm-cloud--dedicated-host.svg', + id: 'icon.GIF', + $type: 'link', + $value: '/icon/GIF.svg', }, - 'icon.ibm-cloud--internet-services': { - '_original': { - '$value': '/icon/ibm-cloud--internet-services.svg', + 'icon.gift': { + _original: { + $value: '/icon/gift.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud--internet-services', - '$type': 'link', - '$value': '/icon/ibm-cloud--internet-services.svg', + id: 'icon.gift', + $type: 'link', + $value: '/icon/gift.svg', }, - 'icon.ibm-cloud--subnets': { - '_original': { - '$value': '/icon/ibm-cloud--subnets.svg', + 'icon.globe': { + _original: { + $value: '/icon/globe.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud--subnets', - '$type': 'link', - '$value': '/icon/ibm-cloud--subnets.svg', + id: 'icon.globe', + $type: 'link', + $value: '/icon/globe.svg', }, - 'icon.ibm-cloud--transit-gateway': { - '_original': { - '$value': '/icon/ibm-cloud--transit-gateway.svg', + 'icon.glyph--caution': { + _original: { + $value: '/icon/glyph--caution.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud--transit-gateway', - '$type': 'link', - '$value': '/icon/ibm-cloud--transit-gateway.svg', + id: 'icon.glyph--caution', + $type: 'link', + $value: '/icon/glyph--caution.svg', }, - 'icon.ibm-cloud--vpc-endpoints': { - '_original': { - '$value': '/icon/ibm-cloud--vpc-endpoints.svg', + 'icon.glyph--caution-inverted': { + _original: { + $value: '/icon/glyph--caution-inverted.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud--vpc-endpoints', - '$type': 'link', - '$value': '/icon/ibm-cloud--vpc-endpoints.svg', + id: 'icon.glyph--caution-inverted', + $type: 'link', + $value: '/icon/glyph--caution-inverted.svg', }, - 'icon.ibm-cloud-pak--applications': { - '_original': { - '$value': '/icon/ibm-cloud-pak--applications.svg', + 'icon.glyph--circle-fill': { + _original: { + $value: '/icon/glyph--circle-fill.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--applications', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--applications.svg', + id: 'icon.glyph--circle-fill', + $type: 'link', + $value: '/icon/glyph--circle-fill.svg', }, - 'icon.ibm-cloud-pak--data': { - '_original': { - '$value': '/icon/ibm-cloud-pak--data.svg', + 'icon.glyph--circle-stroke': { + _original: { + $value: '/icon/glyph--circle-stroke.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--data', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--data.svg', + id: 'icon.glyph--circle-stroke', + $type: 'link', + $value: '/icon/glyph--circle-stroke.svg', }, - 'icon.ibm-cloud-pak--integration': { - '_original': { - '$value': '/icon/ibm-cloud-pak--integration.svg', + 'icon.glyph--critical': { + _original: { + $value: '/icon/glyph--critical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--integration', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--integration.svg', + id: 'icon.glyph--critical', + $type: 'link', + $value: '/icon/glyph--critical.svg', }, - 'icon.ibm-cloud-pak--multicloud-mgmt': { - '_original': { - '$value': '/icon/ibm-cloud-pak--multicloud-mgmt.svg', + 'icon.glyph--incomplete': { + _original: { + $value: '/icon/glyph--incomplete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--multicloud-mgmt', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--multicloud-mgmt.svg', + id: 'icon.glyph--incomplete', + $type: 'link', + $value: '/icon/glyph--incomplete.svg', }, - 'icon.ibm-cloud-pak--network-automation': { - '_original': { - '$value': '/icon/ibm-cloud-pak--network-automation.svg', + 'icon.glyph--square-fill': { + _original: { + $value: '/icon/glyph--square-fill.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--network-automation', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--network-automation.svg', + id: 'icon.glyph--square-fill', + $type: 'link', + $value: '/icon/glyph--square-fill.svg', }, - 'icon.ibm-cloud-pak--security': { - '_original': { - '$value': '/icon/ibm-cloud-pak--security.svg', + 'icon.glyph--undefined': { + _original: { + $value: '/icon/glyph--undefined.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--security', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--security.svg', + id: 'icon.glyph--undefined', + $type: 'link', + $value: '/icon/glyph--undefined.svg', }, - 'icon.ibm-cloud-pak--system': { - '_original': { - '$value': '/icon/ibm-cloud-pak--system.svg', + 'icon.gradient': { + _original: { + $value: '/icon/gradient.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--system', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--system.svg', + id: 'icon.gradient', + $type: 'link', + $value: '/icon/gradient.svg', }, - 'icon.ibm-cloud-pak--watson-aiops': { - '_original': { - '$value': '/icon/ibm-cloud-pak--watson-aiops.svg', + 'icon.graphical-data-flow': { + _original: { + $value: '/icon/graphical-data-flow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-cloud-pak--watson-aiops', - '$type': 'link', - '$value': '/icon/ibm-cloud-pak--watson-aiops.svg', + id: 'icon.graphical-data-flow', + $type: 'link', + $value: '/icon/graphical-data-flow.svg', }, - 'icon.ibm-security': { - '_original': { - '$value': '/icon/ibm-security.svg', + 'icon.grid': { + _original: { + $value: '/icon/grid.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-security', - '$type': 'link', - '$value': '/icon/ibm-security.svg', + id: 'icon.grid', + $type: 'link', + $value: '/icon/grid.svg', }, - 'icon.ibm-security--services': { - '_original': { - '$value': '/icon/ibm-security--services.svg', + 'icon.group': { + _original: { + $value: '/icon/group.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ibm-security--services', - '$type': 'link', - '$value': '/icon/ibm-security--services.svg', + id: 'icon.group', + $type: 'link', + $value: '/icon/group.svg', }, - 'icon.iCA-2D': { - '_original': { - '$value': '/icon/iCA-2D.svg', + 'icon.group--access': { + _original: { + $value: '/icon/group--access.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.iCA-2D', - '$type': 'link', - '$value': '/icon/iCA-2D.svg', + id: 'icon.group--access', + $type: 'link', + $value: '/icon/group--access.svg', }, - 'icon.ice--accretion': { - '_original': { - '$value': '/icon/ice--accretion.svg', + 'icon.group--account': { + _original: { + $value: '/icon/group--account.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ice--accretion', - '$type': 'link', - '$value': '/icon/ice--accretion.svg', + id: 'icon.group--account', + $type: 'link', + $value: '/icon/group--account.svg', }, - 'icon.ice--vision': { - '_original': { - '$value': '/icon/ice--vision.svg', + 'icon.group--presentation': { + _original: { + $value: '/icon/group--presentation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ice--vision', - '$type': 'link', - '$value': '/icon/ice--vision.svg', + id: 'icon.group--presentation', + $type: 'link', + $value: '/icon/group--presentation.svg', }, - 'icon.iD': { - '_original': { - '$value': '/icon/iD.svg', + 'icon.group--resource': { + _original: { + $value: '/icon/group--resource.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.iD', - '$type': 'link', - '$value': '/icon/iD.svg', + id: 'icon.group--resource', + $type: 'link', + $value: '/icon/group--resource.svg', }, - 'icon.id-management': { - '_original': { - '$value': '/icon/id-management.svg', + 'icon.group--security': { + _original: { + $value: '/icon/group--security.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.id-management', - '$type': 'link', - '$value': '/icon/id-management.svg', + id: 'icon.group--security', + $type: 'link', + $value: '/icon/group--security.svg', }, - 'icon.idea': { - '_original': { - '$value': '/icon/idea.svg', + 'icon.group-objects': { + _original: { + $value: '/icon/group-objects.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.idea', - '$type': 'link', - '$value': '/icon/idea.svg', + id: 'icon.group-objects', + $type: 'link', + $value: '/icon/group-objects.svg', }, - 'icon.identification': { - '_original': { - '$value': '/icon/identification.svg', + 'icon.group-objects--new': { + _original: { + $value: '/icon/group-objects--new.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.identification', - '$type': 'link', - '$value': '/icon/identification.svg', + id: 'icon.group-objects--new', + $type: 'link', + $value: '/icon/group-objects--new.svg', }, - 'icon.image': { - '_original': { - '$value': '/icon/image.svg', + 'icon.group-objects--save': { + _original: { + $value: '/icon/group-objects--save.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image', - '$type': 'link', - '$value': '/icon/image.svg', + id: 'icon.group-objects--save', + $type: 'link', + $value: '/icon/group-objects--save.svg', }, - 'icon.image--copy': { - '_original': { - '$value': '/icon/image--copy.svg', + 'icon.growth': { + _original: { + $value: '/icon/growth.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image--copy', - '$type': 'link', - '$value': '/icon/image--copy.svg', + id: 'icon.growth', + $type: 'link', + $value: '/icon/growth.svg', }, - 'icon.image--medical': { - '_original': { - '$value': '/icon/image--medical.svg', + 'icon.gui': { + _original: { + $value: '/icon/gui.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image--medical', - '$type': 'link', - '$value': '/icon/image--medical.svg', + id: 'icon.gui', + $type: 'link', + $value: '/icon/gui.svg', }, - 'icon.image--reference': { - '_original': { - '$value': '/icon/image--reference.svg', + 'icon.gui--management': { + _original: { + $value: '/icon/gui--management.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image--reference', - '$type': 'link', - '$value': '/icon/image--reference.svg', + id: 'icon.gui--management', + $type: 'link', + $value: '/icon/gui--management.svg', }, - 'icon.image--search': { - '_original': { - '$value': '/icon/image--search.svg', + 'icon.H': { + _original: { + $value: '/icon/H.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image--search', - '$type': 'link', - '$value': '/icon/image--search.svg', + id: 'icon.H', + $type: 'link', + $value: '/icon/H.svg', }, - 'icon.image--search--alt': { - '_original': { - '$value': '/icon/image--search--alt.svg', + 'icon.hail': { + _original: { + $value: '/icon/hail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image--search--alt', - '$type': 'link', - '$value': '/icon/image--search--alt.svg', + id: 'icon.hail', + $type: 'link', + $value: '/icon/hail.svg', }, - 'icon.image-service': { - '_original': { - '$value': '/icon/image-service.svg', + 'icon.hanging-protocol': { + _original: { + $value: '/icon/hanging-protocol.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.image-service', - '$type': 'link', - '$value': '/icon/image-service.svg', + id: 'icon.hanging-protocol', + $type: 'link', + $value: '/icon/hanging-protocol.svg', }, - 'icon.import-export': { - '_original': { - '$value': '/icon/import-export.svg', + 'icon.harbor': { + _original: { + $value: '/icon/harbor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.import-export', - '$type': 'link', - '$value': '/icon/import-export.svg', + id: 'icon.harbor', + $type: 'link', + $value: '/icon/harbor.svg', }, - 'icon.improve-relevance': { - '_original': { - '$value': '/icon/improve-relevance.svg', + 'icon.hardware-security-module': { + _original: { + $value: '/icon/hardware-security-module.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.improve-relevance', - '$type': 'link', - '$value': '/icon/improve-relevance.svg', + id: 'icon.hardware-security-module', + $type: 'link', + $value: '/icon/hardware-security-module.svg', }, - 'icon.in-progress': { - '_original': { - '$value': '/icon/in-progress.svg', + 'icon.hashtag': { + _original: { + $value: '/icon/hashtag.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.in-progress', - '$type': 'link', - '$value': '/icon/in-progress.svg', + id: 'icon.hashtag', + $type: 'link', + $value: '/icon/hashtag.svg', }, - 'icon.in-progress--error': { - '_original': { - '$value': '/icon/in-progress--error.svg', + 'icon.haze': { + _original: { + $value: '/icon/haze.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.in-progress--error', - '$type': 'link', - '$value': '/icon/in-progress--error.svg', + id: 'icon.haze', + $type: 'link', + $value: '/icon/haze.svg', }, - 'icon.in-progress--warning': { - '_original': { - '$value': '/icon/in-progress--warning.svg', + 'icon.haze--night': { + _original: { + $value: '/icon/haze--night.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.in-progress--warning', - '$type': 'link', - '$value': '/icon/in-progress--warning.svg', + id: 'icon.haze--night', + $type: 'link', + $value: '/icon/haze--night.svg', }, - 'icon.incomplete': { - '_original': { - '$value': '/icon/incomplete.svg', + 'icon.HD': { + _original: { + $value: '/icon/HD.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.incomplete', - '$type': 'link', - '$value': '/icon/incomplete.svg', + id: 'icon.HD', + $type: 'link', + $value: '/icon/HD.svg', }, - 'icon.incomplete--cancel': { - '_original': { - '$value': '/icon/incomplete--cancel.svg', + 'icon.HD--filled': { + _original: { + $value: '/icon/HD--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.incomplete--cancel', - '$type': 'link', - '$value': '/icon/incomplete--cancel.svg', + id: 'icon.HD--filled', + $type: 'link', + $value: '/icon/HD--filled.svg', }, - 'icon.incomplete--error': { - '_original': { - '$value': '/icon/incomplete--error.svg', + 'icon.HDR': { + _original: { + $value: '/icon/HDR.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.incomplete--error', - '$type': 'link', - '$value': '/icon/incomplete--error.svg', + id: 'icon.HDR', + $type: 'link', + $value: '/icon/HDR.svg', }, - 'icon.incomplete--warning': { - '_original': { - '$value': '/icon/incomplete--warning.svg', + 'icon.headphones': { + _original: { + $value: '/icon/headphones.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.incomplete--warning', - '$type': 'link', - '$value': '/icon/incomplete--warning.svg', + id: 'icon.headphones', + $type: 'link', + $value: '/icon/headphones.svg', }, - 'icon.increase-level': { - '_original': { - '$value': '/icon/increase-level.svg', + 'icon.headset': { + _original: { + $value: '/icon/headset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.increase-level', - '$type': 'link', - '$value': '/icon/increase-level.svg', + id: 'icon.headset', + $type: 'link', + $value: '/icon/headset.svg', }, - 'icon.industry': { - '_original': { - '$value': '/icon/industry.svg', + 'icon.health-cross': { + _original: { + $value: '/icon/health-cross.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.industry', - '$type': 'link', - '$value': '/icon/industry.svg', + id: 'icon.health-cross', + $type: 'link', + $value: '/icon/health-cross.svg', }, - 'icon.information': { - '_original': { - '$value': '/icon/information.svg', + 'icon.hearing': { + _original: { + $value: '/icon/hearing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.information', - '$type': 'link', - '$value': '/icon/information.svg', + id: 'icon.hearing', + $type: 'link', + $value: '/icon/hearing.svg', }, - 'icon.information--disabled': { - '_original': { - '$value': '/icon/information--disabled.svg', + 'icon.heat-map': { + _original: { + $value: '/icon/heat-map.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.information--disabled', - '$type': 'link', - '$value': '/icon/information--disabled.svg', + id: 'icon.heat-map', + $type: 'link', + $value: '/icon/heat-map.svg', }, - 'icon.information--filled': { - '_original': { - '$value': '/icon/information--filled.svg', + 'icon.heat-map--02': { + _original: { + $value: '/icon/heat-map--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.information--filled', - '$type': 'link', - '$value': '/icon/information--filled.svg', + id: 'icon.heat-map--02', + $type: 'link', + $value: '/icon/heat-map--02.svg', }, - 'icon.information--square': { - '_original': { - '$value': '/icon/information--square.svg', + 'icon.heat-map--03': { + _original: { + $value: '/icon/heat-map--03.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.information--square', - '$type': 'link', - '$value': '/icon/information--square.svg', + id: 'icon.heat-map--03', + $type: 'link', + $value: '/icon/heat-map--03.svg', }, - 'icon.information--square--filled': { - '_original': { - '$value': '/icon/information--square--filled.svg', + 'icon.heat-map--stocks': { + _original: { + $value: '/icon/heat-map--stocks.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.information--square--filled', - '$type': 'link', - '$value': '/icon/information--square--filled.svg', + id: 'icon.heat-map--stocks', + $type: 'link', + $value: '/icon/heat-map--stocks.svg', }, - 'icon.infrastructure--classic': { - '_original': { - '$value': '/icon/infrastructure--classic.svg', + 'icon.helicopter': { + _original: { + $value: '/icon/helicopter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.infrastructure--classic', - '$type': 'link', - '$value': '/icon/infrastructure--classic.svg', + id: 'icon.helicopter', + $type: 'link', + $value: '/icon/helicopter.svg', }, - 'icon.insert': { - '_original': { - '$value': '/icon/insert.svg', + 'icon.help': { + _original: { + $value: '/icon/help.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.insert', - '$type': 'link', - '$value': '/icon/insert.svg', + id: 'icon.help', + $type: 'link', + $value: '/icon/help.svg', }, - 'icon.insert--page': { - '_original': { - '$value': '/icon/insert--page.svg', + 'icon.help--filled': { + _original: { + $value: '/icon/help--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.insert--page', - '$type': 'link', - '$value': '/icon/insert--page.svg', + id: 'icon.help--filled', + $type: 'link', + $value: '/icon/help--filled.svg', }, - 'icon.insert-syntax': { - '_original': { - '$value': '/icon/insert-syntax.svg', + 'icon.help-desk': { + _original: { + $value: '/icon/help-desk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.insert-syntax', - '$type': 'link', - '$value': '/icon/insert-syntax.svg', + id: 'icon.help-desk', + $type: 'link', + $value: '/icon/help-desk.svg', }, - 'icon.inspection': { - '_original': { - '$value': '/icon/inspection.svg', + 'icon.hinton-plot': { + _original: { + $value: '/icon/hinton-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.inspection', - '$type': 'link', - '$value': '/icon/inspection.svg', + id: 'icon.hinton-plot', + $type: 'link', + $value: '/icon/hinton-plot.svg', }, - 'icon.instance--bx': { - '_original': { - '$value': '/icon/instance--bx.svg', + 'icon.HL7-attributes': { + _original: { + $value: '/icon/HL7-attributes.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.instance--bx', - '$type': 'link', - '$value': '/icon/instance--bx.svg', + id: 'icon.HL7-attributes', + $type: 'link', + $value: '/icon/HL7-attributes.svg', }, - 'icon.instance--classic': { - '_original': { - '$value': '/icon/instance--classic.svg', + 'icon.hole-filling': { + _original: { + $value: '/icon/hole-filling.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.instance--classic', - '$type': 'link', - '$value': '/icon/instance--classic.svg', + id: 'icon.hole-filling', + $type: 'link', + $value: '/icon/hole-filling.svg', }, - 'icon.instance--cx': { - '_original': { - '$value': '/icon/instance--cx.svg', + 'icon.hole-filling--cursor': { + _original: { + $value: '/icon/hole-filling--cursor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.instance--cx', - '$type': 'link', - '$value': '/icon/instance--cx.svg', + id: 'icon.hole-filling--cursor', + $type: 'link', + $value: '/icon/hole-filling--cursor.svg', }, - 'icon.instance--mx': { - '_original': { - '$value': '/icon/instance--mx.svg', + 'icon.home': { + _original: { + $value: '/icon/home.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.instance--mx', - '$type': 'link', - '$value': '/icon/instance--mx.svg', + id: 'icon.home', + $type: 'link', + $value: '/icon/home.svg', }, - 'icon.instance--virtual': { - '_original': { - '$value': '/icon/instance--virtual.svg', + 'icon.horizontal-view': { + _original: { + $value: '/icon/horizontal-view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.instance--virtual', - '$type': 'link', - '$value': '/icon/instance--virtual.svg', + id: 'icon.horizontal-view', + $type: 'link', + $value: '/icon/horizontal-view.svg', }, - 'icon.integration': { - '_original': { - '$value': '/icon/integration.svg', + 'icon.hospital': { + _original: { + $value: '/icon/hospital.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.integration', - '$type': 'link', - '$value': '/icon/integration.svg', + id: 'icon.hospital', + $type: 'link', + $value: '/icon/hospital.svg', }, - 'icon.interactions': { - '_original': { - '$value': '/icon/interactions.svg', + 'icon.hospital-bed': { + _original: { + $value: '/icon/hospital-bed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.interactions', - '$type': 'link', - '$value': '/icon/interactions.svg', + id: 'icon.hospital-bed', + $type: 'link', + $value: '/icon/hospital-bed.svg', }, - 'icon.interactive-segmentation-cursor': { - '_original': { - '$value': '/icon/interactive-segmentation-cursor.svg', + 'icon.hotel': { + _original: { + $value: '/icon/hotel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.interactive-segmentation-cursor', - '$type': 'link', - '$value': '/icon/interactive-segmentation-cursor.svg', + id: 'icon.hotel', + $type: 'link', + $value: '/icon/hotel.svg', }, - 'icon.intersect': { - '_original': { - '$value': '/icon/intersect.svg', + 'icon.hourglass': { + _original: { + $value: '/icon/hourglass.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.intersect', - '$type': 'link', - '$value': '/icon/intersect.svg', + id: 'icon.hourglass', + $type: 'link', + $value: '/icon/hourglass.svg', }, - 'icon.intrusion-prevention': { - '_original': { - '$value': '/icon/intrusion-prevention.svg', + 'icon.HTML': { + _original: { + $value: '/icon/HTML.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.intrusion-prevention', - '$type': 'link', - '$value': '/icon/intrusion-prevention.svg', + id: 'icon.HTML', + $type: 'link', + $value: '/icon/HTML.svg', }, - 'icon.inventory-management': { - '_original': { - '$value': '/icon/inventory-management.svg', + 'icon.HTML--reference': { + _original: { + $value: '/icon/HTML--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.inventory-management', - '$type': 'link', - '$value': '/icon/inventory-management.svg', + id: 'icon.HTML--reference', + $type: 'link', + $value: '/icon/HTML--reference.svg', }, - 'icon.iot--connect': { - '_original': { - '$value': '/icon/iot--connect.svg', + 'icon.HTTP': { + _original: { + $value: '/icon/HTTP.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.iot--connect', - '$type': 'link', - '$value': '/icon/iot--connect.svg', + id: 'icon.HTTP', + $type: 'link', + $value: '/icon/HTTP.svg', }, - 'icon.iot--platform': { - '_original': { - '$value': '/icon/iot--platform.svg', + 'icon.humidity': { + _original: { + $value: '/icon/humidity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.iot--platform', - '$type': 'link', - '$value': '/icon/iot--platform.svg', + id: 'icon.humidity', + $type: 'link', + $value: '/icon/humidity.svg', }, - 'icon.ISO': { - '_original': { - '$value': '/icon/ISO.svg', + 'icon.humidity--alt': { + _original: { + $value: '/icon/humidity--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ISO', - '$type': 'link', - '$value': '/icon/ISO.svg', + id: 'icon.humidity--alt', + $type: 'link', + $value: '/icon/humidity--alt.svg', }, - 'icon.ISO--filled': { - '_original': { - '$value': '/icon/ISO--filled.svg', + 'icon.hurricane': { + _original: { + $value: '/icon/hurricane.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ISO--filled', - '$type': 'link', - '$value': '/icon/ISO--filled.svg', + id: 'icon.hurricane', + $type: 'link', + $value: '/icon/hurricane.svg', }, - 'icon.ISO--outline': { - '_original': { - '$value': '/icon/ISO--outline.svg', + 'icon.hybrid-networking': { + _original: { + $value: '/icon/hybrid-networking.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ISO--outline', - '$type': 'link', - '$value': '/icon/ISO--outline.svg', + id: 'icon.hybrid-networking', + $type: 'link', + $value: '/icon/hybrid-networking.svg', }, - 'icon.join--full': { - '_original': { - '$value': '/icon/join--full.svg', + 'icon.hybrid-networking--alt': { + _original: { + $value: '/icon/hybrid-networking--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.join--full', - '$type': 'link', - '$value': '/icon/join--full.svg', + id: 'icon.hybrid-networking--alt', + $type: 'link', + $value: '/icon/hybrid-networking--alt.svg', }, - 'icon.join--inner': { - '_original': { - '$value': '/icon/join--inner.svg', + 'icon.ibm--data-replication': { + _original: { + $value: '/icon/ibm--data-replication.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.join--inner', - '$type': 'link', - '$value': '/icon/join--inner.svg', + id: 'icon.ibm--data-replication', + $type: 'link', + $value: '/icon/ibm--data-replication.svg', }, - 'icon.join--left': { - '_original': { - '$value': '/icon/join--left.svg', + 'icon.ibm--match-360': { + _original: { + $value: '/icon/ibm--match-360.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.join--left', - '$type': 'link', - '$value': '/icon/join--left.svg', + id: 'icon.ibm--match-360', + $type: 'link', + $value: '/icon/ibm--match-360.svg', }, - 'icon.join--outer': { - '_original': { - '$value': '/icon/join--outer.svg', + 'icon.ibm-cloud': { + _original: { + $value: '/icon/ibm-cloud.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.join--outer', - '$type': 'link', - '$value': '/icon/join--outer.svg', + id: 'icon.ibm-cloud', + $type: 'link', + $value: '/icon/ibm-cloud.svg', }, - 'icon.join--right': { - '_original': { - '$value': '/icon/join--right.svg', + 'icon.ibm-cloud--dedicated-host': { + _original: { + $value: '/icon/ibm-cloud--dedicated-host.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.join--right', - '$type': 'link', - '$value': '/icon/join--right.svg', + id: 'icon.ibm-cloud--dedicated-host', + $type: 'link', + $value: '/icon/ibm-cloud--dedicated-host.svg', }, - 'icon.JPG': { - '_original': { - '$value': '/icon/JPG.svg', + 'icon.ibm-cloud--internet-services': { + _original: { + $value: '/icon/ibm-cloud--internet-services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.JPG', - '$type': 'link', - '$value': '/icon/JPG.svg', + id: 'icon.ibm-cloud--internet-services', + $type: 'link', + $value: '/icon/ibm-cloud--internet-services.svg', }, - 'icon.JSON': { - '_original': { - '$value': '/icon/JSON.svg', + 'icon.ibm-cloud--subnets': { + _original: { + $value: '/icon/ibm-cloud--subnets.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.JSON', - '$type': 'link', - '$value': '/icon/JSON.svg', + id: 'icon.ibm-cloud--subnets', + $type: 'link', + $value: '/icon/ibm-cloud--subnets.svg', }, - 'icon.JSON--reference': { - '_original': { - '$value': '/icon/JSON--reference.svg', + 'icon.ibm-cloud--transit-gateway': { + _original: { + $value: '/icon/ibm-cloud--transit-gateway.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.JSON--reference', - '$type': 'link', - '$value': '/icon/JSON--reference.svg', + id: 'icon.ibm-cloud--transit-gateway', + $type: 'link', + $value: '/icon/ibm-cloud--transit-gateway.svg', }, - 'icon.jump-link': { - '_original': { - '$value': '/icon/jump-link.svg', + 'icon.ibm-cloud--vpc-endpoints': { + _original: { + $value: '/icon/ibm-cloud--vpc-endpoints.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.jump-link', - '$type': 'link', - '$value': '/icon/jump-link.svg', + id: 'icon.ibm-cloud--vpc-endpoints', + $type: 'link', + $value: '/icon/ibm-cloud--vpc-endpoints.svg', }, - 'icon.keep-dry': { - '_original': { - '$value': '/icon/keep-dry.svg', + 'icon.ibm-cloud-pak--applications': { + _original: { + $value: '/icon/ibm-cloud-pak--applications.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.keep-dry', - '$type': 'link', - '$value': '/icon/keep-dry.svg', + id: 'icon.ibm-cloud-pak--applications', + $type: 'link', + $value: '/icon/ibm-cloud-pak--applications.svg', }, - 'icon.keyboard': { - '_original': { - '$value': '/icon/keyboard.svg', + 'icon.ibm-cloud-pak--data': { + _original: { + $value: '/icon/ibm-cloud-pak--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.keyboard', - '$type': 'link', - '$value': '/icon/keyboard.svg', + id: 'icon.ibm-cloud-pak--data', + $type: 'link', + $value: '/icon/ibm-cloud-pak--data.svg', }, - 'icon.kubernetes': { - '_original': { - '$value': '/icon/kubernetes.svg', + 'icon.ibm-cloud-pak--integration': { + _original: { + $value: '/icon/ibm-cloud-pak--integration.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.kubernetes', - '$type': 'link', - '$value': '/icon/kubernetes.svg', + id: 'icon.ibm-cloud-pak--integration', + $type: 'link', + $value: '/icon/ibm-cloud-pak--integration.svg', }, - 'icon.label': { - '_original': { - '$value': '/icon/label.svg', + 'icon.ibm-cloud-pak--multicloud-mgmt': { + _original: { + $value: '/icon/ibm-cloud-pak--multicloud-mgmt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.label', - '$type': 'link', - '$value': '/icon/label.svg', + id: 'icon.ibm-cloud-pak--multicloud-mgmt', + $type: 'link', + $value: '/icon/ibm-cloud-pak--multicloud-mgmt.svg', }, - 'icon.language': { - '_original': { - '$value': '/icon/language.svg', + 'icon.ibm-cloud-pak--network-automation': { + _original: { + $value: '/icon/ibm-cloud-pak--network-automation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.language', - '$type': 'link', - '$value': '/icon/language.svg', + id: 'icon.ibm-cloud-pak--network-automation', + $type: 'link', + $value: '/icon/ibm-cloud-pak--network-automation.svg', }, - 'icon.laptop': { - '_original': { - '$value': '/icon/laptop.svg', + 'icon.ibm-cloud-pak--security': { + _original: { + $value: '/icon/ibm-cloud-pak--security.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.laptop', - '$type': 'link', - '$value': '/icon/laptop.svg', + id: 'icon.ibm-cloud-pak--security', + $type: 'link', + $value: '/icon/ibm-cloud-pak--security.svg', }, - 'icon.lasso': { - '_original': { - '$value': '/icon/lasso.svg', + 'icon.ibm-cloud-pak--system': { + _original: { + $value: '/icon/ibm-cloud-pak--system.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.lasso', - '$type': 'link', - '$value': '/icon/lasso.svg', + id: 'icon.ibm-cloud-pak--system', + $type: 'link', + $value: '/icon/ibm-cloud-pak--system.svg', }, - 'icon.lasso--polygon': { - '_original': { - '$value': '/icon/lasso--polygon.svg', + 'icon.ibm-cloud-pak--watson-aiops': { + _original: { + $value: '/icon/ibm-cloud-pak--watson-aiops.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.lasso--polygon', - '$type': 'link', - '$value': '/icon/lasso--polygon.svg', + id: 'icon.ibm-cloud-pak--watson-aiops', + $type: 'link', + $value: '/icon/ibm-cloud-pak--watson-aiops.svg', }, - 'icon.launch': { - '_original': { - '$value': '/icon/launch.svg', + 'icon.ibm-security': { + _original: { + $value: '/icon/ibm-security.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.launch', - '$type': 'link', - '$value': '/icon/launch.svg', + id: 'icon.ibm-security', + $type: 'link', + $value: '/icon/ibm-security.svg', }, - 'icon.launch-study--1': { - '_original': { - '$value': '/icon/launch-study--1.svg', + 'icon.ibm-security--services': { + _original: { + $value: '/icon/ibm-security--services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.launch-study--1', - '$type': 'link', - '$value': '/icon/launch-study--1.svg', + id: 'icon.ibm-security--services', + $type: 'link', + $value: '/icon/ibm-security--services.svg', }, - 'icon.launch-study--2': { - '_original': { - '$value': '/icon/launch-study--2.svg', + 'icon.iCA-2D': { + _original: { + $value: '/icon/iCA-2D.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.launch-study--2', - '$type': 'link', - '$value': '/icon/launch-study--2.svg', + id: 'icon.iCA-2D', + $type: 'link', + $value: '/icon/iCA-2D.svg', }, - 'icon.launch-study--3': { - '_original': { - '$value': '/icon/launch-study--3.svg', + 'icon.ice--accretion': { + _original: { + $value: '/icon/ice--accretion.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.launch-study--3', - '$type': 'link', - '$value': '/icon/launch-study--3.svg', + id: 'icon.ice--accretion', + $type: 'link', + $value: '/icon/ice--accretion.svg', }, - 'icon.layers': { - '_original': { - '$value': '/icon/layers.svg', + 'icon.ice--vision': { + _original: { + $value: '/icon/ice--vision.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.layers', - '$type': 'link', - '$value': '/icon/layers.svg', + id: 'icon.ice--vision', + $type: 'link', + $value: '/icon/ice--vision.svg', }, - 'icon.legend': { - '_original': { - '$value': '/icon/legend.svg', + 'icon.iD': { + _original: { + $value: '/icon/iD.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.legend', - '$type': 'link', - '$value': '/icon/legend.svg', + id: 'icon.iD', + $type: 'link', + $value: '/icon/iD.svg', }, - 'icon.letter--Aa': { - '_original': { - '$value': '/icon/letter--Aa.svg', + 'icon.id-management': { + _original: { + $value: '/icon/id-management.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Aa', - '$type': 'link', - '$value': '/icon/letter--Aa.svg', + id: 'icon.id-management', + $type: 'link', + $value: '/icon/id-management.svg', }, - 'icon.letter--Aa--large': { - '_original': { - '$value': '/icon/letter--Aa--large.svg', + 'icon.idea': { + _original: { + $value: '/icon/idea.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Aa--large', - '$type': 'link', - '$value': '/icon/letter--Aa--large.svg', + id: 'icon.idea', + $type: 'link', + $value: '/icon/idea.svg', }, - 'icon.letter--Bb': { - '_original': { - '$value': '/icon/letter--Bb.svg', + 'icon.identification': { + _original: { + $value: '/icon/identification.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Bb', - '$type': 'link', - '$value': '/icon/letter--Bb.svg', + id: 'icon.identification', + $type: 'link', + $value: '/icon/identification.svg', }, - 'icon.letter--Cc': { - '_original': { - '$value': '/icon/letter--Cc.svg', + 'icon.image': { + _original: { + $value: '/icon/image.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Cc', - '$type': 'link', - '$value': '/icon/letter--Cc.svg', + id: 'icon.image', + $type: 'link', + $value: '/icon/image.svg', }, - 'icon.letter--Dd': { - '_original': { - '$value': '/icon/letter--Dd.svg', + 'icon.image--copy': { + _original: { + $value: '/icon/image--copy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Dd', - '$type': 'link', - '$value': '/icon/letter--Dd.svg', + id: 'icon.image--copy', + $type: 'link', + $value: '/icon/image--copy.svg', }, - 'icon.letter--Ee': { - '_original': { - '$value': '/icon/letter--Ee.svg', + 'icon.image--medical': { + _original: { + $value: '/icon/image--medical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Ee', - '$type': 'link', - '$value': '/icon/letter--Ee.svg', + id: 'icon.image--medical', + $type: 'link', + $value: '/icon/image--medical.svg', }, - 'icon.letter--Ff': { - '_original': { - '$value': '/icon/letter--Ff.svg', + 'icon.image--reference': { + _original: { + $value: '/icon/image--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Ff', - '$type': 'link', - '$value': '/icon/letter--Ff.svg', + id: 'icon.image--reference', + $type: 'link', + $value: '/icon/image--reference.svg', }, - 'icon.letter--Gg': { - '_original': { - '$value': '/icon/letter--Gg.svg', + 'icon.image--search': { + _original: { + $value: '/icon/image--search.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Gg', - '$type': 'link', - '$value': '/icon/letter--Gg.svg', + id: 'icon.image--search', + $type: 'link', + $value: '/icon/image--search.svg', }, - 'icon.letter--Hh': { - '_original': { - '$value': '/icon/letter--Hh.svg', + 'icon.image--search--alt': { + _original: { + $value: '/icon/image--search--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Hh', - '$type': 'link', - '$value': '/icon/letter--Hh.svg', + id: 'icon.image--search--alt', + $type: 'link', + $value: '/icon/image--search--alt.svg', }, - 'icon.letter--Ii': { - '_original': { - '$value': '/icon/letter--Ii.svg', + 'icon.image-service': { + _original: { + $value: '/icon/image-service.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Ii', - '$type': 'link', - '$value': '/icon/letter--Ii.svg', + id: 'icon.image-service', + $type: 'link', + $value: '/icon/image-service.svg', }, - 'icon.letter--Jj': { - '_original': { - '$value': '/icon/letter--Jj.svg', + 'icon.import-export': { + _original: { + $value: '/icon/import-export.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Jj', - '$type': 'link', - '$value': '/icon/letter--Jj.svg', + id: 'icon.import-export', + $type: 'link', + $value: '/icon/import-export.svg', }, - 'icon.letter--Kk': { - '_original': { - '$value': '/icon/letter--Kk.svg', + 'icon.improve-relevance': { + _original: { + $value: '/icon/improve-relevance.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Kk', - '$type': 'link', - '$value': '/icon/letter--Kk.svg', + id: 'icon.improve-relevance', + $type: 'link', + $value: '/icon/improve-relevance.svg', }, - 'icon.letter--Ll': { - '_original': { - '$value': '/icon/letter--Ll.svg', + 'icon.in-progress': { + _original: { + $value: '/icon/in-progress.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Ll', - '$type': 'link', - '$value': '/icon/letter--Ll.svg', + id: 'icon.in-progress', + $type: 'link', + $value: '/icon/in-progress.svg', }, - 'icon.letter--Mm': { - '_original': { - '$value': '/icon/letter--Mm.svg', + 'icon.in-progress--error': { + _original: { + $value: '/icon/in-progress--error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Mm', - '$type': 'link', - '$value': '/icon/letter--Mm.svg', + id: 'icon.in-progress--error', + $type: 'link', + $value: '/icon/in-progress--error.svg', }, - 'icon.letter--Nn': { - '_original': { - '$value': '/icon/letter--Nn.svg', + 'icon.in-progress--warning': { + _original: { + $value: '/icon/in-progress--warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Nn', - '$type': 'link', - '$value': '/icon/letter--Nn.svg', + id: 'icon.in-progress--warning', + $type: 'link', + $value: '/icon/in-progress--warning.svg', }, - 'icon.letter--Oo': { - '_original': { - '$value': '/icon/letter--Oo.svg', + 'icon.incomplete': { + _original: { + $value: '/icon/incomplete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Oo', - '$type': 'link', - '$value': '/icon/letter--Oo.svg', + id: 'icon.incomplete', + $type: 'link', + $value: '/icon/incomplete.svg', }, - 'icon.letter--Pp': { - '_original': { - '$value': '/icon/letter--Pp.svg', + 'icon.incomplete--cancel': { + _original: { + $value: '/icon/incomplete--cancel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Pp', - '$type': 'link', - '$value': '/icon/letter--Pp.svg', + id: 'icon.incomplete--cancel', + $type: 'link', + $value: '/icon/incomplete--cancel.svg', }, - 'icon.letter--Qq': { - '_original': { - '$value': '/icon/letter--Qq.svg', + 'icon.incomplete--error': { + _original: { + $value: '/icon/incomplete--error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Qq', - '$type': 'link', - '$value': '/icon/letter--Qq.svg', + id: 'icon.incomplete--error', + $type: 'link', + $value: '/icon/incomplete--error.svg', }, - 'icon.letter--Rr': { - '_original': { - '$value': '/icon/letter--Rr.svg', + 'icon.incomplete--warning': { + _original: { + $value: '/icon/incomplete--warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Rr', - '$type': 'link', - '$value': '/icon/letter--Rr.svg', + id: 'icon.incomplete--warning', + $type: 'link', + $value: '/icon/incomplete--warning.svg', }, - 'icon.letter--Ss': { - '_original': { - '$value': '/icon/letter--Ss.svg', + 'icon.increase-level': { + _original: { + $value: '/icon/increase-level.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Ss', - '$type': 'link', - '$value': '/icon/letter--Ss.svg', + id: 'icon.increase-level', + $type: 'link', + $value: '/icon/increase-level.svg', }, - 'icon.letter--Tt': { - '_original': { - '$value': '/icon/letter--Tt.svg', + 'icon.industry': { + _original: { + $value: '/icon/industry.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Tt', - '$type': 'link', - '$value': '/icon/letter--Tt.svg', + id: 'icon.industry', + $type: 'link', + $value: '/icon/industry.svg', }, - 'icon.letter--Uu': { - '_original': { - '$value': '/icon/letter--Uu.svg', + 'icon.information': { + _original: { + $value: '/icon/information.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Uu', - '$type': 'link', - '$value': '/icon/letter--Uu.svg', + id: 'icon.information', + $type: 'link', + $value: '/icon/information.svg', }, - 'icon.letter--Vv': { - '_original': { - '$value': '/icon/letter--Vv.svg', + 'icon.information--disabled': { + _original: { + $value: '/icon/information--disabled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Vv', - '$type': 'link', - '$value': '/icon/letter--Vv.svg', + id: 'icon.information--disabled', + $type: 'link', + $value: '/icon/information--disabled.svg', }, - 'icon.letter--Ww': { - '_original': { - '$value': '/icon/letter--Ww.svg', + 'icon.information--filled': { + _original: { + $value: '/icon/information--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Ww', - '$type': 'link', - '$value': '/icon/letter--Ww.svg', + id: 'icon.information--filled', + $type: 'link', + $value: '/icon/information--filled.svg', }, - 'icon.letter--Xx': { - '_original': { - '$value': '/icon/letter--Xx.svg', + 'icon.information--square': { + _original: { + $value: '/icon/information--square.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Xx', - '$type': 'link', - '$value': '/icon/letter--Xx.svg', + id: 'icon.information--square', + $type: 'link', + $value: '/icon/information--square.svg', }, - 'icon.letter--Yy': { - '_original': { - '$value': '/icon/letter--Yy.svg', + 'icon.information--square--filled': { + _original: { + $value: '/icon/information--square--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Yy', - '$type': 'link', - '$value': '/icon/letter--Yy.svg', + id: 'icon.information--square--filled', + $type: 'link', + $value: '/icon/information--square--filled.svg', }, - 'icon.letter--Zz': { - '_original': { - '$value': '/icon/letter--Zz.svg', + 'icon.infrastructure--classic': { + _original: { + $value: '/icon/infrastructure--classic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.letter--Zz', - '$type': 'link', - '$value': '/icon/letter--Zz.svg', + id: 'icon.infrastructure--classic', + $type: 'link', + $value: '/icon/infrastructure--classic.svg', }, - 'icon.license': { - '_original': { - '$value': '/icon/license.svg', + 'icon.insert': { + _original: { + $value: '/icon/insert.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license', - '$type': 'link', - '$value': '/icon/license.svg', + id: 'icon.insert', + $type: 'link', + $value: '/icon/insert.svg', }, - 'icon.license--draft': { - '_original': { - '$value': '/icon/license--draft.svg', + 'icon.insert--page': { + _original: { + $value: '/icon/insert--page.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license--draft', - '$type': 'link', - '$value': '/icon/license--draft.svg', + id: 'icon.insert--page', + $type: 'link', + $value: '/icon/insert--page.svg', }, - 'icon.license--global': { - '_original': { - '$value': '/icon/license--global.svg', + 'icon.insert-syntax': { + _original: { + $value: '/icon/insert-syntax.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license--global', - '$type': 'link', - '$value': '/icon/license--global.svg', + id: 'icon.insert-syntax', + $type: 'link', + $value: '/icon/insert-syntax.svg', }, - 'icon.license--maintenance': { - '_original': { - '$value': '/icon/license--maintenance.svg', + 'icon.inspection': { + _original: { + $value: '/icon/inspection.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license--maintenance', - '$type': 'link', - '$value': '/icon/license--maintenance.svg', + id: 'icon.inspection', + $type: 'link', + $value: '/icon/inspection.svg', }, - 'icon.license--maintenance-draft': { - '_original': { - '$value': '/icon/license--maintenance-draft.svg', + 'icon.instance--bx': { + _original: { + $value: '/icon/instance--bx.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license--maintenance-draft', - '$type': 'link', - '$value': '/icon/license--maintenance-draft.svg', + id: 'icon.instance--bx', + $type: 'link', + $value: '/icon/instance--bx.svg', }, - 'icon.license--third-party': { - '_original': { - '$value': '/icon/license--third-party.svg', + 'icon.instance--classic': { + _original: { + $value: '/icon/instance--classic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license--third-party', - '$type': 'link', - '$value': '/icon/license--third-party.svg', + id: 'icon.instance--classic', + $type: 'link', + $value: '/icon/instance--classic.svg', }, - 'icon.license--third-party-draft': { - '_original': { - '$value': '/icon/license--third-party-draft.svg', + 'icon.instance--cx': { + _original: { + $value: '/icon/instance--cx.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.license--third-party-draft', - '$type': 'link', - '$value': '/icon/license--third-party-draft.svg', + id: 'icon.instance--cx', + $type: 'link', + $value: '/icon/instance--cx.svg', }, - 'icon.lifesaver': { - '_original': { - '$value': '/icon/lifesaver.svg', + 'icon.instance--mx': { + _original: { + $value: '/icon/instance--mx.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.lifesaver', - '$type': 'link', - '$value': '/icon/lifesaver.svg', + id: 'icon.instance--mx', + $type: 'link', + $value: '/icon/instance--mx.svg', }, - 'icon.light': { - '_original': { - '$value': '/icon/light.svg', + 'icon.instance--virtual': { + _original: { + $value: '/icon/instance--virtual.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.light', - '$type': 'link', - '$value': '/icon/light.svg', + id: 'icon.instance--virtual', + $type: 'link', + $value: '/icon/instance--virtual.svg', }, - 'icon.light--filled': { - '_original': { - '$value': '/icon/light--filled.svg', + 'icon.integration': { + _original: { + $value: '/icon/integration.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.light--filled', - '$type': 'link', - '$value': '/icon/light--filled.svg', + id: 'icon.integration', + $type: 'link', + $value: '/icon/integration.svg', }, - 'icon.lightning': { - '_original': { - '$value': '/icon/lightning.svg', + 'icon.interactions': { + _original: { + $value: '/icon/interactions.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.lightning', - '$type': 'link', - '$value': '/icon/lightning.svg', + id: 'icon.interactions', + $type: 'link', + $value: '/icon/interactions.svg', }, - 'icon.link': { - '_original': { - '$value': '/icon/link.svg', + 'icon.interactive-segmentation-cursor': { + _original: { + $value: '/icon/interactive-segmentation-cursor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.link', - '$type': 'link', - '$value': '/icon/link.svg', + id: 'icon.interactive-segmentation-cursor', + $type: 'link', + $value: '/icon/interactive-segmentation-cursor.svg', }, - 'icon.linux': { - '_original': { - '$value': '/icon/linux.svg', + 'icon.intersect': { + _original: { + $value: '/icon/intersect.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.linux', - '$type': 'link', - '$value': '/icon/linux.svg', + id: 'icon.intersect', + $type: 'link', + $value: '/icon/intersect.svg', }, - 'icon.linux--alt': { - '_original': { - '$value': '/icon/linux--alt.svg', + 'icon.intrusion-prevention': { + _original: { + $value: '/icon/intrusion-prevention.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.linux--alt', - '$type': 'link', - '$value': '/icon/linux--alt.svg', + id: 'icon.intrusion-prevention', + $type: 'link', + $value: '/icon/intrusion-prevention.svg', }, - 'icon.list': { - '_original': { - '$value': '/icon/list.svg', + 'icon.inventory-management': { + _original: { + $value: '/icon/inventory-management.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.list', - '$type': 'link', - '$value': '/icon/list.svg', + id: 'icon.inventory-management', + $type: 'link', + $value: '/icon/inventory-management.svg', }, - 'icon.list--boxes': { - '_original': { - '$value': '/icon/list--boxes.svg', + 'icon.iot--connect': { + _original: { + $value: '/icon/iot--connect.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.list--boxes', - '$type': 'link', - '$value': '/icon/list--boxes.svg', + id: 'icon.iot--connect', + $type: 'link', + $value: '/icon/iot--connect.svg', }, - 'icon.list--bulleted': { - '_original': { - '$value': '/icon/list--bulleted.svg', + 'icon.iot--platform': { + _original: { + $value: '/icon/iot--platform.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.list--bulleted', - '$type': 'link', - '$value': '/icon/list--bulleted.svg', + id: 'icon.iot--platform', + $type: 'link', + $value: '/icon/iot--platform.svg', }, - 'icon.list--checked': { - '_original': { - '$value': '/icon/list--checked.svg', + 'icon.ISO': { + _original: { + $value: '/icon/ISO.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.list--checked', - '$type': 'link', - '$value': '/icon/list--checked.svg', + id: 'icon.ISO', + $type: 'link', + $value: '/icon/ISO.svg', }, - 'icon.list--dropdown': { - '_original': { - '$value': '/icon/list--dropdown.svg', + 'icon.ISO--filled': { + _original: { + $value: '/icon/ISO--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.list--dropdown', - '$type': 'link', - '$value': '/icon/list--dropdown.svg', + id: 'icon.ISO--filled', + $type: 'link', + $value: '/icon/ISO--filled.svg', }, - 'icon.list--numbered': { - '_original': { - '$value': '/icon/list--numbered.svg', + 'icon.ISO--outline': { + _original: { + $value: '/icon/ISO--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.list--numbered', - '$type': 'link', - '$value': '/icon/list--numbered.svg', + id: 'icon.ISO--outline', + $type: 'link', + $value: '/icon/ISO--outline.svg', }, - 'icon.load-balancer--application': { - '_original': { - '$value': '/icon/load-balancer--application.svg', + 'icon.join--full': { + _original: { + $value: '/icon/join--full.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--application', - '$type': 'link', - '$value': '/icon/load-balancer--application.svg', + id: 'icon.join--full', + $type: 'link', + $value: '/icon/join--full.svg', }, - 'icon.load-balancer--classic': { - '_original': { - '$value': '/icon/load-balancer--classic.svg', + 'icon.join--inner': { + _original: { + $value: '/icon/join--inner.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--classic', - '$type': 'link', - '$value': '/icon/load-balancer--classic.svg', + id: 'icon.join--inner', + $type: 'link', + $value: '/icon/join--inner.svg', }, - 'icon.load-balancer--global': { - '_original': { - '$value': '/icon/load-balancer--global.svg', + 'icon.join--left': { + _original: { + $value: '/icon/join--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--global', - '$type': 'link', - '$value': '/icon/load-balancer--global.svg', + id: 'icon.join--left', + $type: 'link', + $value: '/icon/join--left.svg', }, - 'icon.load-balancer--listener': { - '_original': { - '$value': '/icon/load-balancer--listener.svg', + 'icon.join--outer': { + _original: { + $value: '/icon/join--outer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--listener', - '$type': 'link', - '$value': '/icon/load-balancer--listener.svg', + id: 'icon.join--outer', + $type: 'link', + $value: '/icon/join--outer.svg', }, - 'icon.load-balancer--local': { - '_original': { - '$value': '/icon/load-balancer--local.svg', + 'icon.join--right': { + _original: { + $value: '/icon/join--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--local', - '$type': 'link', - '$value': '/icon/load-balancer--local.svg', + id: 'icon.join--right', + $type: 'link', + $value: '/icon/join--right.svg', }, - 'icon.load-balancer--network': { - '_original': { - '$value': '/icon/load-balancer--network.svg', + 'icon.JPG': { + _original: { + $value: '/icon/JPG.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--network', - '$type': 'link', - '$value': '/icon/load-balancer--network.svg', + id: 'icon.JPG', + $type: 'link', + $value: '/icon/JPG.svg', }, - 'icon.load-balancer--pool': { - '_original': { - '$value': '/icon/load-balancer--pool.svg', + 'icon.JSON': { + _original: { + $value: '/icon/JSON.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--pool', - '$type': 'link', - '$value': '/icon/load-balancer--pool.svg', + id: 'icon.JSON', + $type: 'link', + $value: '/icon/JSON.svg', }, - 'icon.load-balancer--vpc': { - '_original': { - '$value': '/icon/load-balancer--vpc.svg', + 'icon.JSON--reference': { + _original: { + $value: '/icon/JSON--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.load-balancer--vpc', - '$type': 'link', - '$value': '/icon/load-balancer--vpc.svg', + id: 'icon.JSON--reference', + $type: 'link', + $value: '/icon/JSON--reference.svg', }, - 'icon.location': { - '_original': { - '$value': '/icon/location.svg', + 'icon.jump-link': { + _original: { + $value: '/icon/jump-link.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location', - '$type': 'link', - '$value': '/icon/location.svg', + id: 'icon.jump-link', + $type: 'link', + $value: '/icon/jump-link.svg', }, - 'icon.location--company': { - '_original': { - '$value': '/icon/location--company.svg', + 'icon.keep-dry': { + _original: { + $value: '/icon/keep-dry.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--company', - '$type': 'link', - '$value': '/icon/location--company.svg', + id: 'icon.keep-dry', + $type: 'link', + $value: '/icon/keep-dry.svg', }, - 'icon.location--company--filled': { - '_original': { - '$value': '/icon/location--company--filled.svg', + 'icon.keyboard': { + _original: { + $value: '/icon/keyboard.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--company--filled', - '$type': 'link', - '$value': '/icon/location--company--filled.svg', + id: 'icon.keyboard', + $type: 'link', + $value: '/icon/keyboard.svg', }, - 'icon.location--current': { - '_original': { - '$value': '/icon/location--current.svg', + 'icon.kubernetes': { + _original: { + $value: '/icon/kubernetes.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--current', - '$type': 'link', - '$value': '/icon/location--current.svg', + id: 'icon.kubernetes', + $type: 'link', + $value: '/icon/kubernetes.svg', }, - 'icon.location--filled': { - '_original': { - '$value': '/icon/location--filled.svg', + 'icon.label': { + _original: { + $value: '/icon/label.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--filled', - '$type': 'link', - '$value': '/icon/location--filled.svg', + id: 'icon.label', + $type: 'link', + $value: '/icon/label.svg', }, - 'icon.location--hazard': { - '_original': { - '$value': '/icon/location--hazard.svg', + 'icon.language': { + _original: { + $value: '/icon/language.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--hazard', - '$type': 'link', - '$value': '/icon/location--hazard.svg', + id: 'icon.language', + $type: 'link', + $value: '/icon/language.svg', }, - 'icon.location--hazard--filled': { - '_original': { - '$value': '/icon/location--hazard--filled.svg', + 'icon.laptop': { + _original: { + $value: '/icon/laptop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--hazard--filled', - '$type': 'link', - '$value': '/icon/location--hazard--filled.svg', + id: 'icon.laptop', + $type: 'link', + $value: '/icon/laptop.svg', }, - 'icon.location--heart': { - '_original': { - '$value': '/icon/location--heart.svg', + 'icon.lasso': { + _original: { + $value: '/icon/lasso.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--heart', - '$type': 'link', - '$value': '/icon/location--heart.svg', + id: 'icon.lasso', + $type: 'link', + $value: '/icon/lasso.svg', }, - 'icon.location--heart--filled': { - '_original': { - '$value': '/icon/location--heart--filled.svg', + 'icon.lasso--polygon': { + _original: { + $value: '/icon/lasso--polygon.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--heart--filled', - '$type': 'link', - '$value': '/icon/location--heart--filled.svg', + id: 'icon.lasso--polygon', + $type: 'link', + $value: '/icon/lasso--polygon.svg', }, - 'icon.location--person': { - '_original': { - '$value': '/icon/location--person.svg', + 'icon.launch': { + _original: { + $value: '/icon/launch.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--person', - '$type': 'link', - '$value': '/icon/location--person.svg', + id: 'icon.launch', + $type: 'link', + $value: '/icon/launch.svg', }, - 'icon.location--person--filled': { - '_original': { - '$value': '/icon/location--person--filled.svg', + 'icon.launch-study--1': { + _original: { + $value: '/icon/launch-study--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--person--filled', - '$type': 'link', - '$value': '/icon/location--person--filled.svg', + id: 'icon.launch-study--1', + $type: 'link', + $value: '/icon/launch-study--1.svg', }, - 'icon.location--save': { - '_original': { - '$value': '/icon/location--save.svg', + 'icon.launch-study--2': { + _original: { + $value: '/icon/launch-study--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--save', - '$type': 'link', - '$value': '/icon/location--save.svg', + id: 'icon.launch-study--2', + $type: 'link', + $value: '/icon/launch-study--2.svg', }, - 'icon.location--star': { - '_original': { - '$value': '/icon/location--star.svg', + 'icon.launch-study--3': { + _original: { + $value: '/icon/launch-study--3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--star', - '$type': 'link', - '$value': '/icon/location--star.svg', + id: 'icon.launch-study--3', + $type: 'link', + $value: '/icon/launch-study--3.svg', }, - 'icon.location--star--filled': { - '_original': { - '$value': '/icon/location--star--filled.svg', + 'icon.layers': { + _original: { + $value: '/icon/layers.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.location--star--filled', - '$type': 'link', - '$value': '/icon/location--star--filled.svg', + id: 'icon.layers', + $type: 'link', + $value: '/icon/layers.svg', }, - 'icon.locked': { - '_original': { - '$value': '/icon/locked.svg', + 'icon.legend': { + _original: { + $value: '/icon/legend.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.locked', - '$type': 'link', - '$value': '/icon/locked.svg', + id: 'icon.legend', + $type: 'link', + $value: '/icon/legend.svg', }, - 'icon.logical-partition': { - '_original': { - '$value': '/icon/logical-partition.svg', + 'icon.letter--Aa': { + _original: { + $value: '/icon/letter--Aa.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logical-partition', - '$type': 'link', - '$value': '/icon/logical-partition.svg', + id: 'icon.letter--Aa', + $type: 'link', + $value: '/icon/letter--Aa.svg', }, - 'icon.login': { - '_original': { - '$value': '/icon/login.svg', + 'icon.letter--Aa--large': { + _original: { + $value: '/icon/letter--Aa--large.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.login', - '$type': 'link', - '$value': '/icon/login.svg', + id: 'icon.letter--Aa--large', + $type: 'link', + $value: '/icon/letter--Aa--large.svg', }, - 'icon.logo--delicious': { - '_original': { - '$value': '/icon/logo--delicious.svg', + 'icon.letter--Bb': { + _original: { + $value: '/icon/letter--Bb.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--delicious', - '$type': 'link', - '$value': '/icon/logo--delicious.svg', + id: 'icon.letter--Bb', + $type: 'link', + $value: '/icon/letter--Bb.svg', }, - 'icon.logo--digg': { - '_original': { - '$value': '/icon/logo--digg.svg', + 'icon.letter--Cc': { + _original: { + $value: '/icon/letter--Cc.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--digg', - '$type': 'link', - '$value': '/icon/logo--digg.svg', + id: 'icon.letter--Cc', + $type: 'link', + $value: '/icon/letter--Cc.svg', }, - 'icon.logo--discord': { - '_original': { - '$value': '/icon/logo--discord.svg', + 'icon.letter--Dd': { + _original: { + $value: '/icon/letter--Dd.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--discord', - '$type': 'link', - '$value': '/icon/logo--discord.svg', + id: 'icon.letter--Dd', + $type: 'link', + $value: '/icon/letter--Dd.svg', }, - 'icon.logo--facebook': { - '_original': { - '$value': '/icon/logo--facebook.svg', + 'icon.letter--Ee': { + _original: { + $value: '/icon/letter--Ee.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--facebook', - '$type': 'link', - '$value': '/icon/logo--facebook.svg', + id: 'icon.letter--Ee', + $type: 'link', + $value: '/icon/letter--Ee.svg', }, - 'icon.logo--flickr': { - '_original': { - '$value': '/icon/logo--flickr.svg', + 'icon.letter--Ff': { + _original: { + $value: '/icon/letter--Ff.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--flickr', - '$type': 'link', - '$value': '/icon/logo--flickr.svg', + id: 'icon.letter--Ff', + $type: 'link', + $value: '/icon/letter--Ff.svg', }, - 'icon.logo--github': { - '_original': { - '$value': '/icon/logo--github.svg', + 'icon.letter--Gg': { + _original: { + $value: '/icon/letter--Gg.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--github', - '$type': 'link', - '$value': '/icon/logo--github.svg', + id: 'icon.letter--Gg', + $type: 'link', + $value: '/icon/letter--Gg.svg', }, - 'icon.logo--glassdoor': { - '_original': { - '$value': '/icon/logo--glassdoor.svg', + 'icon.letter--Hh': { + _original: { + $value: '/icon/letter--Hh.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--glassdoor', - '$type': 'link', - '$value': '/icon/logo--glassdoor.svg', + id: 'icon.letter--Hh', + $type: 'link', + $value: '/icon/letter--Hh.svg', }, - 'icon.logo--google': { - '_original': { - '$value': '/icon/logo--google.svg', + 'icon.letter--Ii': { + _original: { + $value: '/icon/letter--Ii.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--google', - '$type': 'link', - '$value': '/icon/logo--google.svg', + id: 'icon.letter--Ii', + $type: 'link', + $value: '/icon/letter--Ii.svg', }, - 'icon.logo--instagram': { - '_original': { - '$value': '/icon/logo--instagram.svg', + 'icon.letter--Jj': { + _original: { + $value: '/icon/letter--Jj.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--instagram', - '$type': 'link', - '$value': '/icon/logo--instagram.svg', + id: 'icon.letter--Jj', + $type: 'link', + $value: '/icon/letter--Jj.svg', }, - 'icon.logo--jupyter': { - '_original': { - '$value': '/icon/logo--jupyter.svg', + 'icon.letter--Kk': { + _original: { + $value: '/icon/letter--Kk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--jupyter', - '$type': 'link', - '$value': '/icon/logo--jupyter.svg', + id: 'icon.letter--Kk', + $type: 'link', + $value: '/icon/letter--Kk.svg', }, - 'icon.logo--keybase': { - '_original': { - '$value': '/icon/logo--keybase.svg', + 'icon.letter--Ll': { + _original: { + $value: '/icon/letter--Ll.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--keybase', - '$type': 'link', - '$value': '/icon/logo--keybase.svg', + id: 'icon.letter--Ll', + $type: 'link', + $value: '/icon/letter--Ll.svg', }, - 'icon.logo--linkedin': { - '_original': { - '$value': '/icon/logo--linkedin.svg', + 'icon.letter--Mm': { + _original: { + $value: '/icon/letter--Mm.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--linkedin', - '$type': 'link', - '$value': '/icon/logo--linkedin.svg', + id: 'icon.letter--Mm', + $type: 'link', + $value: '/icon/letter--Mm.svg', }, - 'icon.logo--livestream': { - '_original': { - '$value': '/icon/logo--livestream.svg', + 'icon.letter--Nn': { + _original: { + $value: '/icon/letter--Nn.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--livestream', - '$type': 'link', - '$value': '/icon/logo--livestream.svg', + id: 'icon.letter--Nn', + $type: 'link', + $value: '/icon/letter--Nn.svg', }, - 'icon.logo--medium': { - '_original': { - '$value': '/icon/logo--medium.svg', + 'icon.letter--Oo': { + _original: { + $value: '/icon/letter--Oo.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--medium', - '$type': 'link', - '$value': '/icon/logo--medium.svg', + id: 'icon.letter--Oo', + $type: 'link', + $value: '/icon/letter--Oo.svg', }, - 'icon.logo--openshift': { - '_original': { - '$value': '/icon/logo--openshift.svg', + 'icon.letter--Pp': { + _original: { + $value: '/icon/letter--Pp.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--openshift', - '$type': 'link', - '$value': '/icon/logo--openshift.svg', + id: 'icon.letter--Pp', + $type: 'link', + $value: '/icon/letter--Pp.svg', }, - 'icon.logo--pinterest': { - '_original': { - '$value': '/icon/logo--pinterest.svg', + 'icon.letter--Qq': { + _original: { + $value: '/icon/letter--Qq.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--pinterest', - '$type': 'link', - '$value': '/icon/logo--pinterest.svg', + id: 'icon.letter--Qq', + $type: 'link', + $value: '/icon/letter--Qq.svg', }, - 'icon.logo--python': { - '_original': { - '$value': '/icon/logo--python.svg', + 'icon.letter--Rr': { + _original: { + $value: '/icon/letter--Rr.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--python', - '$type': 'link', - '$value': '/icon/logo--python.svg', + id: 'icon.letter--Rr', + $type: 'link', + $value: '/icon/letter--Rr.svg', }, - 'icon.logo--quora': { - '_original': { - '$value': '/icon/logo--quora.svg', + 'icon.letter--Ss': { + _original: { + $value: '/icon/letter--Ss.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--quora', - '$type': 'link', - '$value': '/icon/logo--quora.svg', + id: 'icon.letter--Ss', + $type: 'link', + $value: '/icon/letter--Ss.svg', }, - 'icon.logo--r-script': { - '_original': { - '$value': '/icon/logo--r-script.svg', + 'icon.letter--Tt': { + _original: { + $value: '/icon/letter--Tt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--r-script', - '$type': 'link', - '$value': '/icon/logo--r-script.svg', + id: 'icon.letter--Tt', + $type: 'link', + $value: '/icon/letter--Tt.svg', }, - 'icon.logo--skype': { - '_original': { - '$value': '/icon/logo--skype.svg', + 'icon.letter--Uu': { + _original: { + $value: '/icon/letter--Uu.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--skype', - '$type': 'link', - '$value': '/icon/logo--skype.svg', + id: 'icon.letter--Uu', + $type: 'link', + $value: '/icon/letter--Uu.svg', }, - 'icon.logo--slack': { - '_original': { - '$value': '/icon/logo--slack.svg', + 'icon.letter--Vv': { + _original: { + $value: '/icon/letter--Vv.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--slack', - '$type': 'link', - '$value': '/icon/logo--slack.svg', + id: 'icon.letter--Vv', + $type: 'link', + $value: '/icon/letter--Vv.svg', }, - 'icon.logo--snapchat': { - '_original': { - '$value': '/icon/logo--snapchat.svg', + 'icon.letter--Ww': { + _original: { + $value: '/icon/letter--Ww.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--snapchat', - '$type': 'link', - '$value': '/icon/logo--snapchat.svg', + id: 'icon.letter--Ww', + $type: 'link', + $value: '/icon/letter--Ww.svg', }, - 'icon.logo--stumbleupon': { - '_original': { - '$value': '/icon/logo--stumbleupon.svg', + 'icon.letter--Xx': { + _original: { + $value: '/icon/letter--Xx.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--stumbleupon', - '$type': 'link', - '$value': '/icon/logo--stumbleupon.svg', + id: 'icon.letter--Xx', + $type: 'link', + $value: '/icon/letter--Xx.svg', }, - 'icon.logo--tumblr': { - '_original': { - '$value': '/icon/logo--tumblr.svg', + 'icon.letter--Yy': { + _original: { + $value: '/icon/letter--Yy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--tumblr', - '$type': 'link', - '$value': '/icon/logo--tumblr.svg', + id: 'icon.letter--Yy', + $type: 'link', + $value: '/icon/letter--Yy.svg', }, - 'icon.logo--twitter': { - '_original': { - '$value': '/icon/logo--twitter.svg', + 'icon.letter--Zz': { + _original: { + $value: '/icon/letter--Zz.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--twitter', - '$type': 'link', - '$value': '/icon/logo--twitter.svg', + id: 'icon.letter--Zz', + $type: 'link', + $value: '/icon/letter--Zz.svg', }, - 'icon.logo--vmware': { - '_original': { - '$value': '/icon/logo--vmware.svg', + 'icon.license': { + _original: { + $value: '/icon/license.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--vmware', - '$type': 'link', - '$value': '/icon/logo--vmware.svg', + id: 'icon.license', + $type: 'link', + $value: '/icon/license.svg', }, - 'icon.logo--wechat': { - '_original': { - '$value': '/icon/logo--wechat.svg', + 'icon.license--draft': { + _original: { + $value: '/icon/license--draft.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--wechat', - '$type': 'link', - '$value': '/icon/logo--wechat.svg', + id: 'icon.license--draft', + $type: 'link', + $value: '/icon/license--draft.svg', }, - 'icon.logo--xing': { - '_original': { - '$value': '/icon/logo--xing.svg', + 'icon.license--global': { + _original: { + $value: '/icon/license--global.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--xing', - '$type': 'link', - '$value': '/icon/logo--xing.svg', + id: 'icon.license--global', + $type: 'link', + $value: '/icon/license--global.svg', }, - 'icon.logo--yelp': { - '_original': { - '$value': '/icon/logo--yelp.svg', + 'icon.license--maintenance': { + _original: { + $value: '/icon/license--maintenance.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--yelp', - '$type': 'link', - '$value': '/icon/logo--yelp.svg', + id: 'icon.license--maintenance', + $type: 'link', + $value: '/icon/license--maintenance.svg', }, - 'icon.logo--youtube': { - '_original': { - '$value': '/icon/logo--youtube.svg', + 'icon.license--maintenance-draft': { + _original: { + $value: '/icon/license--maintenance-draft.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logo--youtube', - '$type': 'link', - '$value': '/icon/logo--youtube.svg', + id: 'icon.license--maintenance-draft', + $type: 'link', + $value: '/icon/license--maintenance-draft.svg', }, - 'icon.logout': { - '_original': { - '$value': '/icon/logout.svg', + 'icon.license--third-party': { + _original: { + $value: '/icon/license--third-party.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.logout', - '$type': 'link', - '$value': '/icon/logout.svg', + id: 'icon.license--third-party', + $type: 'link', + $value: '/icon/license--third-party.svg', }, - 'icon.loop': { - '_original': { - '$value': '/icon/loop.svg', + 'icon.license--third-party-draft': { + _original: { + $value: '/icon/license--third-party-draft.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.loop', - '$type': 'link', - '$value': '/icon/loop.svg', + id: 'icon.license--third-party-draft', + $type: 'link', + $value: '/icon/license--third-party-draft.svg', }, - 'icon.low-severity': { - '_original': { - '$value': '/icon/low-severity.svg', + 'icon.lifesaver': { + _original: { + $value: '/icon/lifesaver.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.low-severity', - '$type': 'link', - '$value': '/icon/low-severity.svg', + id: 'icon.lifesaver', + $type: 'link', + $value: '/icon/lifesaver.svg', }, - 'icon.mac--command': { - '_original': { - '$value': '/icon/mac--command.svg', + 'icon.light': { + _original: { + $value: '/icon/light.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mac--command', - '$type': 'link', - '$value': '/icon/mac--command.svg', + id: 'icon.light', + $type: 'link', + $value: '/icon/light.svg', }, - 'icon.mac--option': { - '_original': { - '$value': '/icon/mac--option.svg', + 'icon.light--filled': { + _original: { + $value: '/icon/light--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mac--option', - '$type': 'link', - '$value': '/icon/mac--option.svg', + id: 'icon.light--filled', + $type: 'link', + $value: '/icon/light--filled.svg', }, - 'icon.mac--shift': { - '_original': { - '$value': '/icon/mac--shift.svg', + 'icon.lightning': { + _original: { + $value: '/icon/lightning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mac--shift', - '$type': 'link', - '$value': '/icon/mac--shift.svg', + id: 'icon.lightning', + $type: 'link', + $value: '/icon/lightning.svg', }, - 'icon.machine-learning': { - '_original': { - '$value': '/icon/machine-learning.svg', + 'icon.link': { + _original: { + $value: '/icon/link.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.machine-learning', - '$type': 'link', - '$value': '/icon/machine-learning.svg', + id: 'icon.link', + $type: 'link', + $value: '/icon/link.svg', }, - 'icon.machine-learning-model': { - '_original': { - '$value': '/icon/machine-learning-model.svg', + 'icon.linux': { + _original: { + $value: '/icon/linux.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.machine-learning-model', - '$type': 'link', - '$value': '/icon/machine-learning-model.svg', + id: 'icon.linux', + $type: 'link', + $value: '/icon/linux.svg', }, - 'icon.magic-wand': { - '_original': { - '$value': '/icon/magic-wand.svg', + 'icon.linux--alt': { + _original: { + $value: '/icon/linux--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.magic-wand', - '$type': 'link', - '$value': '/icon/magic-wand.svg', + id: 'icon.linux--alt', + $type: 'link', + $value: '/icon/linux--alt.svg', }, - 'icon.magic-wand--filled': { - '_original': { - '$value': '/icon/magic-wand--filled.svg', + 'icon.list': { + _original: { + $value: '/icon/list.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.magic-wand--filled', - '$type': 'link', - '$value': '/icon/magic-wand--filled.svg', + id: 'icon.list', + $type: 'link', + $value: '/icon/list.svg', }, - 'icon.magnify': { - '_original': { - '$value': '/icon/magnify.svg', + 'icon.list--boxes': { + _original: { + $value: '/icon/list--boxes.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.magnify', - '$type': 'link', - '$value': '/icon/magnify.svg', + id: 'icon.list--boxes', + $type: 'link', + $value: '/icon/list--boxes.svg', }, - 'icon.mail--all': { - '_original': { - '$value': '/icon/mail--all.svg', + 'icon.list--bulleted': { + _original: { + $value: '/icon/list--bulleted.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mail--all', - '$type': 'link', - '$value': '/icon/mail--all.svg', + id: 'icon.list--bulleted', + $type: 'link', + $value: '/icon/list--bulleted.svg', }, - 'icon.mail--reply': { - '_original': { - '$value': '/icon/mail--reply.svg', + 'icon.list--checked': { + _original: { + $value: '/icon/list--checked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mail--reply', - '$type': 'link', - '$value': '/icon/mail--reply.svg', + id: 'icon.list--checked', + $type: 'link', + $value: '/icon/list--checked.svg', }, - 'icon.mammogram': { - '_original': { - '$value': '/icon/mammogram.svg', + 'icon.list--dropdown': { + _original: { + $value: '/icon/list--dropdown.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mammogram', - '$type': 'link', - '$value': '/icon/mammogram.svg', + id: 'icon.list--dropdown', + $type: 'link', + $value: '/icon/list--dropdown.svg', }, - 'icon.mammogram--stacked': { - '_original': { - '$value': '/icon/mammogram--stacked.svg', + 'icon.list--numbered': { + _original: { + $value: '/icon/list--numbered.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mammogram--stacked', - '$type': 'link', - '$value': '/icon/mammogram--stacked.svg', + id: 'icon.list--numbered', + $type: 'link', + $value: '/icon/list--numbered.svg', }, - 'icon.manage-protection': { - '_original': { - '$value': '/icon/manage-protection.svg', + 'icon.load-balancer--application': { + _original: { + $value: '/icon/load-balancer--application.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.manage-protection', - '$type': 'link', - '$value': '/icon/manage-protection.svg', + id: 'icon.load-balancer--application', + $type: 'link', + $value: '/icon/load-balancer--application.svg', }, - 'icon.managed-solutions': { - '_original': { - '$value': '/icon/managed-solutions.svg', + 'icon.load-balancer--classic': { + _original: { + $value: '/icon/load-balancer--classic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.managed-solutions', - '$type': 'link', - '$value': '/icon/managed-solutions.svg', + id: 'icon.load-balancer--classic', + $type: 'link', + $value: '/icon/load-balancer--classic.svg', }, - 'icon.map': { - '_original': { - '$value': '/icon/map.svg', + 'icon.load-balancer--global': { + _original: { + $value: '/icon/load-balancer--global.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.map', - '$type': 'link', - '$value': '/icon/map.svg', + id: 'icon.load-balancer--global', + $type: 'link', + $value: '/icon/load-balancer--global.svg', }, - 'icon.map--center': { - '_original': { - '$value': '/icon/map--center.svg', + 'icon.load-balancer--listener': { + _original: { + $value: '/icon/load-balancer--listener.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.map--center', - '$type': 'link', - '$value': '/icon/map--center.svg', + id: 'icon.load-balancer--listener', + $type: 'link', + $value: '/icon/load-balancer--listener.svg', }, - 'icon.map--identify': { - '_original': { - '$value': '/icon/map--identify.svg', + 'icon.load-balancer--local': { + _original: { + $value: '/icon/load-balancer--local.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.map--identify', - '$type': 'link', - '$value': '/icon/map--identify.svg', + id: 'icon.load-balancer--local', + $type: 'link', + $value: '/icon/load-balancer--local.svg', }, - 'icon.map-boundary': { - '_original': { - '$value': '/icon/map-boundary.svg', + 'icon.load-balancer--network': { + _original: { + $value: '/icon/load-balancer--network.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.map-boundary', - '$type': 'link', - '$value': '/icon/map-boundary.svg', + id: 'icon.load-balancer--network', + $type: 'link', + $value: '/icon/load-balancer--network.svg', }, - 'icon.map-boundary--vegetation': { - '_original': { - '$value': '/icon/map-boundary--vegetation.svg', + 'icon.load-balancer--pool': { + _original: { + $value: '/icon/load-balancer--pool.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.map-boundary--vegetation', - '$type': 'link', - '$value': '/icon/map-boundary--vegetation.svg', + id: 'icon.load-balancer--pool', + $type: 'link', + $value: '/icon/load-balancer--pool.svg', }, - 'icon.marine-warning': { - '_original': { - '$value': '/icon/marine-warning.svg', + 'icon.load-balancer--vpc': { + _original: { + $value: '/icon/load-balancer--vpc.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.marine-warning', - '$type': 'link', - '$value': '/icon/marine-warning.svg', + id: 'icon.load-balancer--vpc', + $type: 'link', + $value: '/icon/load-balancer--vpc.svg', }, - 'icon.math-curve': { - '_original': { - '$value': '/icon/math-curve.svg', + 'icon.location': { + _original: { + $value: '/icon/location.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.math-curve', - '$type': 'link', - '$value': '/icon/math-curve.svg', + id: 'icon.location', + $type: 'link', + $value: '/icon/location.svg', }, - 'icon.matrix': { - '_original': { - '$value': '/icon/matrix.svg', + 'icon.location--company': { + _original: { + $value: '/icon/location--company.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.matrix', - '$type': 'link', - '$value': '/icon/matrix.svg', + id: 'icon.location--company', + $type: 'link', + $value: '/icon/location--company.svg', }, - 'icon.maximize': { - '_original': { - '$value': '/icon/maximize.svg', + 'icon.location--company--filled': { + _original: { + $value: '/icon/location--company--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.maximize', - '$type': 'link', - '$value': '/icon/maximize.svg', + id: 'icon.location--company--filled', + $type: 'link', + $value: '/icon/location--company--filled.svg', }, - 'icon.media--library': { - '_original': { - '$value': '/icon/media--library.svg', + 'icon.location--current': { + _original: { + $value: '/icon/location--current.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.media--library', - '$type': 'link', - '$value': '/icon/media--library.svg', + id: 'icon.location--current', + $type: 'link', + $value: '/icon/location--current.svg', }, - 'icon.media--library--filled': { - '_original': { - '$value': '/icon/media--library--filled.svg', + 'icon.location--filled': { + _original: { + $value: '/icon/location--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.media--library--filled', - '$type': 'link', - '$value': '/icon/media--library--filled.svg', + id: 'icon.location--filled', + $type: 'link', + $value: '/icon/location--filled.svg', }, - 'icon.media-cast': { - '_original': { - '$value': '/icon/media-cast.svg', + 'icon.location--hazard': { + _original: { + $value: '/icon/location--hazard.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.media-cast', - '$type': 'link', - '$value': '/icon/media-cast.svg', + id: 'icon.location--hazard', + $type: 'link', + $value: '/icon/location--hazard.svg', }, - 'icon.medication': { - '_original': { - '$value': '/icon/medication.svg', + 'icon.location--hazard--filled': { + _original: { + $value: '/icon/location--hazard--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.medication', - '$type': 'link', - '$value': '/icon/medication.svg', + id: 'icon.location--hazard--filled', + $type: 'link', + $value: '/icon/location--hazard--filled.svg', }, - 'icon.medication--alert': { - '_original': { - '$value': '/icon/medication--alert.svg', + 'icon.location--heart': { + _original: { + $value: '/icon/location--heart.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.medication--alert', - '$type': 'link', - '$value': '/icon/medication--alert.svg', + id: 'icon.location--heart', + $type: 'link', + $value: '/icon/location--heart.svg', }, - 'icon.medication--reminder': { - '_original': { - '$value': '/icon/medication--reminder.svg', + 'icon.location--heart--filled': { + _original: { + $value: '/icon/location--heart--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.medication--reminder', - '$type': 'link', - '$value': '/icon/medication--reminder.svg', + id: 'icon.location--heart--filled', + $type: 'link', + $value: '/icon/location--heart--filled.svg', }, - 'icon.menu': { - '_original': { - '$value': '/icon/menu.svg', + 'icon.location--person': { + _original: { + $value: '/icon/location--person.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.menu', - '$type': 'link', - '$value': '/icon/menu.svg', + id: 'icon.location--person', + $type: 'link', + $value: '/icon/location--person.svg', }, - 'icon.message-queue': { - '_original': { - '$value': '/icon/message-queue.svg', + 'icon.location--person--filled': { + _original: { + $value: '/icon/location--person--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.message-queue', - '$type': 'link', - '$value': '/icon/message-queue.svg', + id: 'icon.location--person--filled', + $type: 'link', + $value: '/icon/location--person--filled.svg', }, - 'icon.meter': { - '_original': { - '$value': '/icon/meter.svg', + 'icon.location--save': { + _original: { + $value: '/icon/location--save.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.meter', - '$type': 'link', - '$value': '/icon/meter.svg', + id: 'icon.location--save', + $type: 'link', + $value: '/icon/location--save.svg', }, - 'icon.meter--alt': { - '_original': { - '$value': '/icon/meter--alt.svg', + 'icon.location--star': { + _original: { + $value: '/icon/location--star.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.meter--alt', - '$type': 'link', - '$value': '/icon/meter--alt.svg', + id: 'icon.location--star', + $type: 'link', + $value: '/icon/location--star.svg', }, - 'icon.microphone': { - '_original': { - '$value': '/icon/microphone.svg', + 'icon.location--star--filled': { + _original: { + $value: '/icon/location--star--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.microphone', - '$type': 'link', - '$value': '/icon/microphone.svg', + id: 'icon.location--star--filled', + $type: 'link', + $value: '/icon/location--star--filled.svg', }, - 'icon.microphone--filled': { - '_original': { - '$value': '/icon/microphone--filled.svg', + 'icon.locked': { + _original: { + $value: '/icon/locked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.microphone--filled', - '$type': 'link', - '$value': '/icon/microphone--filled.svg', + id: 'icon.locked', + $type: 'link', + $value: '/icon/locked.svg', }, - 'icon.microphone--off': { - '_original': { - '$value': '/icon/microphone--off.svg', + 'icon.logical-partition': { + _original: { + $value: '/icon/logical-partition.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.microphone--off', - '$type': 'link', - '$value': '/icon/microphone--off.svg', + id: 'icon.logical-partition', + $type: 'link', + $value: '/icon/logical-partition.svg', }, - 'icon.microphone--off--filled': { - '_original': { - '$value': '/icon/microphone--off--filled.svg', + 'icon.login': { + _original: { + $value: '/icon/login.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.microphone--off--filled', - '$type': 'link', - '$value': '/icon/microphone--off--filled.svg', + id: 'icon.login', + $type: 'link', + $value: '/icon/login.svg', }, - 'icon.microscope': { - '_original': { - '$value': '/icon/microscope.svg', + 'icon.logo--delicious': { + _original: { + $value: '/icon/logo--delicious.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.microscope', - '$type': 'link', - '$value': '/icon/microscope.svg', + id: 'icon.logo--delicious', + $type: 'link', + $value: '/icon/logo--delicious.svg', }, - 'icon.migrate': { - '_original': { - '$value': '/icon/migrate.svg', + 'icon.logo--digg': { + _original: { + $value: '/icon/logo--digg.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.migrate', - '$type': 'link', - '$value': '/icon/migrate.svg', + id: 'icon.logo--digg', + $type: 'link', + $value: '/icon/logo--digg.svg', }, - 'icon.migrate--alt': { - '_original': { - '$value': '/icon/migrate--alt.svg', + 'icon.logo--discord': { + _original: { + $value: '/icon/logo--discord.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.migrate--alt', - '$type': 'link', - '$value': '/icon/migrate--alt.svg', + id: 'icon.logo--discord', + $type: 'link', + $value: '/icon/logo--discord.svg', }, - 'icon.milestone': { - '_original': { - '$value': '/icon/milestone.svg', + 'icon.logo--facebook': { + _original: { + $value: '/icon/logo--facebook.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.milestone', - '$type': 'link', - '$value': '/icon/milestone.svg', + id: 'icon.logo--facebook', + $type: 'link', + $value: '/icon/logo--facebook.svg', }, - 'icon.military-camp': { - '_original': { - '$value': '/icon/military-camp.svg', + 'icon.logo--flickr': { + _original: { + $value: '/icon/logo--flickr.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.military-camp', - '$type': 'link', - '$value': '/icon/military-camp.svg', + id: 'icon.logo--flickr', + $type: 'link', + $value: '/icon/logo--flickr.svg', }, - 'icon.minimize': { - '_original': { - '$value': '/icon/minimize.svg', + 'icon.logo--github': { + _original: { + $value: '/icon/logo--github.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.minimize', - '$type': 'link', - '$value': '/icon/minimize.svg', + id: 'icon.logo--github', + $type: 'link', + $value: '/icon/logo--github.svg', }, - 'icon.misuse': { - '_original': { - '$value': '/icon/misuse.svg', + 'icon.logo--glassdoor': { + _original: { + $value: '/icon/logo--glassdoor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.misuse', - '$type': 'link', - '$value': '/icon/misuse.svg', + id: 'icon.logo--glassdoor', + $type: 'link', + $value: '/icon/logo--glassdoor.svg', }, - 'icon.misuse--alt': { - '_original': { - '$value': '/icon/misuse--alt.svg', + 'icon.logo--google': { + _original: { + $value: '/icon/logo--google.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.misuse--alt', - '$type': 'link', - '$value': '/icon/misuse--alt.svg', + id: 'icon.logo--google', + $type: 'link', + $value: '/icon/logo--google.svg', }, - 'icon.misuse--outline': { - '_original': { - '$value': '/icon/misuse--outline.svg', + 'icon.logo--instagram': { + _original: { + $value: '/icon/logo--instagram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.misuse--outline', - '$type': 'link', - '$value': '/icon/misuse--outline.svg', + id: 'icon.logo--instagram', + $type: 'link', + $value: '/icon/logo--instagram.svg', }, - 'icon.mixed-rain-hail': { - '_original': { - '$value': '/icon/mixed-rain-hail.svg', + 'icon.logo--jupyter': { + _original: { + $value: '/icon/logo--jupyter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mixed-rain-hail', - '$type': 'link', - '$value': '/icon/mixed-rain-hail.svg', + id: 'icon.logo--jupyter', + $type: 'link', + $value: '/icon/logo--jupyter.svg', }, - 'icon.mobile': { - '_original': { - '$value': '/icon/mobile.svg', + 'icon.logo--keybase': { + _original: { + $value: '/icon/logo--keybase.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobile', - '$type': 'link', - '$value': '/icon/mobile.svg', + id: 'icon.logo--keybase', + $type: 'link', + $value: '/icon/logo--keybase.svg', }, - 'icon.mobile--add': { - '_original': { - '$value': '/icon/mobile--add.svg', + 'icon.logo--linkedin': { + _original: { + $value: '/icon/logo--linkedin.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobile--add', - '$type': 'link', - '$value': '/icon/mobile--add.svg', + id: 'icon.logo--linkedin', + $type: 'link', + $value: '/icon/logo--linkedin.svg', }, - 'icon.mobile--audio': { - '_original': { - '$value': '/icon/mobile--audio.svg', + 'icon.logo--livestream': { + _original: { + $value: '/icon/logo--livestream.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobile--audio', - '$type': 'link', - '$value': '/icon/mobile--audio.svg', + id: 'icon.logo--livestream', + $type: 'link', + $value: '/icon/logo--livestream.svg', }, - 'icon.mobile--check': { - '_original': { - '$value': '/icon/mobile--check.svg', + 'icon.logo--medium': { + _original: { + $value: '/icon/logo--medium.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobile--check', - '$type': 'link', - '$value': '/icon/mobile--check.svg', + id: 'icon.logo--medium', + $type: 'link', + $value: '/icon/logo--medium.svg', }, - 'icon.mobile--download': { - '_original': { - '$value': '/icon/mobile--download.svg', + 'icon.logo--openshift': { + _original: { + $value: '/icon/logo--openshift.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobile--download', - '$type': 'link', - '$value': '/icon/mobile--download.svg', + id: 'icon.logo--openshift', + $type: 'link', + $value: '/icon/logo--openshift.svg', }, - 'icon.mobile--landscape': { - '_original': { - '$value': '/icon/mobile--landscape.svg', + 'icon.logo--pinterest': { + _original: { + $value: '/icon/logo--pinterest.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobile--landscape', - '$type': 'link', - '$value': '/icon/mobile--landscape.svg', + id: 'icon.logo--pinterest', + $type: 'link', + $value: '/icon/logo--pinterest.svg', }, - 'icon.mobility--services': { - '_original': { - '$value': '/icon/mobility--services.svg', + 'icon.logo--python': { + _original: { + $value: '/icon/logo--python.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mobility--services', - '$type': 'link', - '$value': '/icon/mobility--services.svg', + id: 'icon.logo--python', + $type: 'link', + $value: '/icon/logo--python.svg', }, - 'icon.model': { - '_original': { - '$value': '/icon/model.svg', + 'icon.logo--quora': { + _original: { + $value: '/icon/logo--quora.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.model', - '$type': 'link', - '$value': '/icon/model.svg', + id: 'icon.logo--quora', + $type: 'link', + $value: '/icon/logo--quora.svg', }, - 'icon.model--alt': { - '_original': { - '$value': '/icon/model--alt.svg', + 'icon.logo--r-script': { + _original: { + $value: '/icon/logo--r-script.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.model--alt', - '$type': 'link', - '$value': '/icon/model--alt.svg', + id: 'icon.logo--r-script', + $type: 'link', + $value: '/icon/logo--r-script.svg', }, - 'icon.model--reference': { - '_original': { - '$value': '/icon/model--reference.svg', + 'icon.logo--skype': { + _original: { + $value: '/icon/logo--skype.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.model--reference', - '$type': 'link', - '$value': '/icon/model--reference.svg', + id: 'icon.logo--skype', + $type: 'link', + $value: '/icon/logo--skype.svg', }, - 'icon.model-builder': { - '_original': { - '$value': '/icon/model-builder.svg', + 'icon.logo--slack': { + _original: { + $value: '/icon/logo--slack.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.model-builder', - '$type': 'link', - '$value': '/icon/model-builder.svg', + id: 'icon.logo--slack', + $type: 'link', + $value: '/icon/logo--slack.svg', }, - 'icon.model-builder--reference': { - '_original': { - '$value': '/icon/model-builder--reference.svg', + 'icon.logo--snapchat': { + _original: { + $value: '/icon/logo--snapchat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.model-builder--reference', - '$type': 'link', - '$value': '/icon/model-builder--reference.svg', + id: 'icon.logo--snapchat', + $type: 'link', + $value: '/icon/logo--snapchat.svg', }, - 'icon.money': { - '_original': { - '$value': '/icon/money.svg', + 'icon.logo--stumbleupon': { + _original: { + $value: '/icon/logo--stumbleupon.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.money', - '$type': 'link', - '$value': '/icon/money.svg', + id: 'icon.logo--stumbleupon', + $type: 'link', + $value: '/icon/logo--stumbleupon.svg', }, - 'icon.monster': { - '_original': { - '$value': '/icon/monster.svg', + 'icon.logo--tumblr': { + _original: { + $value: '/icon/logo--tumblr.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.monster', - '$type': 'link', - '$value': '/icon/monster.svg', + id: 'icon.logo--tumblr', + $type: 'link', + $value: '/icon/logo--tumblr.svg', }, - 'icon.monument': { - '_original': { - '$value': '/icon/monument.svg', + 'icon.logo--twitter': { + _original: { + $value: '/icon/logo--twitter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.monument', - '$type': 'link', - '$value': '/icon/monument.svg', + id: 'icon.logo--twitter', + $type: 'link', + $value: '/icon/logo--twitter.svg', }, - 'icon.moon': { - '_original': { - '$value': '/icon/moon.svg', + 'icon.logo--vmware': { + _original: { + $value: '/icon/logo--vmware.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.moon', - '$type': 'link', - '$value': '/icon/moon.svg', + id: 'icon.logo--vmware', + $type: 'link', + $value: '/icon/logo--vmware.svg', }, - 'icon.moonrise': { - '_original': { - '$value': '/icon/moonrise.svg', + 'icon.logo--wechat': { + _original: { + $value: '/icon/logo--wechat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.moonrise', - '$type': 'link', - '$value': '/icon/moonrise.svg', + id: 'icon.logo--wechat', + $type: 'link', + $value: '/icon/logo--wechat.svg', }, - 'icon.moonset': { - '_original': { - '$value': '/icon/moonset.svg', + 'icon.logo--xing': { + _original: { + $value: '/icon/logo--xing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.moonset', - '$type': 'link', - '$value': '/icon/moonset.svg', + id: 'icon.logo--xing', + $type: 'link', + $value: '/icon/logo--xing.svg', }, - 'icon.mostly-cloudy': { - '_original': { - '$value': '/icon/mostly-cloudy.svg', + 'icon.logo--yelp': { + _original: { + $value: '/icon/logo--yelp.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mostly-cloudy', - '$type': 'link', - '$value': '/icon/mostly-cloudy.svg', + id: 'icon.logo--yelp', + $type: 'link', + $value: '/icon/logo--yelp.svg', }, - 'icon.mostly-cloudy--night': { - '_original': { - '$value': '/icon/mostly-cloudy--night.svg', + 'icon.logo--youtube': { + _original: { + $value: '/icon/logo--youtube.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mostly-cloudy--night', - '$type': 'link', - '$value': '/icon/mostly-cloudy--night.svg', + id: 'icon.logo--youtube', + $type: 'link', + $value: '/icon/logo--youtube.svg', }, - 'icon.mountain': { - '_original': { - '$value': '/icon/mountain.svg', + 'icon.logout': { + _original: { + $value: '/icon/logout.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.mountain', - '$type': 'link', - '$value': '/icon/mountain.svg', + id: 'icon.logout', + $type: 'link', + $value: '/icon/logout.svg', }, - 'icon.MOV': { - '_original': { - '$value': '/icon/MOV.svg', + 'icon.loop': { + _original: { + $value: '/icon/loop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.MOV', - '$type': 'link', - '$value': '/icon/MOV.svg', + id: 'icon.loop', + $type: 'link', + $value: '/icon/loop.svg', }, - 'icon.move': { - '_original': { - '$value': '/icon/move.svg', + 'icon.low-severity': { + _original: { + $value: '/icon/low-severity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.move', - '$type': 'link', - '$value': '/icon/move.svg', + id: 'icon.low-severity', + $type: 'link', + $value: '/icon/low-severity.svg', }, - 'icon.movement': { - '_original': { - '$value': '/icon/movement.svg', + 'icon.mac--command': { + _original: { + $value: '/icon/mac--command.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.movement', - '$type': 'link', - '$value': '/icon/movement.svg', + id: 'icon.mac--command', + $type: 'link', + $value: '/icon/mac--command.svg', }, - 'icon.MP3': { - '_original': { - '$value': '/icon/MP3.svg', + 'icon.mac--option': { + _original: { + $value: '/icon/mac--option.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.MP3', - '$type': 'link', - '$value': '/icon/MP3.svg', + id: 'icon.mac--option', + $type: 'link', + $value: '/icon/mac--option.svg', }, - 'icon.MP4': { - '_original': { - '$value': '/icon/MP4.svg', + 'icon.mac--shift': { + _original: { + $value: '/icon/mac--shift.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.MP4', - '$type': 'link', - '$value': '/icon/MP4.svg', + id: 'icon.mac--shift', + $type: 'link', + $value: '/icon/mac--shift.svg', }, - 'icon.MPEG': { - '_original': { - '$value': '/icon/MPEG.svg', + 'icon.machine-learning': { + _original: { + $value: '/icon/machine-learning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.MPEG', - '$type': 'link', - '$value': '/icon/MPEG.svg', + id: 'icon.machine-learning', + $type: 'link', + $value: '/icon/machine-learning.svg', }, - 'icon.MPG2': { - '_original': { - '$value': '/icon/MPG2.svg', + 'icon.machine-learning-model': { + _original: { + $value: '/icon/machine-learning-model.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.MPG2', - '$type': 'link', - '$value': '/icon/MPG2.svg', + id: 'icon.machine-learning-model', + $type: 'link', + $value: '/icon/machine-learning-model.svg', }, - 'icon.music': { - '_original': { - '$value': '/icon/music.svg', + 'icon.magic-wand': { + _original: { + $value: '/icon/magic-wand.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.music', - '$type': 'link', - '$value': '/icon/music.svg', + id: 'icon.magic-wand', + $type: 'link', + $value: '/icon/magic-wand.svg', }, - 'icon.music--add': { - '_original': { - '$value': '/icon/music--add.svg', + 'icon.magic-wand--filled': { + _original: { + $value: '/icon/magic-wand--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.music--add', - '$type': 'link', - '$value': '/icon/music--add.svg', + id: 'icon.magic-wand--filled', + $type: 'link', + $value: '/icon/magic-wand--filled.svg', }, - 'icon.music--remove': { - '_original': { - '$value': '/icon/music--remove.svg', + 'icon.magnify': { + _original: { + $value: '/icon/magnify.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.music--remove', - '$type': 'link', - '$value': '/icon/music--remove.svg', + id: 'icon.magnify', + $type: 'link', + $value: '/icon/magnify.svg', }, - 'icon.name-space': { - '_original': { - '$value': '/icon/name-space.svg', + 'icon.mail--all': { + _original: { + $value: '/icon/mail--all.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.name-space', - '$type': 'link', - '$value': '/icon/name-space.svg', + id: 'icon.mail--all', + $type: 'link', + $value: '/icon/mail--all.svg', }, - 'icon.navaid--civil': { - '_original': { - '$value': '/icon/navaid--civil.svg', + 'icon.mail--reply': { + _original: { + $value: '/icon/mail--reply.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--civil', - '$type': 'link', - '$value': '/icon/navaid--civil.svg', + id: 'icon.mail--reply', + $type: 'link', + $value: '/icon/mail--reply.svg', }, - 'icon.navaid--dme': { - '_original': { - '$value': '/icon/navaid--dme.svg', + 'icon.mammogram': { + _original: { + $value: '/icon/mammogram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--dme', - '$type': 'link', - '$value': '/icon/navaid--dme.svg', + id: 'icon.mammogram', + $type: 'link', + $value: '/icon/mammogram.svg', }, - 'icon.navaid--helipad': { - '_original': { - '$value': '/icon/navaid--helipad.svg', + 'icon.mammogram--stacked': { + _original: { + $value: '/icon/mammogram--stacked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--helipad', - '$type': 'link', - '$value': '/icon/navaid--helipad.svg', + id: 'icon.mammogram--stacked', + $type: 'link', + $value: '/icon/mammogram--stacked.svg', }, - 'icon.navaid--military': { - '_original': { - '$value': '/icon/navaid--military.svg', + 'icon.manage-protection': { + _original: { + $value: '/icon/manage-protection.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--military', - '$type': 'link', - '$value': '/icon/navaid--military.svg', + id: 'icon.manage-protection', + $type: 'link', + $value: '/icon/manage-protection.svg', }, - 'icon.navaid--military-civil': { - '_original': { - '$value': '/icon/navaid--military-civil.svg', + 'icon.managed-solutions': { + _original: { + $value: '/icon/managed-solutions.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--military-civil', - '$type': 'link', - '$value': '/icon/navaid--military-civil.svg', + id: 'icon.managed-solutions', + $type: 'link', + $value: '/icon/managed-solutions.svg', }, - 'icon.navaid--ndb': { - '_original': { - '$value': '/icon/navaid--ndb.svg', + 'icon.map': { + _original: { + $value: '/icon/map.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--ndb', - '$type': 'link', - '$value': '/icon/navaid--ndb.svg', + id: 'icon.map', + $type: 'link', + $value: '/icon/map.svg', }, - 'icon.navaid--ndb-dme': { - '_original': { - '$value': '/icon/navaid--ndb-dme.svg', + 'icon.map--center': { + _original: { + $value: '/icon/map--center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--ndb-dme', - '$type': 'link', - '$value': '/icon/navaid--ndb-dme.svg', + id: 'icon.map--center', + $type: 'link', + $value: '/icon/map--center.svg', }, - 'icon.navaid--private': { - '_original': { - '$value': '/icon/navaid--private.svg', + 'icon.map--identify': { + _original: { + $value: '/icon/map--identify.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--private', - '$type': 'link', - '$value': '/icon/navaid--private.svg', + id: 'icon.map--identify', + $type: 'link', + $value: '/icon/map--identify.svg', }, - 'icon.navaid--seaplane': { - '_original': { - '$value': '/icon/navaid--seaplane.svg', + 'icon.map-boundary': { + _original: { + $value: '/icon/map-boundary.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--seaplane', - '$type': 'link', - '$value': '/icon/navaid--seaplane.svg', + id: 'icon.map-boundary', + $type: 'link', + $value: '/icon/map-boundary.svg', }, - 'icon.navaid--tacan': { - '_original': { - '$value': '/icon/navaid--tacan.svg', + 'icon.map-boundary--vegetation': { + _original: { + $value: '/icon/map-boundary--vegetation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--tacan', - '$type': 'link', - '$value': '/icon/navaid--tacan.svg', + id: 'icon.map-boundary--vegetation', + $type: 'link', + $value: '/icon/map-boundary--vegetation.svg', }, - 'icon.navaid--vhfor': { - '_original': { - '$value': '/icon/navaid--vhfor.svg', + 'icon.marine-warning': { + _original: { + $value: '/icon/marine-warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--vhfor', - '$type': 'link', - '$value': '/icon/navaid--vhfor.svg', + id: 'icon.marine-warning', + $type: 'link', + $value: '/icon/marine-warning.svg', }, - 'icon.navaid--vor': { - '_original': { - '$value': '/icon/navaid--vor.svg', + 'icon.math-curve': { + _original: { + $value: '/icon/math-curve.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--vor', - '$type': 'link', - '$value': '/icon/navaid--vor.svg', + id: 'icon.math-curve', + $type: 'link', + $value: '/icon/math-curve.svg', }, - 'icon.navaid--vordme': { - '_original': { - '$value': '/icon/navaid--vordme.svg', + 'icon.matrix': { + _original: { + $value: '/icon/matrix.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--vordme', - '$type': 'link', - '$value': '/icon/navaid--vordme.svg', + id: 'icon.matrix', + $type: 'link', + $value: '/icon/matrix.svg', }, - 'icon.navaid--vortac': { - '_original': { - '$value': '/icon/navaid--vortac.svg', + 'icon.maximize': { + _original: { + $value: '/icon/maximize.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.navaid--vortac', - '$type': 'link', - '$value': '/icon/navaid--vortac.svg', + id: 'icon.maximize', + $type: 'link', + $value: '/icon/maximize.svg', }, - 'icon.need': { - '_original': { - '$value': '/icon/need.svg', + 'icon.media--library': { + _original: { + $value: '/icon/media--library.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.need', - '$type': 'link', - '$value': '/icon/need.svg', + id: 'icon.media--library', + $type: 'link', + $value: '/icon/media--library.svg', }, - 'icon.network--1': { - '_original': { - '$value': '/icon/network--1.svg', + 'icon.media--library--filled': { + _original: { + $value: '/icon/media--library--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--1', - '$type': 'link', - '$value': '/icon/network--1.svg', + id: 'icon.media--library--filled', + $type: 'link', + $value: '/icon/media--library--filled.svg', }, - 'icon.network--2': { - '_original': { - '$value': '/icon/network--2.svg', + 'icon.media-cast': { + _original: { + $value: '/icon/media-cast.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--2', - '$type': 'link', - '$value': '/icon/network--2.svg', + id: 'icon.media-cast', + $type: 'link', + $value: '/icon/media-cast.svg', }, - 'icon.network--3': { - '_original': { - '$value': '/icon/network--3.svg', + 'icon.medication': { + _original: { + $value: '/icon/medication.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--3', - '$type': 'link', - '$value': '/icon/network--3.svg', + id: 'icon.medication', + $type: 'link', + $value: '/icon/medication.svg', }, - 'icon.network--3--reference': { - '_original': { - '$value': '/icon/network--3--reference.svg', + 'icon.medication--alert': { + _original: { + $value: '/icon/medication--alert.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--3--reference', - '$type': 'link', - '$value': '/icon/network--3--reference.svg', + id: 'icon.medication--alert', + $type: 'link', + $value: '/icon/medication--alert.svg', }, - 'icon.network--4': { - '_original': { - '$value': '/icon/network--4.svg', + 'icon.medication--reminder': { + _original: { + $value: '/icon/medication--reminder.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--4', - '$type': 'link', - '$value': '/icon/network--4.svg', + id: 'icon.medication--reminder', + $type: 'link', + $value: '/icon/medication--reminder.svg', }, - 'icon.network--4--reference': { - '_original': { - '$value': '/icon/network--4--reference.svg', + 'icon.menu': { + _original: { + $value: '/icon/menu.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--4--reference', - '$type': 'link', - '$value': '/icon/network--4--reference.svg', + id: 'icon.menu', + $type: 'link', + $value: '/icon/menu.svg', }, - 'icon.network--admin-control': { - '_original': { - '$value': '/icon/network--admin-control.svg', + 'icon.message-queue': { + _original: { + $value: '/icon/message-queue.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--admin-control', - '$type': 'link', - '$value': '/icon/network--admin-control.svg', + id: 'icon.message-queue', + $type: 'link', + $value: '/icon/message-queue.svg', }, - 'icon.network--enterprise': { - '_original': { - '$value': '/icon/network--enterprise.svg', + 'icon.meter': { + _original: { + $value: '/icon/meter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--enterprise', - '$type': 'link', - '$value': '/icon/network--enterprise.svg', + id: 'icon.meter', + $type: 'link', + $value: '/icon/meter.svg', }, - 'icon.network--overlay': { - '_original': { - '$value': '/icon/network--overlay.svg', + 'icon.meter--alt': { + _original: { + $value: '/icon/meter--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--overlay', - '$type': 'link', - '$value': '/icon/network--overlay.svg', + id: 'icon.meter--alt', + $type: 'link', + $value: '/icon/meter--alt.svg', }, - 'icon.network--public': { - '_original': { - '$value': '/icon/network--public.svg', + 'icon.microphone': { + _original: { + $value: '/icon/microphone.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.network--public', - '$type': 'link', - '$value': '/icon/network--public.svg', + id: 'icon.microphone', + $type: 'link', + $value: '/icon/microphone.svg', }, - 'icon.new-tab': { - '_original': { - '$value': '/icon/new-tab.svg', + 'icon.microphone--filled': { + _original: { + $value: '/icon/microphone--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.new-tab', - '$type': 'link', - '$value': '/icon/new-tab.svg', + id: 'icon.microphone--filled', + $type: 'link', + $value: '/icon/microphone--filled.svg', }, - 'icon.next--filled': { - '_original': { - '$value': '/icon/next--filled.svg', + 'icon.microphone--off': { + _original: { + $value: '/icon/microphone--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.next--filled', - '$type': 'link', - '$value': '/icon/next--filled.svg', + id: 'icon.microphone--off', + $type: 'link', + $value: '/icon/microphone--off.svg', }, - 'icon.next--outline': { - '_original': { - '$value': '/icon/next--outline.svg', + 'icon.microphone--off--filled': { + _original: { + $value: '/icon/microphone--off--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.next--outline', - '$type': 'link', - '$value': '/icon/next--outline.svg', + id: 'icon.microphone--off--filled', + $type: 'link', + $value: '/icon/microphone--off--filled.svg', }, - 'icon.no-image': { - '_original': { - '$value': '/icon/no-image.svg', + 'icon.microscope': { + _original: { + $value: '/icon/microscope.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.no-image', - '$type': 'link', - '$value': '/icon/no-image.svg', + id: 'icon.microscope', + $type: 'link', + $value: '/icon/microscope.svg', }, - 'icon.no-ticket': { - '_original': { - '$value': '/icon/no-ticket.svg', + 'icon.migrate': { + _original: { + $value: '/icon/migrate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.no-ticket', - '$type': 'link', - '$value': '/icon/no-ticket.svg', + id: 'icon.migrate', + $type: 'link', + $value: '/icon/migrate.svg', }, - 'icon.nominal': { - '_original': { - '$value': '/icon/nominal.svg', + 'icon.migrate--alt': { + _original: { + $value: '/icon/migrate--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.nominal', - '$type': 'link', - '$value': '/icon/nominal.svg', + id: 'icon.migrate--alt', + $type: 'link', + $value: '/icon/migrate--alt.svg', }, - 'icon.nominate': { - '_original': { - '$value': '/icon/nominate.svg', + 'icon.milestone': { + _original: { + $value: '/icon/milestone.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.nominate', - '$type': 'link', - '$value': '/icon/nominate.svg', + id: 'icon.milestone', + $type: 'link', + $value: '/icon/milestone.svg', }, - 'icon.non-certified': { - '_original': { - '$value': '/icon/non-certified.svg', + 'icon.military-camp': { + _original: { + $value: '/icon/military-camp.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.non-certified', - '$type': 'link', - '$value': '/icon/non-certified.svg', + id: 'icon.military-camp', + $type: 'link', + $value: '/icon/military-camp.svg', }, - 'icon.noodle-bowl': { - '_original': { - '$value': '/icon/noodle-bowl.svg', + 'icon.minimize': { + _original: { + $value: '/icon/minimize.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.noodle-bowl', - '$type': 'link', - '$value': '/icon/noodle-bowl.svg', + id: 'icon.minimize', + $type: 'link', + $value: '/icon/minimize.svg', }, - 'icon.not-available': { - '_original': { - '$value': '/icon/not-available.svg', + 'icon.misuse': { + _original: { + $value: '/icon/misuse.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.not-available', - '$type': 'link', - '$value': '/icon/not-available.svg', + id: 'icon.misuse', + $type: 'link', + $value: '/icon/misuse.svg', }, - 'icon.not-sent': { - '_original': { - '$value': '/icon/not-sent.svg', + 'icon.misuse--alt': { + _original: { + $value: '/icon/misuse--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.not-sent', - '$type': 'link', - '$value': '/icon/not-sent.svg', + id: 'icon.misuse--alt', + $type: 'link', + $value: '/icon/misuse--alt.svg', }, - 'icon.not-sent--filled': { - '_original': { - '$value': '/icon/not-sent--filled.svg', + 'icon.misuse--outline': { + _original: { + $value: '/icon/misuse--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.not-sent--filled', - '$type': 'link', - '$value': '/icon/not-sent--filled.svg', + id: 'icon.misuse--outline', + $type: 'link', + $value: '/icon/misuse--outline.svg', }, - 'icon.notebook': { - '_original': { - '$value': '/icon/notebook.svg', + 'icon.mixed-rain-hail': { + _original: { + $value: '/icon/mixed-rain-hail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notebook', - '$type': 'link', - '$value': '/icon/notebook.svg', + id: 'icon.mixed-rain-hail', + $type: 'link', + $value: '/icon/mixed-rain-hail.svg', }, - 'icon.notebook--reference': { - '_original': { - '$value': '/icon/notebook--reference.svg', + 'icon.mobile': { + _original: { + $value: '/icon/mobile.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notebook--reference', - '$type': 'link', - '$value': '/icon/notebook--reference.svg', + id: 'icon.mobile', + $type: 'link', + $value: '/icon/mobile.svg', }, - 'icon.notification': { - '_original': { - '$value': '/icon/notification.svg', + 'icon.mobile--add': { + _original: { + $value: '/icon/mobile--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notification', - '$type': 'link', - '$value': '/icon/notification.svg', + id: 'icon.mobile--add', + $type: 'link', + $value: '/icon/mobile--add.svg', }, - 'icon.notification--filled': { - '_original': { - '$value': '/icon/notification--filled.svg', + 'icon.mobile--audio': { + _original: { + $value: '/icon/mobile--audio.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notification--filled', - '$type': 'link', - '$value': '/icon/notification--filled.svg', + id: 'icon.mobile--audio', + $type: 'link', + $value: '/icon/mobile--audio.svg', }, - 'icon.notification--new': { - '_original': { - '$value': '/icon/notification--new.svg', + 'icon.mobile--check': { + _original: { + $value: '/icon/mobile--check.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notification--new', - '$type': 'link', - '$value': '/icon/notification--new.svg', + id: 'icon.mobile--check', + $type: 'link', + $value: '/icon/mobile--check.svg', }, - 'icon.notification--off': { - '_original': { - '$value': '/icon/notification--off.svg', + 'icon.mobile--download': { + _original: { + $value: '/icon/mobile--download.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notification--off', - '$type': 'link', - '$value': '/icon/notification--off.svg', + id: 'icon.mobile--download', + $type: 'link', + $value: '/icon/mobile--download.svg', }, - 'icon.notification--off--filled': { - '_original': { - '$value': '/icon/notification--off--filled.svg', + 'icon.mobile--landscape': { + _original: { + $value: '/icon/mobile--landscape.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.notification--off--filled', - '$type': 'link', - '$value': '/icon/notification--off--filled.svg', + id: 'icon.mobile--landscape', + $type: 'link', + $value: '/icon/mobile--landscape.svg', }, - 'icon.number--0': { - '_original': { - '$value': '/icon/number--0.svg', + 'icon.mobility--services': { + _original: { + $value: '/icon/mobility--services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--0', - '$type': 'link', - '$value': '/icon/number--0.svg', + id: 'icon.mobility--services', + $type: 'link', + $value: '/icon/mobility--services.svg', }, - 'icon.number--1': { - '_original': { - '$value': '/icon/number--1.svg', + 'icon.model': { + _original: { + $value: '/icon/model.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--1', - '$type': 'link', - '$value': '/icon/number--1.svg', + id: 'icon.model', + $type: 'link', + $value: '/icon/model.svg', }, - 'icon.number--2': { - '_original': { - '$value': '/icon/number--2.svg', + 'icon.model--alt': { + _original: { + $value: '/icon/model--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--2', - '$type': 'link', - '$value': '/icon/number--2.svg', + id: 'icon.model--alt', + $type: 'link', + $value: '/icon/model--alt.svg', }, - 'icon.number--3': { - '_original': { - '$value': '/icon/number--3.svg', + 'icon.model--reference': { + _original: { + $value: '/icon/model--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--3', - '$type': 'link', - '$value': '/icon/number--3.svg', + id: 'icon.model--reference', + $type: 'link', + $value: '/icon/model--reference.svg', }, - 'icon.number--4': { - '_original': { - '$value': '/icon/number--4.svg', + 'icon.model-builder': { + _original: { + $value: '/icon/model-builder.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--4', - '$type': 'link', - '$value': '/icon/number--4.svg', + id: 'icon.model-builder', + $type: 'link', + $value: '/icon/model-builder.svg', }, - 'icon.number--5': { - '_original': { - '$value': '/icon/number--5.svg', + 'icon.model-builder--reference': { + _original: { + $value: '/icon/model-builder--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--5', - '$type': 'link', - '$value': '/icon/number--5.svg', + id: 'icon.model-builder--reference', + $type: 'link', + $value: '/icon/model-builder--reference.svg', }, - 'icon.number--6': { - '_original': { - '$value': '/icon/number--6.svg', + 'icon.money': { + _original: { + $value: '/icon/money.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--6', - '$type': 'link', - '$value': '/icon/number--6.svg', + id: 'icon.money', + $type: 'link', + $value: '/icon/money.svg', }, - 'icon.number--7': { - '_original': { - '$value': '/icon/number--7.svg', + 'icon.monster': { + _original: { + $value: '/icon/monster.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--7', - '$type': 'link', - '$value': '/icon/number--7.svg', + id: 'icon.monster', + $type: 'link', + $value: '/icon/monster.svg', }, - 'icon.number--8': { - '_original': { - '$value': '/icon/number--8.svg', + 'icon.monument': { + _original: { + $value: '/icon/monument.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--8', - '$type': 'link', - '$value': '/icon/number--8.svg', + id: 'icon.monument', + $type: 'link', + $value: '/icon/monument.svg', }, - 'icon.number--9': { - '_original': { - '$value': '/icon/number--9.svg', + 'icon.moon': { + _original: { + $value: '/icon/moon.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--9', - '$type': 'link', - '$value': '/icon/number--9.svg', + id: 'icon.moon', + $type: 'link', + $value: '/icon/moon.svg', }, - 'icon.number--small--0': { - '_original': { - '$value': '/icon/number--small--0.svg', + 'icon.moonrise': { + _original: { + $value: '/icon/moonrise.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--0', - '$type': 'link', - '$value': '/icon/number--small--0.svg', + id: 'icon.moonrise', + $type: 'link', + $value: '/icon/moonrise.svg', }, - 'icon.number--small--1': { - '_original': { - '$value': '/icon/number--small--1.svg', + 'icon.moonset': { + _original: { + $value: '/icon/moonset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--1', - '$type': 'link', - '$value': '/icon/number--small--1.svg', + id: 'icon.moonset', + $type: 'link', + $value: '/icon/moonset.svg', }, - 'icon.number--small--2': { - '_original': { - '$value': '/icon/number--small--2.svg', + 'icon.mostly-cloudy': { + _original: { + $value: '/icon/mostly-cloudy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--2', - '$type': 'link', - '$value': '/icon/number--small--2.svg', + id: 'icon.mostly-cloudy', + $type: 'link', + $value: '/icon/mostly-cloudy.svg', }, - 'icon.number--small--3': { - '_original': { - '$value': '/icon/number--small--3.svg', + 'icon.mostly-cloudy--night': { + _original: { + $value: '/icon/mostly-cloudy--night.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--3', - '$type': 'link', - '$value': '/icon/number--small--3.svg', + id: 'icon.mostly-cloudy--night', + $type: 'link', + $value: '/icon/mostly-cloudy--night.svg', }, - 'icon.number--small--4': { - '_original': { - '$value': '/icon/number--small--4.svg', + 'icon.mountain': { + _original: { + $value: '/icon/mountain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--4', - '$type': 'link', - '$value': '/icon/number--small--4.svg', + id: 'icon.mountain', + $type: 'link', + $value: '/icon/mountain.svg', }, - 'icon.number--small--5': { - '_original': { - '$value': '/icon/number--small--5.svg', + 'icon.MOV': { + _original: { + $value: '/icon/MOV.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--5', - '$type': 'link', - '$value': '/icon/number--small--5.svg', + id: 'icon.MOV', + $type: 'link', + $value: '/icon/MOV.svg', }, - 'icon.number--small--6': { - '_original': { - '$value': '/icon/number--small--6.svg', + 'icon.move': { + _original: { + $value: '/icon/move.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--6', - '$type': 'link', - '$value': '/icon/number--small--6.svg', + id: 'icon.move', + $type: 'link', + $value: '/icon/move.svg', }, - 'icon.number--small--7': { - '_original': { - '$value': '/icon/number--small--7.svg', + 'icon.movement': { + _original: { + $value: '/icon/movement.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--7', - '$type': 'link', - '$value': '/icon/number--small--7.svg', + id: 'icon.movement', + $type: 'link', + $value: '/icon/movement.svg', }, - 'icon.number--small--8': { - '_original': { - '$value': '/icon/number--small--8.svg', + 'icon.MP3': { + _original: { + $value: '/icon/MP3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--8', - '$type': 'link', - '$value': '/icon/number--small--8.svg', + id: 'icon.MP3', + $type: 'link', + $value: '/icon/MP3.svg', }, - 'icon.number--small--9': { - '_original': { - '$value': '/icon/number--small--9.svg', + 'icon.MP4': { + _original: { + $value: '/icon/MP4.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.number--small--9', - '$type': 'link', - '$value': '/icon/number--small--9.svg', + id: 'icon.MP4', + $type: 'link', + $value: '/icon/MP4.svg', }, - 'icon.object-storage': { - '_original': { - '$value': '/icon/object-storage.svg', + 'icon.MPEG': { + _original: { + $value: '/icon/MPEG.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.object-storage', - '$type': 'link', - '$value': '/icon/object-storage.svg', + id: 'icon.MPEG', + $type: 'link', + $value: '/icon/MPEG.svg', }, - 'icon.object-storage--alt': { - '_original': { - '$value': '/icon/object-storage--alt.svg', + 'icon.MPG2': { + _original: { + $value: '/icon/MPG2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.object-storage--alt', - '$type': 'link', - '$value': '/icon/object-storage--alt.svg', + id: 'icon.MPG2', + $type: 'link', + $value: '/icon/MPG2.svg', }, - 'icon.observed--hail': { - '_original': { - '$value': '/icon/observed--hail.svg', + 'icon.music': { + _original: { + $value: '/icon/music.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.observed--hail', - '$type': 'link', - '$value': '/icon/observed--hail.svg', + id: 'icon.music', + $type: 'link', + $value: '/icon/music.svg', }, - 'icon.observed--lightning': { - '_original': { - '$value': '/icon/observed--lightning.svg', + 'icon.music--add': { + _original: { + $value: '/icon/music--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.observed--lightning', - '$type': 'link', - '$value': '/icon/observed--lightning.svg', + id: 'icon.music--add', + $type: 'link', + $value: '/icon/music--add.svg', }, - 'icon.omega': { - '_original': { - '$value': '/icon/omega.svg', + 'icon.music--remove': { + _original: { + $value: '/icon/music--remove.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.omega', - '$type': 'link', - '$value': '/icon/omega.svg', + id: 'icon.music--remove', + $type: 'link', + $value: '/icon/music--remove.svg', }, - 'icon.opacity': { - '_original': { - '$value': '/icon/opacity.svg', + 'icon.name-space': { + _original: { + $value: '/icon/name-space.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.opacity', - '$type': 'link', - '$value': '/icon/opacity.svg', + id: 'icon.name-space', + $type: 'link', + $value: '/icon/name-space.svg', }, - 'icon.open-panel--bottom': { - '_original': { - '$value': '/icon/open-panel--bottom.svg', + 'icon.navaid--civil': { + _original: { + $value: '/icon/navaid--civil.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--bottom', - '$type': 'link', - '$value': '/icon/open-panel--bottom.svg', + id: 'icon.navaid--civil', + $type: 'link', + $value: '/icon/navaid--civil.svg', }, - 'icon.open-panel--filled--bottom': { - '_original': { - '$value': '/icon/open-panel--filled--bottom.svg', + 'icon.navaid--dme': { + _original: { + $value: '/icon/navaid--dme.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--filled--bottom', - '$type': 'link', - '$value': '/icon/open-panel--filled--bottom.svg', + id: 'icon.navaid--dme', + $type: 'link', + $value: '/icon/navaid--dme.svg', }, - 'icon.open-panel--filled--left': { - '_original': { - '$value': '/icon/open-panel--filled--left.svg', + 'icon.navaid--helipad': { + _original: { + $value: '/icon/navaid--helipad.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--filled--left', - '$type': 'link', - '$value': '/icon/open-panel--filled--left.svg', + id: 'icon.navaid--helipad', + $type: 'link', + $value: '/icon/navaid--helipad.svg', }, - 'icon.open-panel--filled--right': { - '_original': { - '$value': '/icon/open-panel--filled--right.svg', + 'icon.navaid--military': { + _original: { + $value: '/icon/navaid--military.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--filled--right', - '$type': 'link', - '$value': '/icon/open-panel--filled--right.svg', + id: 'icon.navaid--military', + $type: 'link', + $value: '/icon/navaid--military.svg', }, - 'icon.open-panel--filled--top': { - '_original': { - '$value': '/icon/open-panel--filled--top.svg', + 'icon.navaid--military-civil': { + _original: { + $value: '/icon/navaid--military-civil.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--filled--top', - '$type': 'link', - '$value': '/icon/open-panel--filled--top.svg', + id: 'icon.navaid--military-civil', + $type: 'link', + $value: '/icon/navaid--military-civil.svg', }, - 'icon.open-panel--left': { - '_original': { - '$value': '/icon/open-panel--left.svg', + 'icon.navaid--ndb': { + _original: { + $value: '/icon/navaid--ndb.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--left', - '$type': 'link', - '$value': '/icon/open-panel--left.svg', + id: 'icon.navaid--ndb', + $type: 'link', + $value: '/icon/navaid--ndb.svg', }, - 'icon.open-panel--right': { - '_original': { - '$value': '/icon/open-panel--right.svg', + 'icon.navaid--ndb-dme': { + _original: { + $value: '/icon/navaid--ndb-dme.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--right', - '$type': 'link', - '$value': '/icon/open-panel--right.svg', + id: 'icon.navaid--ndb-dme', + $type: 'link', + $value: '/icon/navaid--ndb-dme.svg', }, - 'icon.open-panel--top': { - '_original': { - '$value': '/icon/open-panel--top.svg', + 'icon.navaid--private': { + _original: { + $value: '/icon/navaid--private.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.open-panel--top', - '$type': 'link', - '$value': '/icon/open-panel--top.svg', + id: 'icon.navaid--private', + $type: 'link', + $value: '/icon/navaid--private.svg', }, - 'icon.operation': { - '_original': { - '$value': '/icon/operation.svg', + 'icon.navaid--seaplane': { + _original: { + $value: '/icon/navaid--seaplane.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.operation', - '$type': 'link', - '$value': '/icon/operation.svg', + id: 'icon.navaid--seaplane', + $type: 'link', + $value: '/icon/navaid--seaplane.svg', }, - 'icon.operation--gauge': { - '_original': { - '$value': '/icon/operation--gauge.svg', + 'icon.navaid--tacan': { + _original: { + $value: '/icon/navaid--tacan.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.operation--gauge', - '$type': 'link', - '$value': '/icon/operation--gauge.svg', + id: 'icon.navaid--tacan', + $type: 'link', + $value: '/icon/navaid--tacan.svg', }, - 'icon.operation--if': { - '_original': { - '$value': '/icon/operation--if.svg', + 'icon.navaid--vhfor': { + _original: { + $value: '/icon/navaid--vhfor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.operation--if', - '$type': 'link', - '$value': '/icon/operation--if.svg', + id: 'icon.navaid--vhfor', + $type: 'link', + $value: '/icon/navaid--vhfor.svg', }, - 'icon.operations--field': { - '_original': { - '$value': '/icon/operations--field.svg', + 'icon.navaid--vor': { + _original: { + $value: '/icon/navaid--vor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.operations--field', - '$type': 'link', - '$value': '/icon/operations--field.svg', + id: 'icon.navaid--vor', + $type: 'link', + $value: '/icon/navaid--vor.svg', }, - 'icon.operations--record': { - '_original': { - '$value': '/icon/operations--record.svg', + 'icon.navaid--vordme': { + _original: { + $value: '/icon/navaid--vordme.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.operations--record', - '$type': 'link', - '$value': '/icon/operations--record.svg', + id: 'icon.navaid--vordme', + $type: 'link', + $value: '/icon/navaid--vordme.svg', }, - 'icon.order-details': { - '_original': { - '$value': '/icon/order-details.svg', + 'icon.navaid--vortac': { + _original: { + $value: '/icon/navaid--vortac.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.order-details', - '$type': 'link', - '$value': '/icon/order-details.svg', + id: 'icon.navaid--vortac', + $type: 'link', + $value: '/icon/navaid--vortac.svg', }, - 'icon.ordinal': { - '_original': { - '$value': '/icon/ordinal.svg', + 'icon.need': { + _original: { + $value: '/icon/need.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ordinal', - '$type': 'link', - '$value': '/icon/ordinal.svg', + id: 'icon.need', + $type: 'link', + $value: '/icon/need.svg', }, - 'icon.outage': { - '_original': { - '$value': '/icon/outage.svg', + 'icon.network--1': { + _original: { + $value: '/icon/network--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.outage', - '$type': 'link', - '$value': '/icon/outage.svg', + id: 'icon.network--1', + $type: 'link', + $value: '/icon/network--1.svg', }, - 'icon.outlook-severe': { - '_original': { - '$value': '/icon/outlook-severe.svg', + 'icon.network--2': { + _original: { + $value: '/icon/network--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.outlook-severe', - '$type': 'link', - '$value': '/icon/outlook-severe.svg', + id: 'icon.network--2', + $type: 'link', + $value: '/icon/network--2.svg', }, - 'icon.overflow-menu--horizontal': { - '_original': { - '$value': '/icon/overflow-menu--horizontal.svg', + 'icon.network--3': { + _original: { + $value: '/icon/network--3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.overflow-menu--horizontal', - '$type': 'link', - '$value': '/icon/overflow-menu--horizontal.svg', + id: 'icon.network--3', + $type: 'link', + $value: '/icon/network--3.svg', }, - 'icon.overflow-menu--vertical': { - '_original': { - '$value': '/icon/overflow-menu--vertical.svg', + 'icon.network--3--reference': { + _original: { + $value: '/icon/network--3--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.overflow-menu--vertical', - '$type': 'link', - '$value': '/icon/overflow-menu--vertical.svg', + id: 'icon.network--3--reference', + $type: 'link', + $value: '/icon/network--3--reference.svg', }, - 'icon.overlay': { - '_original': { - '$value': '/icon/overlay.svg', + 'icon.network--4': { + _original: { + $value: '/icon/network--4.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.overlay', - '$type': 'link', - '$value': '/icon/overlay.svg', + id: 'icon.network--4', + $type: 'link', + $value: '/icon/network--4.svg', }, - 'icon.package': { - '_original': { - '$value': '/icon/package.svg', + 'icon.network--4--reference': { + _original: { + $value: '/icon/network--4--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.package', - '$type': 'link', - '$value': '/icon/package.svg', + id: 'icon.network--4--reference', + $type: 'link', + $value: '/icon/network--4--reference.svg', }, - 'icon.page--first': { - '_original': { - '$value': '/icon/page--first.svg', + 'icon.network--admin-control': { + _original: { + $value: '/icon/network--admin-control.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.page--first', - '$type': 'link', - '$value': '/icon/page--first.svg', + id: 'icon.network--admin-control', + $type: 'link', + $value: '/icon/network--admin-control.svg', }, - 'icon.page--last': { - '_original': { - '$value': '/icon/page--last.svg', + 'icon.network--enterprise': { + _original: { + $value: '/icon/network--enterprise.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.page--last', - '$type': 'link', - '$value': '/icon/page--last.svg', + id: 'icon.network--enterprise', + $type: 'link', + $value: '/icon/network--enterprise.svg', }, - 'icon.page-break': { - '_original': { - '$value': '/icon/page-break.svg', + 'icon.network--overlay': { + _original: { + $value: '/icon/network--overlay.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.page-break', - '$type': 'link', - '$value': '/icon/page-break.svg', + id: 'icon.network--overlay', + $type: 'link', + $value: '/icon/network--overlay.svg', }, - 'icon.page-number': { - '_original': { - '$value': '/icon/page-number.svg', + 'icon.network--public': { + _original: { + $value: '/icon/network--public.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.page-number', - '$type': 'link', - '$value': '/icon/page-number.svg', + id: 'icon.network--public', + $type: 'link', + $value: '/icon/network--public.svg', }, - 'icon.page-scroll': { - '_original': { - '$value': '/icon/page-scroll.svg', + 'icon.new-tab': { + _original: { + $value: '/icon/new-tab.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.page-scroll', - '$type': 'link', - '$value': '/icon/page-scroll.svg', + id: 'icon.new-tab', + $type: 'link', + $value: '/icon/new-tab.svg', }, - 'icon.paint-brush': { - '_original': { - '$value': '/icon/paint-brush.svg', + 'icon.next--filled': { + _original: { + $value: '/icon/next--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.paint-brush', - '$type': 'link', - '$value': '/icon/paint-brush.svg', + id: 'icon.next--filled', + $type: 'link', + $value: '/icon/next--filled.svg', }, - 'icon.paint-brush--alt': { - '_original': { - '$value': '/icon/paint-brush--alt.svg', + 'icon.next--outline': { + _original: { + $value: '/icon/next--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.paint-brush--alt', - '$type': 'link', - '$value': '/icon/paint-brush--alt.svg', + id: 'icon.next--outline', + $type: 'link', + $value: '/icon/next--outline.svg', }, - 'icon.palm-tree': { - '_original': { - '$value': '/icon/palm-tree.svg', + 'icon.no-image': { + _original: { + $value: '/icon/no-image.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.palm-tree', - '$type': 'link', - '$value': '/icon/palm-tree.svg', + id: 'icon.no-image', + $type: 'link', + $value: '/icon/no-image.svg', }, - 'icon.pan--horizontal': { - '_original': { - '$value': '/icon/pan--horizontal.svg', + 'icon.no-ticket': { + _original: { + $value: '/icon/no-ticket.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pan--horizontal', - '$type': 'link', - '$value': '/icon/pan--horizontal.svg', + id: 'icon.no-ticket', + $type: 'link', + $value: '/icon/no-ticket.svg', }, - 'icon.pan--vertical': { - '_original': { - '$value': '/icon/pan--vertical.svg', + 'icon.nominal': { + _original: { + $value: '/icon/nominal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pan--vertical', - '$type': 'link', - '$value': '/icon/pan--vertical.svg', + id: 'icon.nominal', + $type: 'link', + $value: '/icon/nominal.svg', }, - 'icon.panel-expansion': { - '_original': { - '$value': '/icon/panel-expansion.svg', + 'icon.nominate': { + _original: { + $value: '/icon/nominate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.panel-expansion', - '$type': 'link', - '$value': '/icon/panel-expansion.svg', + id: 'icon.nominate', + $type: 'link', + $value: '/icon/nominate.svg', }, - 'icon.paragraph': { - '_original': { - '$value': '/icon/paragraph.svg', + 'icon.non-certified': { + _original: { + $value: '/icon/non-certified.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.paragraph', - '$type': 'link', - '$value': '/icon/paragraph.svg', + id: 'icon.non-certified', + $type: 'link', + $value: '/icon/non-certified.svg', }, - 'icon.parameter': { - '_original': { - '$value': '/icon/parameter.svg', + 'icon.noodle-bowl': { + _original: { + $value: '/icon/noodle-bowl.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.parameter', - '$type': 'link', - '$value': '/icon/parameter.svg', + id: 'icon.noodle-bowl', + $type: 'link', + $value: '/icon/noodle-bowl.svg', }, - 'icon.parent-child': { - '_original': { - '$value': '/icon/parent-child.svg', + 'icon.not-available': { + _original: { + $value: '/icon/not-available.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.parent-child', - '$type': 'link', - '$value': '/icon/parent-child.svg', + id: 'icon.not-available', + $type: 'link', + $value: '/icon/not-available.svg', }, - 'icon.partly-cloudy': { - '_original': { - '$value': '/icon/partly-cloudy.svg', + 'icon.not-sent': { + _original: { + $value: '/icon/not-sent.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.partly-cloudy', - '$type': 'link', - '$value': '/icon/partly-cloudy.svg', + id: 'icon.not-sent', + $type: 'link', + $value: '/icon/not-sent.svg', }, - 'icon.partly-cloudy--night': { - '_original': { - '$value': '/icon/partly-cloudy--night.svg', + 'icon.not-sent--filled': { + _original: { + $value: '/icon/not-sent--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.partly-cloudy--night', - '$type': 'link', - '$value': '/icon/partly-cloudy--night.svg', + id: 'icon.not-sent--filled', + $type: 'link', + $value: '/icon/not-sent--filled.svg', }, - 'icon.partnership': { - '_original': { - '$value': '/icon/partnership.svg', + 'icon.notebook': { + _original: { + $value: '/icon/notebook.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.partnership', - '$type': 'link', - '$value': '/icon/partnership.svg', + id: 'icon.notebook', + $type: 'link', + $value: '/icon/notebook.svg', }, - 'icon.passenger--drinks': { - '_original': { - '$value': '/icon/passenger--drinks.svg', + 'icon.notebook--reference': { + _original: { + $value: '/icon/notebook--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.passenger--drinks', - '$type': 'link', - '$value': '/icon/passenger--drinks.svg', + id: 'icon.notebook--reference', + $type: 'link', + $value: '/icon/notebook--reference.svg', }, - 'icon.passenger--plus': { - '_original': { - '$value': '/icon/passenger--plus.svg', + 'icon.notification': { + _original: { + $value: '/icon/notification.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.passenger--plus', - '$type': 'link', - '$value': '/icon/passenger--plus.svg', + id: 'icon.notification', + $type: 'link', + $value: '/icon/notification.svg', }, - 'icon.password': { - '_original': { - '$value': '/icon/password.svg', + 'icon.notification--filled': { + _original: { + $value: '/icon/notification--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.password', - '$type': 'link', - '$value': '/icon/password.svg', + id: 'icon.notification--filled', + $type: 'link', + $value: '/icon/notification--filled.svg', }, - 'icon.paste': { - '_original': { - '$value': '/icon/paste.svg', + 'icon.notification--new': { + _original: { + $value: '/icon/notification--new.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.paste', - '$type': 'link', - '$value': '/icon/paste.svg', + id: 'icon.notification--new', + $type: 'link', + $value: '/icon/notification--new.svg', }, - 'icon.pause': { - '_original': { - '$value': '/icon/pause.svg', + 'icon.notification--off': { + _original: { + $value: '/icon/notification--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pause', - '$type': 'link', - '$value': '/icon/pause.svg', + id: 'icon.notification--off', + $type: 'link', + $value: '/icon/notification--off.svg', }, - 'icon.pause--filled': { - '_original': { - '$value': '/icon/pause--filled.svg', + 'icon.notification--off--filled': { + _original: { + $value: '/icon/notification--off--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pause--filled', - '$type': 'link', - '$value': '/icon/pause--filled.svg', + id: 'icon.notification--off--filled', + $type: 'link', + $value: '/icon/notification--off--filled.svg', }, - 'icon.pause--outline': { - '_original': { - '$value': '/icon/pause--outline.svg', + 'icon.number--0': { + _original: { + $value: '/icon/number--0.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pause--outline', - '$type': 'link', - '$value': '/icon/pause--outline.svg', + id: 'icon.number--0', + $type: 'link', + $value: '/icon/number--0.svg', }, - 'icon.pause--outline--filled': { - '_original': { - '$value': '/icon/pause--outline--filled.svg', + 'icon.number--1': { + _original: { + $value: '/icon/number--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pause--outline--filled', - '$type': 'link', - '$value': '/icon/pause--outline--filled.svg', + id: 'icon.number--1', + $type: 'link', + $value: '/icon/number--1.svg', }, - 'icon.pause-future': { - '_original': { - '$value': '/icon/pause-future.svg', + 'icon.number--2': { + _original: { + $value: '/icon/number--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pause-future', - '$type': 'link', - '$value': '/icon/pause-future.svg', + id: 'icon.number--2', + $type: 'link', + $value: '/icon/number--2.svg', }, - 'icon.pause-past': { - '_original': { - '$value': '/icon/pause-past.svg', + 'icon.number--3': { + _original: { + $value: '/icon/number--3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pause-past', - '$type': 'link', - '$value': '/icon/pause-past.svg', + id: 'icon.number--3', + $type: 'link', + $value: '/icon/number--3.svg', }, - 'icon.pcn--e-node': { - '_original': { - '$value': '/icon/pcn--e-node.svg', + 'icon.number--4': { + _original: { + $value: '/icon/number--4.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pcn--e-node', - '$type': 'link', - '$value': '/icon/pcn--e-node.svg', + id: 'icon.number--4', + $type: 'link', + $value: '/icon/number--4.svg', }, - 'icon.pcn--military': { - '_original': { - '$value': '/icon/pcn--military.svg', + 'icon.number--5': { + _original: { + $value: '/icon/number--5.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pcn--military', - '$type': 'link', - '$value': '/icon/pcn--military.svg', + id: 'icon.number--5', + $type: 'link', + $value: '/icon/number--5.svg', }, - 'icon.pcn--p-node': { - '_original': { - '$value': '/icon/pcn--p-node.svg', + 'icon.number--6': { + _original: { + $value: '/icon/number--6.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pcn--p-node', - '$type': 'link', - '$value': '/icon/pcn--p-node.svg', + id: 'icon.number--6', + $type: 'link', + $value: '/icon/number--6.svg', }, - 'icon.pcn--z-node': { - '_original': { - '$value': '/icon/pcn--z-node.svg', + 'icon.number--7': { + _original: { + $value: '/icon/number--7.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pcn--z-node', - '$type': 'link', - '$value': '/icon/pcn--z-node.svg', + id: 'icon.number--7', + $type: 'link', + $value: '/icon/number--7.svg', }, - 'icon.PDF': { - '_original': { - '$value': '/icon/PDF.svg', + 'icon.number--8': { + _original: { + $value: '/icon/number--8.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.PDF', - '$type': 'link', - '$value': '/icon/PDF.svg', + id: 'icon.number--8', + $type: 'link', + $value: '/icon/number--8.svg', }, - 'icon.PDF--reference': { - '_original': { - '$value': '/icon/PDF--reference.svg', + 'icon.number--9': { + _original: { + $value: '/icon/number--9.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.PDF--reference', - '$type': 'link', - '$value': '/icon/PDF--reference.svg', + id: 'icon.number--9', + $type: 'link', + $value: '/icon/number--9.svg', }, - 'icon.pedestrian': { - '_original': { - '$value': '/icon/pedestrian.svg', + 'icon.number--small--0': { + _original: { + $value: '/icon/number--small--0.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pedestrian', - '$type': 'link', - '$value': '/icon/pedestrian.svg', + id: 'icon.number--small--0', + $type: 'link', + $value: '/icon/number--small--0.svg', }, - 'icon.pedestrian--family': { - '_original': { - '$value': '/icon/pedestrian--family.svg', + 'icon.number--small--1': { + _original: { + $value: '/icon/number--small--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pedestrian--family', - '$type': 'link', - '$value': '/icon/pedestrian--family.svg', + id: 'icon.number--small--1', + $type: 'link', + $value: '/icon/number--small--1.svg', }, - 'icon.pedestrian-child': { - '_original': { - '$value': '/icon/pedestrian-child.svg', + 'icon.number--small--2': { + _original: { + $value: '/icon/number--small--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pedestrian-child', - '$type': 'link', - '$value': '/icon/pedestrian-child.svg', + id: 'icon.number--small--2', + $type: 'link', + $value: '/icon/number--small--2.svg', }, - 'icon.pen': { - '_original': { - '$value': '/icon/pen.svg', + 'icon.number--small--3': { + _original: { + $value: '/icon/number--small--3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pen', - '$type': 'link', - '$value': '/icon/pen.svg', + id: 'icon.number--small--3', + $type: 'link', + $value: '/icon/number--small--3.svg', }, - 'icon.pen--fountain': { - '_original': { - '$value': '/icon/pen--fountain.svg', + 'icon.number--small--4': { + _original: { + $value: '/icon/number--small--4.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pen--fountain', - '$type': 'link', - '$value': '/icon/pen--fountain.svg', + id: 'icon.number--small--4', + $type: 'link', + $value: '/icon/number--small--4.svg', }, - 'icon.pending': { - '_original': { - '$value': '/icon/pending.svg', + 'icon.number--small--5': { + _original: { + $value: '/icon/number--small--5.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pending', - '$type': 'link', - '$value': '/icon/pending.svg', + id: 'icon.number--small--5', + $type: 'link', + $value: '/icon/number--small--5.svg', }, - 'icon.pending--filled': { - '_original': { - '$value': '/icon/pending--filled.svg', + 'icon.number--small--6': { + _original: { + $value: '/icon/number--small--6.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pending--filled', - '$type': 'link', - '$value': '/icon/pending--filled.svg', + id: 'icon.number--small--6', + $type: 'link', + $value: '/icon/number--small--6.svg', }, - 'icon.percentage': { - '_original': { - '$value': '/icon/percentage.svg', + 'icon.number--small--7': { + _original: { + $value: '/icon/number--small--7.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.percentage', - '$type': 'link', - '$value': '/icon/percentage.svg', + id: 'icon.number--small--7', + $type: 'link', + $value: '/icon/number--small--7.svg', }, - 'icon.percentage--filled': { - '_original': { - '$value': '/icon/percentage--filled.svg', + 'icon.number--small--8': { + _original: { + $value: '/icon/number--small--8.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.percentage--filled', - '$type': 'link', - '$value': '/icon/percentage--filled.svg', + id: 'icon.number--small--8', + $type: 'link', + $value: '/icon/number--small--8.svg', }, - 'icon.person': { - '_original': { - '$value': '/icon/person.svg', + 'icon.number--small--9': { + _original: { + $value: '/icon/number--small--9.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.person', - '$type': 'link', - '$value': '/icon/person.svg', + id: 'icon.number--small--9', + $type: 'link', + $value: '/icon/number--small--9.svg', }, - 'icon.person--favorite': { - '_original': { - '$value': '/icon/person--favorite.svg', + 'icon.object-storage': { + _original: { + $value: '/icon/object-storage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.person--favorite', - '$type': 'link', - '$value': '/icon/person--favorite.svg', + id: 'icon.object-storage', + $type: 'link', + $value: '/icon/object-storage.svg', }, - 'icon.pest': { - '_original': { - '$value': '/icon/pest.svg', + 'icon.object-storage--alt': { + _original: { + $value: '/icon/object-storage--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pest', - '$type': 'link', - '$value': '/icon/pest.svg', + id: 'icon.object-storage--alt', + $type: 'link', + $value: '/icon/object-storage--alt.svg', }, - 'icon.pet-image--B': { - '_original': { - '$value': '/icon/pet-image--B.svg', + 'icon.observed--hail': { + _original: { + $value: '/icon/observed--hail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pet-image--B', - '$type': 'link', - '$value': '/icon/pet-image--B.svg', + id: 'icon.observed--hail', + $type: 'link', + $value: '/icon/observed--hail.svg', }, - 'icon.pet-image--O': { - '_original': { - '$value': '/icon/pet-image--O.svg', + 'icon.observed--lightning': { + _original: { + $value: '/icon/observed--lightning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pet-image--O', - '$type': 'link', - '$value': '/icon/pet-image--O.svg', + id: 'icon.observed--lightning', + $type: 'link', + $value: '/icon/observed--lightning.svg', }, - 'icon.phone': { - '_original': { - '$value': '/icon/phone.svg', + 'icon.omega': { + _original: { + $value: '/icon/omega.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone', - '$type': 'link', - '$value': '/icon/phone.svg', + id: 'icon.omega', + $type: 'link', + $value: '/icon/omega.svg', }, - 'icon.phone--application': { - '_original': { - '$value': '/icon/phone--application.svg', + 'icon.opacity': { + _original: { + $value: '/icon/opacity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--application', - '$type': 'link', - '$value': '/icon/phone--application.svg', + id: 'icon.opacity', + $type: 'link', + $value: '/icon/opacity.svg', }, - 'icon.phone--block': { - '_original': { - '$value': '/icon/phone--block.svg', + 'icon.open-panel--bottom': { + _original: { + $value: '/icon/open-panel--bottom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--block', - '$type': 'link', - '$value': '/icon/phone--block.svg', + id: 'icon.open-panel--bottom', + $type: 'link', + $value: '/icon/open-panel--bottom.svg', }, - 'icon.phone--block--filled': { - '_original': { - '$value': '/icon/phone--block--filled.svg', + 'icon.open-panel--filled--bottom': { + _original: { + $value: '/icon/open-panel--filled--bottom.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--block--filled', - '$type': 'link', - '$value': '/icon/phone--block--filled.svg', + id: 'icon.open-panel--filled--bottom', + $type: 'link', + $value: '/icon/open-panel--filled--bottom.svg', }, - 'icon.phone--filled': { - '_original': { - '$value': '/icon/phone--filled.svg', + 'icon.open-panel--filled--left': { + _original: { + $value: '/icon/open-panel--filled--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--filled', - '$type': 'link', - '$value': '/icon/phone--filled.svg', + id: 'icon.open-panel--filled--left', + $type: 'link', + $value: '/icon/open-panel--filled--left.svg', }, - 'icon.phone--incoming': { - '_original': { - '$value': '/icon/phone--incoming.svg', + 'icon.open-panel--filled--right': { + _original: { + $value: '/icon/open-panel--filled--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--incoming', - '$type': 'link', - '$value': '/icon/phone--incoming.svg', + id: 'icon.open-panel--filled--right', + $type: 'link', + $value: '/icon/open-panel--filled--right.svg', }, - 'icon.phone--incoming--filled': { - '_original': { - '$value': '/icon/phone--incoming--filled.svg', + 'icon.open-panel--filled--top': { + _original: { + $value: '/icon/open-panel--filled--top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--incoming--filled', - '$type': 'link', - '$value': '/icon/phone--incoming--filled.svg', + id: 'icon.open-panel--filled--top', + $type: 'link', + $value: '/icon/open-panel--filled--top.svg', }, - 'icon.phone--ip': { - '_original': { - '$value': '/icon/phone--ip.svg', + 'icon.open-panel--left': { + _original: { + $value: '/icon/open-panel--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--ip', - '$type': 'link', - '$value': '/icon/phone--ip.svg', + id: 'icon.open-panel--left', + $type: 'link', + $value: '/icon/open-panel--left.svg', }, - 'icon.phone--off': { - '_original': { - '$value': '/icon/phone--off.svg', + 'icon.open-panel--right': { + _original: { + $value: '/icon/open-panel--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--off', - '$type': 'link', - '$value': '/icon/phone--off.svg', + id: 'icon.open-panel--right', + $type: 'link', + $value: '/icon/open-panel--right.svg', }, - 'icon.phone--off--filled': { - '_original': { - '$value': '/icon/phone--off--filled.svg', + 'icon.open-panel--top': { + _original: { + $value: '/icon/open-panel--top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--off--filled', - '$type': 'link', - '$value': '/icon/phone--off--filled.svg', + id: 'icon.open-panel--top', + $type: 'link', + $value: '/icon/open-panel--top.svg', }, - 'icon.phone--outgoing': { - '_original': { - '$value': '/icon/phone--outgoing.svg', + 'icon.operation': { + _original: { + $value: '/icon/operation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--outgoing', - '$type': 'link', - '$value': '/icon/phone--outgoing.svg', + id: 'icon.operation', + $type: 'link', + $value: '/icon/operation.svg', }, - 'icon.phone--outgoing--filled': { - '_original': { - '$value': '/icon/phone--outgoing--filled.svg', + 'icon.operation--gauge': { + _original: { + $value: '/icon/operation--gauge.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--outgoing--filled', - '$type': 'link', - '$value': '/icon/phone--outgoing--filled.svg', + id: 'icon.operation--gauge', + $type: 'link', + $value: '/icon/operation--gauge.svg', }, - 'icon.phone--settings': { - '_original': { - '$value': '/icon/phone--settings.svg', + 'icon.operation--if': { + _original: { + $value: '/icon/operation--if.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--settings', - '$type': 'link', - '$value': '/icon/phone--settings.svg', + id: 'icon.operation--if', + $type: 'link', + $value: '/icon/operation--if.svg', }, - 'icon.phone--voice': { - '_original': { - '$value': '/icon/phone--voice.svg', + 'icon.operations--field': { + _original: { + $value: '/icon/operations--field.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--voice', - '$type': 'link', - '$value': '/icon/phone--voice.svg', + id: 'icon.operations--field', + $type: 'link', + $value: '/icon/operations--field.svg', }, - 'icon.phone--voice--filled': { - '_original': { - '$value': '/icon/phone--voice--filled.svg', + 'icon.operations--record': { + _original: { + $value: '/icon/operations--record.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phone--voice--filled', - '$type': 'link', - '$value': '/icon/phone--voice--filled.svg', + id: 'icon.operations--record', + $type: 'link', + $value: '/icon/operations--record.svg', }, - 'icon.phrase-sentiment': { - '_original': { - '$value': '/icon/phrase-sentiment.svg', + 'icon.order-details': { + _original: { + $value: '/icon/order-details.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.phrase-sentiment', - '$type': 'link', - '$value': '/icon/phrase-sentiment.svg', + id: 'icon.order-details', + $type: 'link', + $value: '/icon/order-details.svg', }, - 'icon.picnic-area': { - '_original': { - '$value': '/icon/picnic-area.svg', + 'icon.ordinal': { + _original: { + $value: '/icon/ordinal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.picnic-area', - '$type': 'link', - '$value': '/icon/picnic-area.svg', + id: 'icon.ordinal', + $type: 'link', + $value: '/icon/ordinal.svg', }, - 'icon.piggy-bank': { - '_original': { - '$value': '/icon/piggy-bank.svg', + 'icon.outage': { + _original: { + $value: '/icon/outage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.piggy-bank', - '$type': 'link', - '$value': '/icon/piggy-bank.svg', + id: 'icon.outage', + $type: 'link', + $value: '/icon/outage.svg', }, - 'icon.piggy-bank--slot': { - '_original': { - '$value': '/icon/piggy-bank--slot.svg', + 'icon.outlook-severe': { + _original: { + $value: '/icon/outlook-severe.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.piggy-bank--slot', - '$type': 'link', - '$value': '/icon/piggy-bank--slot.svg', + id: 'icon.outlook-severe', + $type: 'link', + $value: '/icon/outlook-severe.svg', }, - 'icon.pills': { - '_original': { - '$value': '/icon/pills.svg', + 'icon.overflow-menu--horizontal': { + _original: { + $value: '/icon/overflow-menu--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pills', - '$type': 'link', - '$value': '/icon/pills.svg', + id: 'icon.overflow-menu--horizontal', + $type: 'link', + $value: '/icon/overflow-menu--horizontal.svg', }, - 'icon.pills--add': { - '_original': { - '$value': '/icon/pills--add.svg', + 'icon.overflow-menu--vertical': { + _original: { + $value: '/icon/overflow-menu--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pills--add', - '$type': 'link', - '$value': '/icon/pills--add.svg', + id: 'icon.overflow-menu--vertical', + $type: 'link', + $value: '/icon/overflow-menu--vertical.svg', }, - 'icon.pills--subtract': { - '_original': { - '$value': '/icon/pills--subtract.svg', + 'icon.overlay': { + _original: { + $value: '/icon/overlay.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pills--subtract', - '$type': 'link', - '$value': '/icon/pills--subtract.svg', + id: 'icon.overlay', + $type: 'link', + $value: '/icon/overlay.svg', }, - 'icon.pin': { - '_original': { - '$value': '/icon/pin.svg', + 'icon.package': { + _original: { + $value: '/icon/package.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pin', - '$type': 'link', - '$value': '/icon/pin.svg', + id: 'icon.package', + $type: 'link', + $value: '/icon/package.svg', }, - 'icon.pin--filled': { - '_original': { - '$value': '/icon/pin--filled.svg', + 'icon.page--first': { + _original: { + $value: '/icon/page--first.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pin--filled', - '$type': 'link', - '$value': '/icon/pin--filled.svg', + id: 'icon.page--first', + $type: 'link', + $value: '/icon/page--first.svg', }, - 'icon.plane': { - '_original': { - '$value': '/icon/plane.svg', + 'icon.page--last': { + _original: { + $value: '/icon/page--last.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.plane', - '$type': 'link', - '$value': '/icon/plane.svg', + id: 'icon.page--last', + $type: 'link', + $value: '/icon/page--last.svg', }, - 'icon.plane--private': { - '_original': { - '$value': '/icon/plane--private.svg', + 'icon.page-break': { + _original: { + $value: '/icon/page-break.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.plane--private', - '$type': 'link', - '$value': '/icon/plane--private.svg', + id: 'icon.page-break', + $type: 'link', + $value: '/icon/page-break.svg', }, - 'icon.plane--sea': { - '_original': { - '$value': '/icon/plane--sea.svg', + 'icon.page-number': { + _original: { + $value: '/icon/page-number.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.plane--sea', - '$type': 'link', - '$value': '/icon/plane--sea.svg', + id: 'icon.page-number', + $type: 'link', + $value: '/icon/page-number.svg', }, - 'icon.play': { - '_original': { - '$value': '/icon/play.svg', + 'icon.page-scroll': { + _original: { + $value: '/icon/page-scroll.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.play', - '$type': 'link', - '$value': '/icon/play.svg', + id: 'icon.page-scroll', + $type: 'link', + $value: '/icon/page-scroll.svg', }, - 'icon.play--filled': { - '_original': { - '$value': '/icon/play--filled.svg', + 'icon.paint-brush': { + _original: { + $value: '/icon/paint-brush.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.play--filled', - '$type': 'link', - '$value': '/icon/play--filled.svg', + id: 'icon.paint-brush', + $type: 'link', + $value: '/icon/paint-brush.svg', }, - 'icon.play--filled--alt': { - '_original': { - '$value': '/icon/play--filled--alt.svg', + 'icon.paint-brush--alt': { + _original: { + $value: '/icon/paint-brush--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.play--filled--alt', - '$type': 'link', - '$value': '/icon/play--filled--alt.svg', + id: 'icon.paint-brush--alt', + $type: 'link', + $value: '/icon/paint-brush--alt.svg', }, - 'icon.play--outline': { - '_original': { - '$value': '/icon/play--outline.svg', + 'icon.palm-tree': { + _original: { + $value: '/icon/palm-tree.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.play--outline', - '$type': 'link', - '$value': '/icon/play--outline.svg', + id: 'icon.palm-tree', + $type: 'link', + $value: '/icon/palm-tree.svg', }, - 'icon.play--outline--filled': { - '_original': { - '$value': '/icon/play--outline--filled.svg', + 'icon.pan--horizontal': { + _original: { + $value: '/icon/pan--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.play--outline--filled', - '$type': 'link', - '$value': '/icon/play--outline--filled.svg', + id: 'icon.pan--horizontal', + $type: 'link', + $value: '/icon/pan--horizontal.svg', }, - 'icon.playlist': { - '_original': { - '$value': '/icon/playlist.svg', + 'icon.pan--vertical': { + _original: { + $value: '/icon/pan--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.playlist', - '$type': 'link', - '$value': '/icon/playlist.svg', + id: 'icon.pan--vertical', + $type: 'link', + $value: '/icon/pan--vertical.svg', }, - 'icon.plug': { - '_original': { - '$value': '/icon/plug.svg', + 'icon.panel-expansion': { + _original: { + $value: '/icon/panel-expansion.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.plug', - '$type': 'link', - '$value': '/icon/plug.svg', + id: 'icon.panel-expansion', + $type: 'link', + $value: '/icon/panel-expansion.svg', }, - 'icon.plug--filled': { - '_original': { - '$value': '/icon/plug--filled.svg', + 'icon.paragraph': { + _original: { + $value: '/icon/paragraph.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.plug--filled', - '$type': 'link', - '$value': '/icon/plug--filled.svg', + id: 'icon.paragraph', + $type: 'link', + $value: '/icon/paragraph.svg', }, - 'icon.PNG': { - '_original': { - '$value': '/icon/PNG.svg', + 'icon.parameter': { + _original: { + $value: '/icon/parameter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.PNG', - '$type': 'link', - '$value': '/icon/PNG.svg', + id: 'icon.parameter', + $type: 'link', + $value: '/icon/parameter.svg', }, - 'icon.point-of-presence': { - '_original': { - '$value': '/icon/point-of-presence.svg', + 'icon.parent-child': { + _original: { + $value: '/icon/parent-child.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.point-of-presence', - '$type': 'link', - '$value': '/icon/point-of-presence.svg', + id: 'icon.parent-child', + $type: 'link', + $value: '/icon/parent-child.svg', }, - 'icon.pointer-text': { - '_original': { - '$value': '/icon/pointer-text.svg', + 'icon.partly-cloudy': { + _original: { + $value: '/icon/partly-cloudy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pointer-text', - '$type': 'link', - '$value': '/icon/pointer-text.svg', + id: 'icon.partly-cloudy', + $type: 'link', + $value: '/icon/partly-cloudy.svg', }, - 'icon.police': { - '_original': { - '$value': '/icon/police.svg', + 'icon.partly-cloudy--night': { + _original: { + $value: '/icon/partly-cloudy--night.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.police', - '$type': 'link', - '$value': '/icon/police.svg', + id: 'icon.partly-cloudy--night', + $type: 'link', + $value: '/icon/partly-cloudy--night.svg', }, - 'icon.policy': { - '_original': { - '$value': '/icon/policy.svg', + 'icon.partnership': { + _original: { + $value: '/icon/partnership.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.policy', - '$type': 'link', - '$value': '/icon/policy.svg', + id: 'icon.partnership', + $type: 'link', + $value: '/icon/partnership.svg', }, - 'icon.popup': { - '_original': { - '$value': '/icon/popup.svg', + 'icon.passenger--drinks': { + _original: { + $value: '/icon/passenger--drinks.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.popup', - '$type': 'link', - '$value': '/icon/popup.svg', + id: 'icon.passenger--drinks', + $type: 'link', + $value: '/icon/passenger--drinks.svg', }, - 'icon.portfolio': { - '_original': { - '$value': '/icon/portfolio.svg', + 'icon.passenger--plus': { + _original: { + $value: '/icon/passenger--plus.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.portfolio', - '$type': 'link', - '$value': '/icon/portfolio.svg', + id: 'icon.passenger--plus', + $type: 'link', + $value: '/icon/passenger--plus.svg', }, - 'icon.power': { - '_original': { - '$value': '/icon/power.svg', + 'icon.password': { + _original: { + $value: '/icon/password.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.power', - '$type': 'link', - '$value': '/icon/power.svg', + id: 'icon.password', + $type: 'link', + $value: '/icon/password.svg', }, - 'icon.PPT': { - '_original': { - '$value': '/icon/PPT.svg', + 'icon.paste': { + _original: { + $value: '/icon/paste.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.PPT', - '$type': 'link', - '$value': '/icon/PPT.svg', + id: 'icon.paste', + $type: 'link', + $value: '/icon/paste.svg', }, - 'icon.presentation-file': { - '_original': { - '$value': '/icon/presentation-file.svg', + 'icon.pause': { + _original: { + $value: '/icon/pause.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.presentation-file', - '$type': 'link', - '$value': '/icon/presentation-file.svg', + id: 'icon.pause', + $type: 'link', + $value: '/icon/pause.svg', }, - 'icon.pressure': { - '_original': { - '$value': '/icon/pressure.svg', + 'icon.pause--filled': { + _original: { + $value: '/icon/pause--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pressure', - '$type': 'link', - '$value': '/icon/pressure.svg', + id: 'icon.pause--filled', + $type: 'link', + $value: '/icon/pause--filled.svg', }, - 'icon.pressure--filled': { - '_original': { - '$value': '/icon/pressure--filled.svg', + 'icon.pause--outline': { + _original: { + $value: '/icon/pause--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.pressure--filled', - '$type': 'link', - '$value': '/icon/pressure--filled.svg', + id: 'icon.pause--outline', + $type: 'link', + $value: '/icon/pause--outline.svg', }, - 'icon.previous--filled': { - '_original': { - '$value': '/icon/previous--filled.svg', + 'icon.pause--outline--filled': { + _original: { + $value: '/icon/pause--outline--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.previous--filled', - '$type': 'link', - '$value': '/icon/previous--filled.svg', + id: 'icon.pause--outline--filled', + $type: 'link', + $value: '/icon/pause--outline--filled.svg', }, - 'icon.previous--outline': { - '_original': { - '$value': '/icon/previous--outline.svg', + 'icon.pause-future': { + _original: { + $value: '/icon/pause-future.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.previous--outline', - '$type': 'link', - '$value': '/icon/previous--outline.svg', + id: 'icon.pause-future', + $type: 'link', + $value: '/icon/pause-future.svg', }, - 'icon.printer': { - '_original': { - '$value': '/icon/printer.svg', + 'icon.pause-past': { + _original: { + $value: '/icon/pause-past.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.printer', - '$type': 'link', - '$value': '/icon/printer.svg', + id: 'icon.pause-past', + $type: 'link', + $value: '/icon/pause-past.svg', }, - 'icon.product': { - '_original': { - '$value': '/icon/product.svg', + 'icon.pcn--e-node': { + _original: { + $value: '/icon/pcn--e-node.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.product', - '$type': 'link', - '$value': '/icon/product.svg', + id: 'icon.pcn--e-node', + $type: 'link', + $value: '/icon/pcn--e-node.svg', }, - 'icon.progress-bar': { - '_original': { - '$value': '/icon/progress-bar.svg', + 'icon.pcn--military': { + _original: { + $value: '/icon/pcn--military.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.progress-bar', - '$type': 'link', - '$value': '/icon/progress-bar.svg', + id: 'icon.pcn--military', + $type: 'link', + $value: '/icon/pcn--military.svg', }, - 'icon.progress-bar--round': { - '_original': { - '$value': '/icon/progress-bar--round.svg', + 'icon.pcn--p-node': { + _original: { + $value: '/icon/pcn--p-node.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.progress-bar--round', - '$type': 'link', - '$value': '/icon/progress-bar--round.svg', + id: 'icon.pcn--p-node', + $type: 'link', + $value: '/icon/pcn--p-node.svg', }, - 'icon.purchase': { - '_original': { - '$value': '/icon/purchase.svg', + 'icon.pcn--z-node': { + _original: { + $value: '/icon/pcn--z-node.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.purchase', - '$type': 'link', - '$value': '/icon/purchase.svg', + id: 'icon.pcn--z-node', + $type: 'link', + $value: '/icon/pcn--z-node.svg', }, - 'icon.QC-launch': { - '_original': { - '$value': '/icon/QC-launch.svg', + 'icon.PDF': { + _original: { + $value: '/icon/PDF.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.QC-launch', - '$type': 'link', - '$value': '/icon/QC-launch.svg', + id: 'icon.PDF', + $type: 'link', + $value: '/icon/PDF.svg', }, - 'icon.qq-plot': { - '_original': { - '$value': '/icon/qq-plot.svg', + 'icon.PDF--reference': { + _original: { + $value: '/icon/PDF--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.qq-plot', - '$type': 'link', - '$value': '/icon/qq-plot.svg', + id: 'icon.PDF--reference', + $type: 'link', + $value: '/icon/PDF--reference.svg', }, - 'icon.qr-code': { - '_original': { - '$value': '/icon/qr-code.svg', + 'icon.pedestrian': { + _original: { + $value: '/icon/pedestrian.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.qr-code', - '$type': 'link', - '$value': '/icon/qr-code.svg', + id: 'icon.pedestrian', + $type: 'link', + $value: '/icon/pedestrian.svg', }, - 'icon.quadrant-plot': { - '_original': { - '$value': '/icon/quadrant-plot.svg', + 'icon.pedestrian--family': { + _original: { + $value: '/icon/pedestrian--family.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.quadrant-plot', - '$type': 'link', - '$value': '/icon/quadrant-plot.svg', + id: 'icon.pedestrian--family', + $type: 'link', + $value: '/icon/pedestrian--family.svg', }, - 'icon.query': { - '_original': { - '$value': '/icon/query.svg', + 'icon.pedestrian-child': { + _original: { + $value: '/icon/pedestrian-child.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.query', - '$type': 'link', - '$value': '/icon/query.svg', + id: 'icon.pedestrian-child', + $type: 'link', + $value: '/icon/pedestrian-child.svg', }, - 'icon.query-queue': { - '_original': { - '$value': '/icon/query-queue.svg', + 'icon.pen': { + _original: { + $value: '/icon/pen.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.query-queue', - '$type': 'link', - '$value': '/icon/query-queue.svg', + id: 'icon.pen', + $type: 'link', + $value: '/icon/pen.svg', }, - 'icon.queued': { - '_original': { - '$value': '/icon/queued.svg', + 'icon.pen--fountain': { + _original: { + $value: '/icon/pen--fountain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.queued', - '$type': 'link', - '$value': '/icon/queued.svg', + id: 'icon.pen--fountain', + $type: 'link', + $value: '/icon/pen--fountain.svg', }, - 'icon.quotes': { - '_original': { - '$value': '/icon/quotes.svg', + 'icon.pending': { + _original: { + $value: '/icon/pending.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.quotes', - '$type': 'link', - '$value': '/icon/quotes.svg', + id: 'icon.pending', + $type: 'link', + $value: '/icon/pending.svg', }, - 'icon.radar': { - '_original': { - '$value': '/icon/radar.svg', + 'icon.pending--filled': { + _original: { + $value: '/icon/pending--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radar', - '$type': 'link', - '$value': '/icon/radar.svg', + id: 'icon.pending--filled', + $type: 'link', + $value: '/icon/pending--filled.svg', }, - 'icon.radar--enhanced': { - '_original': { - '$value': '/icon/radar--enhanced.svg', + 'icon.percentage': { + _original: { + $value: '/icon/percentage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radar--enhanced', - '$type': 'link', - '$value': '/icon/radar--enhanced.svg', + id: 'icon.percentage', + $type: 'link', + $value: '/icon/percentage.svg', }, - 'icon.radar--weather': { - '_original': { - '$value': '/icon/radar--weather.svg', + 'icon.percentage--filled': { + _original: { + $value: '/icon/percentage--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radar--weather', - '$type': 'link', - '$value': '/icon/radar--weather.svg', + id: 'icon.percentage--filled', + $type: 'link', + $value: '/icon/percentage--filled.svg', }, - 'icon.radio': { - '_original': { - '$value': '/icon/radio.svg', + 'icon.person': { + _original: { + $value: '/icon/person.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radio', - '$type': 'link', - '$value': '/icon/radio.svg', + id: 'icon.person', + $type: 'link', + $value: '/icon/person.svg', }, - 'icon.radio--combat': { - '_original': { - '$value': '/icon/radio--combat.svg', + 'icon.person--favorite': { + _original: { + $value: '/icon/person--favorite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radio--combat', - '$type': 'link', - '$value': '/icon/radio--combat.svg', + id: 'icon.person--favorite', + $type: 'link', + $value: '/icon/person--favorite.svg', }, - 'icon.radio--push-to-talk': { - '_original': { - '$value': '/icon/radio--push-to-talk.svg', + 'icon.pest': { + _original: { + $value: '/icon/pest.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radio--push-to-talk', - '$type': 'link', - '$value': '/icon/radio--push-to-talk.svg', + id: 'icon.pest', + $type: 'link', + $value: '/icon/pest.svg', }, - 'icon.radio-button': { - '_original': { - '$value': '/icon/radio-button.svg', + 'icon.pet-image--B': { + _original: { + $value: '/icon/pet-image--B.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radio-button', - '$type': 'link', - '$value': '/icon/radio-button.svg', + id: 'icon.pet-image--B', + $type: 'link', + $value: '/icon/pet-image--B.svg', }, - 'icon.radio-button--checked': { - '_original': { - '$value': '/icon/radio-button--checked.svg', + 'icon.pet-image--O': { + _original: { + $value: '/icon/pet-image--O.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.radio-button--checked', - '$type': 'link', - '$value': '/icon/radio-button--checked.svg', + id: 'icon.pet-image--O', + $type: 'link', + $value: '/icon/pet-image--O.svg', }, - 'icon.rain': { - '_original': { - '$value': '/icon/rain.svg', + 'icon.phone': { + _original: { + $value: '/icon/phone.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rain', - '$type': 'link', - '$value': '/icon/rain.svg', + id: 'icon.phone', + $type: 'link', + $value: '/icon/phone.svg', }, - 'icon.rain--drizzle': { - '_original': { - '$value': '/icon/rain--drizzle.svg', + 'icon.phone--application': { + _original: { + $value: '/icon/phone--application.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rain--drizzle', - '$type': 'link', - '$value': '/icon/rain--drizzle.svg', + id: 'icon.phone--application', + $type: 'link', + $value: '/icon/phone--application.svg', }, - 'icon.rain--heavy': { - '_original': { - '$value': '/icon/rain--heavy.svg', + 'icon.phone--block': { + _original: { + $value: '/icon/phone--block.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rain--heavy', - '$type': 'link', - '$value': '/icon/rain--heavy.svg', + id: 'icon.phone--block', + $type: 'link', + $value: '/icon/phone--block.svg', }, - 'icon.rain--scattered': { - '_original': { - '$value': '/icon/rain--scattered.svg', + 'icon.phone--block--filled': { + _original: { + $value: '/icon/phone--block--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rain--scattered', - '$type': 'link', - '$value': '/icon/rain--scattered.svg', + id: 'icon.phone--block--filled', + $type: 'link', + $value: '/icon/phone--block--filled.svg', }, - 'icon.rain--scattered--night': { - '_original': { - '$value': '/icon/rain--scattered--night.svg', + 'icon.phone--filled': { + _original: { + $value: '/icon/phone--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rain--scattered--night', - '$type': 'link', - '$value': '/icon/rain--scattered--night.svg', + id: 'icon.phone--filled', + $type: 'link', + $value: '/icon/phone--filled.svg', }, - 'icon.rain-drop': { - '_original': { - '$value': '/icon/rain-drop.svg', + 'icon.phone--incoming': { + _original: { + $value: '/icon/phone--incoming.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rain-drop', - '$type': 'link', - '$value': '/icon/rain-drop.svg', + id: 'icon.phone--incoming', + $type: 'link', + $value: '/icon/phone--incoming.svg', }, - 'icon.RAW': { - '_original': { - '$value': '/icon/RAW.svg', + 'icon.phone--incoming--filled': { + _original: { + $value: '/icon/phone--incoming--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.RAW', - '$type': 'link', - '$value': '/icon/RAW.svg', + id: 'icon.phone--incoming--filled', + $type: 'link', + $value: '/icon/phone--incoming--filled.svg', }, - 'icon.receipt': { - '_original': { - '$value': '/icon/receipt.svg', + 'icon.phone--ip': { + _original: { + $value: '/icon/phone--ip.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.receipt', - '$type': 'link', - '$value': '/icon/receipt.svg', + id: 'icon.phone--ip', + $type: 'link', + $value: '/icon/phone--ip.svg', }, - 'icon.recently-viewed': { - '_original': { - '$value': '/icon/recently-viewed.svg', + 'icon.phone--off': { + _original: { + $value: '/icon/phone--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.recently-viewed', - '$type': 'link', - '$value': '/icon/recently-viewed.svg', + id: 'icon.phone--off', + $type: 'link', + $value: '/icon/phone--off.svg', }, - 'icon.recommend': { - '_original': { - '$value': '/icon/recommend.svg', + 'icon.phone--off--filled': { + _original: { + $value: '/icon/phone--off--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.recommend', - '$type': 'link', - '$value': '/icon/recommend.svg', + id: 'icon.phone--off--filled', + $type: 'link', + $value: '/icon/phone--off--filled.svg', }, - 'icon.recording': { - '_original': { - '$value': '/icon/recording.svg', + 'icon.phone--outgoing': { + _original: { + $value: '/icon/phone--outgoing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.recording', - '$type': 'link', - '$value': '/icon/recording.svg', + id: 'icon.phone--outgoing', + $type: 'link', + $value: '/icon/phone--outgoing.svg', }, - 'icon.recording--filled': { - '_original': { - '$value': '/icon/recording--filled.svg', + 'icon.phone--outgoing--filled': { + _original: { + $value: '/icon/phone--outgoing--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.recording--filled', - '$type': 'link', - '$value': '/icon/recording--filled.svg', + id: 'icon.phone--outgoing--filled', + $type: 'link', + $value: '/icon/phone--outgoing--filled.svg', }, - 'icon.recording--filled--alt': { - '_original': { - '$value': '/icon/recording--filled--alt.svg', + 'icon.phone--settings': { + _original: { + $value: '/icon/phone--settings.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.recording--filled--alt', - '$type': 'link', - '$value': '/icon/recording--filled--alt.svg', + id: 'icon.phone--settings', + $type: 'link', + $value: '/icon/phone--settings.svg', }, - 'icon.redo': { - '_original': { - '$value': '/icon/redo.svg', + 'icon.phone--voice': { + _original: { + $value: '/icon/phone--voice.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.redo', - '$type': 'link', - '$value': '/icon/redo.svg', + id: 'icon.phone--voice', + $type: 'link', + $value: '/icon/phone--voice.svg', }, - 'icon.ref-evapotranspiration': { - '_original': { - '$value': '/icon/ref-evapotranspiration.svg', + 'icon.phone--voice--filled': { + _original: { + $value: '/icon/phone--voice--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ref-evapotranspiration', - '$type': 'link', - '$value': '/icon/ref-evapotranspiration.svg', + id: 'icon.phone--voice--filled', + $type: 'link', + $value: '/icon/phone--voice--filled.svg', }, - 'icon.reflect--horizontal': { - '_original': { - '$value': '/icon/reflect--horizontal.svg', + 'icon.phrase-sentiment': { + _original: { + $value: '/icon/phrase-sentiment.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reflect--horizontal', - '$type': 'link', - '$value': '/icon/reflect--horizontal.svg', + id: 'icon.phrase-sentiment', + $type: 'link', + $value: '/icon/phrase-sentiment.svg', }, - 'icon.reflect--vertical': { - '_original': { - '$value': '/icon/reflect--vertical.svg', + 'icon.picnic-area': { + _original: { + $value: '/icon/picnic-area.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reflect--vertical', - '$type': 'link', - '$value': '/icon/reflect--vertical.svg', + id: 'icon.picnic-area', + $type: 'link', + $value: '/icon/picnic-area.svg', }, - 'icon.region-analysis--area': { - '_original': { - '$value': '/icon/region-analysis--area.svg', + 'icon.piggy-bank': { + _original: { + $value: '/icon/piggy-bank.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.region-analysis--area', - '$type': 'link', - '$value': '/icon/region-analysis--area.svg', + id: 'icon.piggy-bank', + $type: 'link', + $value: '/icon/piggy-bank.svg', }, - 'icon.region-analysis--volume': { - '_original': { - '$value': '/icon/region-analysis--volume.svg', + 'icon.piggy-bank--slot': { + _original: { + $value: '/icon/piggy-bank--slot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.region-analysis--volume', - '$type': 'link', - '$value': '/icon/region-analysis--volume.svg', + id: 'icon.piggy-bank--slot', + $type: 'link', + $value: '/icon/piggy-bank--slot.svg', }, - 'icon.registration': { - '_original': { - '$value': '/icon/registration.svg', + 'icon.pills': { + _original: { + $value: '/icon/pills.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.registration', - '$type': 'link', - '$value': '/icon/registration.svg', + id: 'icon.pills', + $type: 'link', + $value: '/icon/pills.svg', }, - 'icon.reminder': { - '_original': { - '$value': '/icon/reminder.svg', + 'icon.pills--add': { + _original: { + $value: '/icon/pills--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reminder', - '$type': 'link', - '$value': '/icon/reminder.svg', + id: 'icon.pills--add', + $type: 'link', + $value: '/icon/pills--add.svg', }, - 'icon.reminder--medical': { - '_original': { - '$value': '/icon/reminder--medical.svg', + 'icon.pills--subtract': { + _original: { + $value: '/icon/pills--subtract.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reminder--medical', - '$type': 'link', - '$value': '/icon/reminder--medical.svg', + id: 'icon.pills--subtract', + $type: 'link', + $value: '/icon/pills--subtract.svg', }, - 'icon.renew': { - '_original': { - '$value': '/icon/renew.svg', + 'icon.pin': { + _original: { + $value: '/icon/pin.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.renew', - '$type': 'link', - '$value': '/icon/renew.svg', + id: 'icon.pin', + $type: 'link', + $value: '/icon/pin.svg', }, - 'icon.repeat': { - '_original': { - '$value': '/icon/repeat.svg', + 'icon.pin--filled': { + _original: { + $value: '/icon/pin--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.repeat', - '$type': 'link', - '$value': '/icon/repeat.svg', + id: 'icon.pin--filled', + $type: 'link', + $value: '/icon/pin--filled.svg', }, - 'icon.repeat--one': { - '_original': { - '$value': '/icon/repeat--one.svg', + 'icon.plane': { + _original: { + $value: '/icon/plane.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.repeat--one', - '$type': 'link', - '$value': '/icon/repeat--one.svg', + id: 'icon.plane', + $type: 'link', + $value: '/icon/plane.svg', }, - 'icon.replicate': { - '_original': { - '$value': '/icon/replicate.svg', + 'icon.plane--private': { + _original: { + $value: '/icon/plane--private.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.replicate', - '$type': 'link', - '$value': '/icon/replicate.svg', + id: 'icon.plane--private', + $type: 'link', + $value: '/icon/plane--private.svg', }, - 'icon.reply': { - '_original': { - '$value': '/icon/reply.svg', + 'icon.plane--sea': { + _original: { + $value: '/icon/plane--sea.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reply', - '$type': 'link', - '$value': '/icon/reply.svg', + id: 'icon.plane--sea', + $type: 'link', + $value: '/icon/plane--sea.svg', }, - 'icon.reply--all': { - '_original': { - '$value': '/icon/reply--all.svg', + 'icon.play': { + _original: { + $value: '/icon/play.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reply--all', - '$type': 'link', - '$value': '/icon/reply--all.svg', + id: 'icon.play', + $type: 'link', + $value: '/icon/play.svg', }, - 'icon.report': { - '_original': { - '$value': '/icon/report.svg', + 'icon.play--filled': { + _original: { + $value: '/icon/play--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.report', - '$type': 'link', - '$value': '/icon/report.svg', + id: 'icon.play--filled', + $type: 'link', + $value: '/icon/play--filled.svg', }, - 'icon.report--data': { - '_original': { - '$value': '/icon/report--data.svg', + 'icon.play--filled--alt': { + _original: { + $value: '/icon/play--filled--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.report--data', - '$type': 'link', - '$value': '/icon/report--data.svg', + id: 'icon.play--filled--alt', + $type: 'link', + $value: '/icon/play--filled--alt.svg', }, - 'icon.request-quote': { - '_original': { - '$value': '/icon/request-quote.svg', + 'icon.play--outline': { + _original: { + $value: '/icon/play--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.request-quote', - '$type': 'link', - '$value': '/icon/request-quote.svg', + id: 'icon.play--outline', + $type: 'link', + $value: '/icon/play--outline.svg', }, - 'icon.research--bloch-sphere': { - '_original': { - '$value': '/icon/research--bloch-sphere.svg', + 'icon.play--outline--filled': { + _original: { + $value: '/icon/play--outline--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.research--bloch-sphere', - '$type': 'link', - '$value': '/icon/research--bloch-sphere.svg', + id: 'icon.play--outline--filled', + $type: 'link', + $value: '/icon/play--outline--filled.svg', }, - 'icon.research--hinton-plot': { - '_original': { - '$value': '/icon/research--hinton-plot.svg', + 'icon.playlist': { + _original: { + $value: '/icon/playlist.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.research--hinton-plot', - '$type': 'link', - '$value': '/icon/research--hinton-plot.svg', + id: 'icon.playlist', + $type: 'link', + $value: '/icon/playlist.svg', }, - 'icon.research--matrix': { - '_original': { - '$value': '/icon/research--matrix.svg', + 'icon.plug': { + _original: { + $value: '/icon/plug.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.research--matrix', - '$type': 'link', - '$value': '/icon/research--matrix.svg', + id: 'icon.plug', + $type: 'link', + $value: '/icon/plug.svg', }, - 'icon.reset': { - '_original': { - '$value': '/icon/reset.svg', + 'icon.plug--filled': { + _original: { + $value: '/icon/plug--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reset', - '$type': 'link', - '$value': '/icon/reset.svg', + id: 'icon.plug--filled', + $type: 'link', + $value: '/icon/plug--filled.svg', }, - 'icon.reset--alt': { - '_original': { - '$value': '/icon/reset--alt.svg', + 'icon.PNG': { + _original: { + $value: '/icon/PNG.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.reset--alt', - '$type': 'link', - '$value': '/icon/reset--alt.svg', + id: 'icon.PNG', + $type: 'link', + $value: '/icon/PNG.svg', }, - 'icon.restart': { - '_original': { - '$value': '/icon/restart.svg', + 'icon.point-of-presence': { + _original: { + $value: '/icon/point-of-presence.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.restart', - '$type': 'link', - '$value': '/icon/restart.svg', + id: 'icon.point-of-presence', + $type: 'link', + $value: '/icon/point-of-presence.svg', }, - 'icon.restaurant': { - '_original': { - '$value': '/icon/restaurant.svg', + 'icon.pointer-text': { + _original: { + $value: '/icon/pointer-text.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.restaurant', - '$type': 'link', - '$value': '/icon/restaurant.svg', + id: 'icon.pointer-text', + $type: 'link', + $value: '/icon/pointer-text.svg', }, - 'icon.restaurant--fine': { - '_original': { - '$value': '/icon/restaurant--fine.svg', + 'icon.police': { + _original: { + $value: '/icon/police.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.restaurant--fine', - '$type': 'link', - '$value': '/icon/restaurant--fine.svg', + id: 'icon.police', + $type: 'link', + $value: '/icon/police.svg', }, - 'icon.result': { - '_original': { - '$value': '/icon/result.svg', + 'icon.policy': { + _original: { + $value: '/icon/policy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.result', - '$type': 'link', - '$value': '/icon/result.svg', + id: 'icon.policy', + $type: 'link', + $value: '/icon/policy.svg', }, - 'icon.result--new': { - '_original': { - '$value': '/icon/result--new.svg', + 'icon.popup': { + _original: { + $value: '/icon/popup.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.result--new', - '$type': 'link', - '$value': '/icon/result--new.svg', + id: 'icon.popup', + $type: 'link', + $value: '/icon/popup.svg', }, - 'icon.result--old': { - '_original': { - '$value': '/icon/result--old.svg', + 'icon.portfolio': { + _original: { + $value: '/icon/portfolio.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.result--old', - '$type': 'link', - '$value': '/icon/result--old.svg', + id: 'icon.portfolio', + $type: 'link', + $value: '/icon/portfolio.svg', }, - 'icon.retry--failed': { - '_original': { - '$value': '/icon/retry--failed.svg', + 'icon.power': { + _original: { + $value: '/icon/power.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.retry--failed', - '$type': 'link', - '$value': '/icon/retry--failed.svg', + id: 'icon.power', + $type: 'link', + $value: '/icon/power.svg', }, - 'icon.review': { - '_original': { - '$value': '/icon/review.svg', + 'icon.PPT': { + _original: { + $value: '/icon/PPT.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.review', - '$type': 'link', - '$value': '/icon/review.svg', + id: 'icon.PPT', + $type: 'link', + $value: '/icon/PPT.svg', }, - 'icon.rewind--10': { - '_original': { - '$value': '/icon/rewind--10.svg', + 'icon.presentation-file': { + _original: { + $value: '/icon/presentation-file.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rewind--10', - '$type': 'link', - '$value': '/icon/rewind--10.svg', + id: 'icon.presentation-file', + $type: 'link', + $value: '/icon/presentation-file.svg', }, - 'icon.rewind--30': { - '_original': { - '$value': '/icon/rewind--30.svg', + 'icon.pressure': { + _original: { + $value: '/icon/pressure.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rewind--30', - '$type': 'link', - '$value': '/icon/rewind--30.svg', + id: 'icon.pressure', + $type: 'link', + $value: '/icon/pressure.svg', }, - 'icon.rewind--5': { - '_original': { - '$value': '/icon/rewind--5.svg', + 'icon.pressure--filled': { + _original: { + $value: '/icon/pressure--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rewind--5', - '$type': 'link', - '$value': '/icon/rewind--5.svg', + id: 'icon.pressure--filled', + $type: 'link', + $value: '/icon/pressure--filled.svg', }, - 'icon.road': { - '_original': { - '$value': '/icon/road.svg', + 'icon.previous--filled': { + _original: { + $value: '/icon/previous--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.road', - '$type': 'link', - '$value': '/icon/road.svg', + id: 'icon.previous--filled', + $type: 'link', + $value: '/icon/previous--filled.svg', }, - 'icon.road--weather': { - '_original': { - '$value': '/icon/road--weather.svg', + 'icon.previous--outline': { + _original: { + $value: '/icon/previous--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.road--weather', - '$type': 'link', - '$value': '/icon/road--weather.svg', + id: 'icon.previous--outline', + $type: 'link', + $value: '/icon/previous--outline.svg', }, - 'icon.roadmap': { - '_original': { - '$value': '/icon/roadmap.svg', + 'icon.printer': { + _original: { + $value: '/icon/printer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.roadmap', - '$type': 'link', - '$value': '/icon/roadmap.svg', + id: 'icon.printer', + $type: 'link', + $value: '/icon/printer.svg', }, - 'icon.rocket': { - '_original': { - '$value': '/icon/rocket.svg', + 'icon.product': { + _original: { + $value: '/icon/product.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rocket', - '$type': 'link', - '$value': '/icon/rocket.svg', + id: 'icon.product', + $type: 'link', + $value: '/icon/product.svg', }, - 'icon.rotate': { - '_original': { - '$value': '/icon/rotate.svg', + 'icon.progress-bar': { + _original: { + $value: '/icon/progress-bar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate', - '$type': 'link', - '$value': '/icon/rotate.svg', + id: 'icon.progress-bar', + $type: 'link', + $value: '/icon/progress-bar.svg', }, - 'icon.rotate--180': { - '_original': { - '$value': '/icon/rotate--180.svg', + 'icon.progress-bar--round': { + _original: { + $value: '/icon/progress-bar--round.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--180', - '$type': 'link', - '$value': '/icon/rotate--180.svg', + id: 'icon.progress-bar--round', + $type: 'link', + $value: '/icon/progress-bar--round.svg', }, - 'icon.rotate--360': { - '_original': { - '$value': '/icon/rotate--360.svg', + 'icon.purchase': { + _original: { + $value: '/icon/purchase.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--360', - '$type': 'link', - '$value': '/icon/rotate--360.svg', + id: 'icon.purchase', + $type: 'link', + $value: '/icon/purchase.svg', }, - 'icon.rotate--clockwise': { - '_original': { - '$value': '/icon/rotate--clockwise.svg', + 'icon.QC-launch': { + _original: { + $value: '/icon/QC-launch.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--clockwise', - '$type': 'link', - '$value': '/icon/rotate--clockwise.svg', + id: 'icon.QC-launch', + $type: 'link', + $value: '/icon/QC-launch.svg', }, - 'icon.rotate--clockwise--alt': { - '_original': { - '$value': '/icon/rotate--clockwise--alt.svg', + 'icon.qq-plot': { + _original: { + $value: '/icon/qq-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--clockwise--alt', - '$type': 'link', - '$value': '/icon/rotate--clockwise--alt.svg', + id: 'icon.qq-plot', + $type: 'link', + $value: '/icon/qq-plot.svg', }, - 'icon.rotate--clockwise--alt--filled': { - '_original': { - '$value': '/icon/rotate--clockwise--alt--filled.svg', + 'icon.qr-code': { + _original: { + $value: '/icon/qr-code.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--clockwise--alt--filled', - '$type': 'link', - '$value': '/icon/rotate--clockwise--alt--filled.svg', + id: 'icon.qr-code', + $type: 'link', + $value: '/icon/qr-code.svg', }, - 'icon.rotate--clockwise--filled': { - '_original': { - '$value': '/icon/rotate--clockwise--filled.svg', + 'icon.quadrant-plot': { + _original: { + $value: '/icon/quadrant-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--clockwise--filled', - '$type': 'link', - '$value': '/icon/rotate--clockwise--filled.svg', + id: 'icon.quadrant-plot', + $type: 'link', + $value: '/icon/quadrant-plot.svg', }, - 'icon.rotate--counterclockwise': { - '_original': { - '$value': '/icon/rotate--counterclockwise.svg', + 'icon.query': { + _original: { + $value: '/icon/query.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--counterclockwise', - '$type': 'link', - '$value': '/icon/rotate--counterclockwise.svg', + id: 'icon.query', + $type: 'link', + $value: '/icon/query.svg', }, - 'icon.rotate--counterclockwise--alt': { - '_original': { - '$value': '/icon/rotate--counterclockwise--alt.svg', + 'icon.query-queue': { + _original: { + $value: '/icon/query-queue.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--counterclockwise--alt', - '$type': 'link', - '$value': '/icon/rotate--counterclockwise--alt.svg', + id: 'icon.query-queue', + $type: 'link', + $value: '/icon/query-queue.svg', }, - 'icon.rotate--counterclockwise--alt--filled': { - '_original': { - '$value': '/icon/rotate--counterclockwise--alt--filled.svg', + 'icon.queued': { + _original: { + $value: '/icon/queued.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--counterclockwise--alt--filled', - '$type': 'link', - '$value': '/icon/rotate--counterclockwise--alt--filled.svg', + id: 'icon.queued', + $type: 'link', + $value: '/icon/queued.svg', }, - 'icon.rotate--counterclockwise--filled': { - '_original': { - '$value': '/icon/rotate--counterclockwise--filled.svg', + 'icon.quotes': { + _original: { + $value: '/icon/quotes.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rotate--counterclockwise--filled', - '$type': 'link', - '$value': '/icon/rotate--counterclockwise--filled.svg', + id: 'icon.quotes', + $type: 'link', + $value: '/icon/quotes.svg', }, - 'icon.router': { - '_original': { - '$value': '/icon/router.svg', + 'icon.radar': { + _original: { + $value: '/icon/radar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.router', - '$type': 'link', - '$value': '/icon/router.svg', + id: 'icon.radar', + $type: 'link', + $value: '/icon/radar.svg', }, - 'icon.router--voice': { - '_original': { - '$value': '/icon/router--voice.svg', + 'icon.radar--enhanced': { + _original: { + $value: '/icon/radar--enhanced.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.router--voice', - '$type': 'link', - '$value': '/icon/router--voice.svg', + id: 'icon.radar--enhanced', + $type: 'link', + $value: '/icon/radar--enhanced.svg', }, - 'icon.router--wifi': { - '_original': { - '$value': '/icon/router--wifi.svg', + 'icon.radar--weather': { + _original: { + $value: '/icon/radar--weather.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.router--wifi', - '$type': 'link', - '$value': '/icon/router--wifi.svg', + id: 'icon.radar--weather', + $type: 'link', + $value: '/icon/radar--weather.svg', }, - 'icon.row': { - '_original': { - '$value': '/icon/row.svg', + 'icon.radio': { + _original: { + $value: '/icon/radio.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.row', - '$type': 'link', - '$value': '/icon/row.svg', + id: 'icon.radio', + $type: 'link', + $value: '/icon/radio.svg', }, - 'icon.row--collapse': { - '_original': { - '$value': '/icon/row--collapse.svg', + 'icon.radio--combat': { + _original: { + $value: '/icon/radio--combat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.row--collapse', - '$type': 'link', - '$value': '/icon/row--collapse.svg', + id: 'icon.radio--combat', + $type: 'link', + $value: '/icon/radio--combat.svg', }, - 'icon.row--delete': { - '_original': { - '$value': '/icon/row--delete.svg', + 'icon.radio--push-to-talk': { + _original: { + $value: '/icon/radio--push-to-talk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.row--delete', - '$type': 'link', - '$value': '/icon/row--delete.svg', + id: 'icon.radio--push-to-talk', + $type: 'link', + $value: '/icon/radio--push-to-talk.svg', }, - 'icon.row--expand': { - '_original': { - '$value': '/icon/row--expand.svg', + 'icon.radio-button': { + _original: { + $value: '/icon/radio-button.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.row--expand', - '$type': 'link', - '$value': '/icon/row--expand.svg', + id: 'icon.radio-button', + $type: 'link', + $value: '/icon/radio-button.svg', }, - 'icon.row--insert': { - '_original': { - '$value': '/icon/row--insert.svg', + 'icon.radio-button--checked': { + _original: { + $value: '/icon/radio-button--checked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.row--insert', - '$type': 'link', - '$value': '/icon/row--insert.svg', + id: 'icon.radio-button--checked', + $type: 'link', + $value: '/icon/radio-button--checked.svg', }, - 'icon.rss': { - '_original': { - '$value': '/icon/rss.svg', + 'icon.rain': { + _original: { + $value: '/icon/rain.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rss', - '$type': 'link', - '$value': '/icon/rss.svg', + id: 'icon.rain', + $type: 'link', + $value: '/icon/rain.svg', }, - 'icon.rule': { - '_original': { - '$value': '/icon/rule.svg', + 'icon.rain--drizzle': { + _original: { + $value: '/icon/rain--drizzle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rule', - '$type': 'link', - '$value': '/icon/rule.svg', + id: 'icon.rain--drizzle', + $type: 'link', + $value: '/icon/rain--drizzle.svg', }, - 'icon.rule--cancelled': { - '_original': { - '$value': '/icon/rule--cancelled.svg', + 'icon.rain--heavy': { + _original: { + $value: '/icon/rain--heavy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rule--cancelled', - '$type': 'link', - '$value': '/icon/rule--cancelled.svg', + id: 'icon.rain--heavy', + $type: 'link', + $value: '/icon/rain--heavy.svg', }, - 'icon.rule--draft': { - '_original': { - '$value': '/icon/rule--draft.svg', + 'icon.rain--scattered': { + _original: { + $value: '/icon/rain--scattered.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rule--draft', - '$type': 'link', - '$value': '/icon/rule--draft.svg', + id: 'icon.rain--scattered', + $type: 'link', + $value: '/icon/rain--scattered.svg', }, - 'icon.rule--filled': { - '_original': { - '$value': '/icon/rule--filled.svg', + 'icon.rain--scattered--night': { + _original: { + $value: '/icon/rain--scattered--night.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rule--filled', - '$type': 'link', - '$value': '/icon/rule--filled.svg', + id: 'icon.rain--scattered--night', + $type: 'link', + $value: '/icon/rain--scattered--night.svg', }, - 'icon.rule--test': { - '_original': { - '$value': '/icon/rule--test.svg', + 'icon.rain-drop': { + _original: { + $value: '/icon/rain-drop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.rule--test', - '$type': 'link', - '$value': '/icon/rule--test.svg', + id: 'icon.rain-drop', + $type: 'link', + $value: '/icon/rain-drop.svg', }, - 'icon.ruler': { - '_original': { - '$value': '/icon/ruler.svg', + 'icon.RAW': { + _original: { + $value: '/icon/RAW.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ruler', - '$type': 'link', - '$value': '/icon/ruler.svg', + id: 'icon.RAW', + $type: 'link', + $value: '/icon/RAW.svg', }, - 'icon.ruler--alt': { - '_original': { - '$value': '/icon/ruler--alt.svg', + 'icon.receipt': { + _original: { + $value: '/icon/receipt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ruler--alt', - '$type': 'link', - '$value': '/icon/ruler--alt.svg', + id: 'icon.receipt', + $type: 'link', + $value: '/icon/receipt.svg', }, - 'icon.run': { - '_original': { - '$value': '/icon/run.svg', + 'icon.recently-viewed': { + _original: { + $value: '/icon/recently-viewed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.run', - '$type': 'link', - '$value': '/icon/run.svg', + id: 'icon.recently-viewed', + $type: 'link', + $value: '/icon/recently-viewed.svg', }, - 'icon.S': { - '_original': { - '$value': '/icon/S.svg', + 'icon.recommend': { + _original: { + $value: '/icon/recommend.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.S', - '$type': 'link', - '$value': '/icon/S.svg', + id: 'icon.recommend', + $type: 'link', + $value: '/icon/recommend.svg', }, - 'icon.S--alt': { - '_original': { - '$value': '/icon/S--alt.svg', + 'icon.recording': { + _original: { + $value: '/icon/recording.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.S--alt', - '$type': 'link', - '$value': '/icon/S--alt.svg', + id: 'icon.recording', + $type: 'link', + $value: '/icon/recording.svg', }, - 'icon.sailboat--coastal': { - '_original': { - '$value': '/icon/sailboat--coastal.svg', + 'icon.recording--filled': { + _original: { + $value: '/icon/recording--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sailboat--coastal', - '$type': 'link', - '$value': '/icon/sailboat--coastal.svg', + id: 'icon.recording--filled', + $type: 'link', + $value: '/icon/recording--filled.svg', }, - 'icon.sailboat--offshore': { - '_original': { - '$value': '/icon/sailboat--offshore.svg', + 'icon.recording--filled--alt': { + _original: { + $value: '/icon/recording--filled--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sailboat--offshore', - '$type': 'link', - '$value': '/icon/sailboat--offshore.svg', + id: 'icon.recording--filled--alt', + $type: 'link', + $value: '/icon/recording--filled--alt.svg', }, - 'icon.sankey-diagram': { - '_original': { - '$value': '/icon/sankey-diagram.svg', + 'icon.redo': { + _original: { + $value: '/icon/redo.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sankey-diagram', - '$type': 'link', - '$value': '/icon/sankey-diagram.svg', + id: 'icon.redo', + $type: 'link', + $value: '/icon/redo.svg', }, - 'icon.sankey-diagram--alt': { - '_original': { - '$value': '/icon/sankey-diagram--alt.svg', + 'icon.ref-evapotranspiration': { + _original: { + $value: '/icon/ref-evapotranspiration.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sankey-diagram--alt', - '$type': 'link', - '$value': '/icon/sankey-diagram--alt.svg', + id: 'icon.ref-evapotranspiration', + $type: 'link', + $value: '/icon/ref-evapotranspiration.svg', }, - 'icon.satellite': { - '_original': { - '$value': '/icon/satellite.svg', + 'icon.reflect--horizontal': { + _original: { + $value: '/icon/reflect--horizontal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.satellite', - '$type': 'link', - '$value': '/icon/satellite.svg', + id: 'icon.reflect--horizontal', + $type: 'link', + $value: '/icon/reflect--horizontal.svg', }, - 'icon.satellite--radar': { - '_original': { - '$value': '/icon/satellite--radar.svg', + 'icon.reflect--vertical': { + _original: { + $value: '/icon/reflect--vertical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.satellite--radar', - '$type': 'link', - '$value': '/icon/satellite--radar.svg', + id: 'icon.reflect--vertical', + $type: 'link', + $value: '/icon/reflect--vertical.svg', }, - 'icon.satellite--weather': { - '_original': { - '$value': '/icon/satellite--weather.svg', + 'icon.region-analysis--area': { + _original: { + $value: '/icon/region-analysis--area.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.satellite--weather', - '$type': 'link', - '$value': '/icon/satellite--weather.svg', + id: 'icon.region-analysis--area', + $type: 'link', + $value: '/icon/region-analysis--area.svg', }, - 'icon.save': { - '_original': { - '$value': '/icon/save.svg', + 'icon.region-analysis--volume': { + _original: { + $value: '/icon/region-analysis--volume.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.save', - '$type': 'link', - '$value': '/icon/save.svg', + id: 'icon.region-analysis--volume', + $type: 'link', + $value: '/icon/region-analysis--volume.svg', }, - 'icon.save--annotation': { - '_original': { - '$value': '/icon/save--annotation.svg', + 'icon.registration': { + _original: { + $value: '/icon/registration.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.save--annotation', - '$type': 'link', - '$value': '/icon/save--annotation.svg', + id: 'icon.registration', + $type: 'link', + $value: '/icon/registration.svg', }, - 'icon.save--image': { - '_original': { - '$value': '/icon/save--image.svg', + 'icon.reminder': { + _original: { + $value: '/icon/reminder.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.save--image', - '$type': 'link', - '$value': '/icon/save--image.svg', + id: 'icon.reminder', + $type: 'link', + $value: '/icon/reminder.svg', }, - 'icon.save--model': { - '_original': { - '$value': '/icon/save--model.svg', + 'icon.reminder--medical': { + _original: { + $value: '/icon/reminder--medical.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.save--model', - '$type': 'link', - '$value': '/icon/save--model.svg', + id: 'icon.reminder--medical', + $type: 'link', + $value: '/icon/reminder--medical.svg', }, - 'icon.save--series': { - '_original': { - '$value': '/icon/save--series.svg', + 'icon.renew': { + _original: { + $value: '/icon/renew.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.save--series', - '$type': 'link', - '$value': '/icon/save--series.svg', + id: 'icon.renew', + $type: 'link', + $value: '/icon/renew.svg', }, - 'icon.scale': { - '_original': { - '$value': '/icon/scale.svg', + 'icon.repeat': { + _original: { + $value: '/icon/repeat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scale', - '$type': 'link', - '$value': '/icon/scale.svg', + id: 'icon.repeat', + $type: 'link', + $value: '/icon/repeat.svg', }, - 'icon.scales': { - '_original': { - '$value': '/icon/scales.svg', + 'icon.repeat--one': { + _original: { + $value: '/icon/repeat--one.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scales', - '$type': 'link', - '$value': '/icon/scales.svg', + id: 'icon.repeat--one', + $type: 'link', + $value: '/icon/repeat--one.svg', }, - 'icon.scales--tipped': { - '_original': { - '$value': '/icon/scales--tipped.svg', + 'icon.replicate': { + _original: { + $value: '/icon/replicate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scales--tipped', - '$type': 'link', - '$value': '/icon/scales--tipped.svg', + id: 'icon.replicate', + $type: 'link', + $value: '/icon/replicate.svg', }, - 'icon.scalpel': { - '_original': { - '$value': '/icon/scalpel.svg', + 'icon.reply': { + _original: { + $value: '/icon/reply.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scalpel', - '$type': 'link', - '$value': '/icon/scalpel.svg', + id: 'icon.reply', + $type: 'link', + $value: '/icon/reply.svg', }, - 'icon.scalpel--cursor': { - '_original': { - '$value': '/icon/scalpel--cursor.svg', + 'icon.reply--all': { + _original: { + $value: '/icon/reply--all.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scalpel--cursor', - '$type': 'link', - '$value': '/icon/scalpel--cursor.svg', + id: 'icon.reply--all', + $type: 'link', + $value: '/icon/reply--all.svg', }, - 'icon.scalpel--lasso': { - '_original': { - '$value': '/icon/scalpel--lasso.svg', + 'icon.report': { + _original: { + $value: '/icon/report.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scalpel--lasso', - '$type': 'link', - '$value': '/icon/scalpel--lasso.svg', + id: 'icon.report', + $type: 'link', + $value: '/icon/report.svg', }, - 'icon.scalpel--select': { - '_original': { - '$value': '/icon/scalpel--select.svg', + 'icon.report--data': { + _original: { + $value: '/icon/report--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scalpel--select', - '$type': 'link', - '$value': '/icon/scalpel--select.svg', + id: 'icon.report--data', + $type: 'link', + $value: '/icon/report--data.svg', }, - 'icon.scan': { - '_original': { - '$value': '/icon/scan.svg', + 'icon.request-quote': { + _original: { + $value: '/icon/request-quote.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scan', - '$type': 'link', - '$value': '/icon/scan.svg', + id: 'icon.request-quote', + $type: 'link', + $value: '/icon/request-quote.svg', }, - 'icon.scan--alt': { - '_original': { - '$value': '/icon/scan--alt.svg', + 'icon.research--bloch-sphere': { + _original: { + $value: '/icon/research--bloch-sphere.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scan--alt', - '$type': 'link', - '$value': '/icon/scan--alt.svg', + id: 'icon.research--bloch-sphere', + $type: 'link', + $value: '/icon/research--bloch-sphere.svg', }, - 'icon.scan--disabled': { - '_original': { - '$value': '/icon/scan--disabled.svg', + 'icon.research--hinton-plot': { + _original: { + $value: '/icon/research--hinton-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scan--disabled', - '$type': 'link', - '$value': '/icon/scan--disabled.svg', + id: 'icon.research--hinton-plot', + $type: 'link', + $value: '/icon/research--hinton-plot.svg', }, - 'icon.scatter-matrix': { - '_original': { - '$value': '/icon/scatter-matrix.svg', + 'icon.research--matrix': { + _original: { + $value: '/icon/research--matrix.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scatter-matrix', - '$type': 'link', - '$value': '/icon/scatter-matrix.svg', + id: 'icon.research--matrix', + $type: 'link', + $value: '/icon/research--matrix.svg', }, - 'icon.schematics': { - '_original': { - '$value': '/icon/schematics.svg', + 'icon.reset': { + _original: { + $value: '/icon/reset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.schematics', - '$type': 'link', - '$value': '/icon/schematics.svg', + id: 'icon.reset', + $type: 'link', + $value: '/icon/reset.svg', }, - 'icon.scooter': { - '_original': { - '$value': '/icon/scooter.svg', + 'icon.reset--alt': { + _original: { + $value: '/icon/reset--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scooter', - '$type': 'link', - '$value': '/icon/scooter.svg', + id: 'icon.reset--alt', + $type: 'link', + $value: '/icon/reset--alt.svg', }, - 'icon.scooter--front': { - '_original': { - '$value': '/icon/scooter--front.svg', + 'icon.restart': { + _original: { + $value: '/icon/restart.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.scooter--front', - '$type': 'link', - '$value': '/icon/scooter--front.svg', + id: 'icon.restart', + $type: 'link', + $value: '/icon/restart.svg', }, - 'icon.screen': { - '_original': { - '$value': '/icon/screen.svg', + 'icon.restaurant': { + _original: { + $value: '/icon/restaurant.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.screen', - '$type': 'link', - '$value': '/icon/screen.svg', + id: 'icon.restaurant', + $type: 'link', + $value: '/icon/restaurant.svg', }, - 'icon.screen--off': { - '_original': { - '$value': '/icon/screen--off.svg', + 'icon.restaurant--fine': { + _original: { + $value: '/icon/restaurant--fine.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.screen--off', - '$type': 'link', - '$value': '/icon/screen--off.svg', + id: 'icon.restaurant--fine', + $type: 'link', + $value: '/icon/restaurant--fine.svg', }, - 'icon.script': { - '_original': { - '$value': '/icon/script.svg', + 'icon.result': { + _original: { + $value: '/icon/result.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.script', - '$type': 'link', - '$value': '/icon/script.svg', + id: 'icon.result', + $type: 'link', + $value: '/icon/result.svg', }, - 'icon.script--reference': { - '_original': { - '$value': '/icon/script--reference.svg', + 'icon.result--new': { + _original: { + $value: '/icon/result--new.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.script--reference', - '$type': 'link', - '$value': '/icon/script--reference.svg', + id: 'icon.result--new', + $type: 'link', + $value: '/icon/result--new.svg', }, - 'icon.SDK': { - '_original': { - '$value': '/icon/SDK.svg', + 'icon.result--old': { + _original: { + $value: '/icon/result--old.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.SDK', - '$type': 'link', - '$value': '/icon/SDK.svg', + id: 'icon.result--old', + $type: 'link', + $value: '/icon/result--old.svg', }, - 'icon.search': { - '_original': { - '$value': '/icon/search.svg', + 'icon.retry--failed': { + _original: { + $value: '/icon/retry--failed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.search', - '$type': 'link', - '$value': '/icon/search.svg', + id: 'icon.retry--failed', + $type: 'link', + $value: '/icon/retry--failed.svg', }, - 'icon.search--advanced': { - '_original': { - '$value': '/icon/search--advanced.svg', + 'icon.review': { + _original: { + $value: '/icon/review.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.search--advanced', - '$type': 'link', - '$value': '/icon/search--advanced.svg', + id: 'icon.review', + $type: 'link', + $value: '/icon/review.svg', }, - 'icon.search--locate': { - '_original': { - '$value': '/icon/search--locate.svg', + 'icon.rewind--5': { + _original: { + $value: '/icon/rewind--5.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.search--locate', - '$type': 'link', - '$value': '/icon/search--locate.svg', + id: 'icon.rewind--5', + $type: 'link', + $value: '/icon/rewind--5.svg', }, - 'icon.security': { - '_original': { - '$value': '/icon/security.svg', + 'icon.rewind--10': { + _original: { + $value: '/icon/rewind--10.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.security', - '$type': 'link', - '$value': '/icon/security.svg', + id: 'icon.rewind--10', + $type: 'link', + $value: '/icon/rewind--10.svg', }, - 'icon.security-services': { - '_original': { - '$value': '/icon/security-services.svg', + 'icon.rewind--30': { + _original: { + $value: '/icon/rewind--30.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.security-services', - '$type': 'link', - '$value': '/icon/security-services.svg', + id: 'icon.rewind--30', + $type: 'link', + $value: '/icon/rewind--30.svg', }, - 'icon.select--01': { - '_original': { - '$value': '/icon/select--01.svg', + 'icon.road': { + _original: { + $value: '/icon/road.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.select--01', - '$type': 'link', - '$value': '/icon/select--01.svg', + id: 'icon.road', + $type: 'link', + $value: '/icon/road.svg', }, - 'icon.select--02': { - '_original': { - '$value': '/icon/select--02.svg', + 'icon.road--weather': { + _original: { + $value: '/icon/road--weather.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.select--02', - '$type': 'link', - '$value': '/icon/select--02.svg', + id: 'icon.road--weather', + $type: 'link', + $value: '/icon/road--weather.svg', }, - 'icon.select--window': { - '_original': { - '$value': '/icon/select--window.svg', + 'icon.roadmap': { + _original: { + $value: '/icon/roadmap.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.select--window', - '$type': 'link', - '$value': '/icon/select--window.svg', + id: 'icon.roadmap', + $type: 'link', + $value: '/icon/roadmap.svg', }, - 'icon.send': { - '_original': { - '$value': '/icon/send.svg', + 'icon.rocket': { + _original: { + $value: '/icon/rocket.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.send', - '$type': 'link', - '$value': '/icon/send.svg', + id: 'icon.rocket', + $type: 'link', + $value: '/icon/rocket.svg', }, - 'icon.send--alt': { - '_original': { - '$value': '/icon/send--alt.svg', + 'icon.rotate': { + _original: { + $value: '/icon/rotate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.send--alt', - '$type': 'link', - '$value': '/icon/send--alt.svg', + id: 'icon.rotate', + $type: 'link', + $value: '/icon/rotate.svg', }, - 'icon.send--alt--filled': { - '_original': { - '$value': '/icon/send--alt--filled.svg', + 'icon.rotate--180': { + _original: { + $value: '/icon/rotate--180.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.send--alt--filled', - '$type': 'link', - '$value': '/icon/send--alt--filled.svg', + id: 'icon.rotate--180', + $type: 'link', + $value: '/icon/rotate--180.svg', }, - 'icon.send--filled': { - '_original': { - '$value': '/icon/send--filled.svg', + 'icon.rotate--360': { + _original: { + $value: '/icon/rotate--360.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.send--filled', - '$type': 'link', - '$value': '/icon/send--filled.svg', + id: 'icon.rotate--360', + $type: 'link', + $value: '/icon/rotate--360.svg', }, - 'icon.send-backward': { - '_original': { - '$value': '/icon/send-backward.svg', + 'icon.rotate--clockwise': { + _original: { + $value: '/icon/rotate--clockwise.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.send-backward', - '$type': 'link', - '$value': '/icon/send-backward.svg', + id: 'icon.rotate--clockwise', + $type: 'link', + $value: '/icon/rotate--clockwise.svg', }, - 'icon.send-to-back': { - '_original': { - '$value': '/icon/send-to-back.svg', + 'icon.rotate--clockwise--alt': { + _original: { + $value: '/icon/rotate--clockwise--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.send-to-back', - '$type': 'link', - '$value': '/icon/send-to-back.svg', + id: 'icon.rotate--clockwise--alt', + $type: 'link', + $value: '/icon/rotate--clockwise--alt.svg', }, - 'icon.server--dns': { - '_original': { - '$value': '/icon/server--dns.svg', + 'icon.rotate--clockwise--alt--filled': { + _original: { + $value: '/icon/rotate--clockwise--alt--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.server--dns', - '$type': 'link', - '$value': '/icon/server--dns.svg', + id: 'icon.rotate--clockwise--alt--filled', + $type: 'link', + $value: '/icon/rotate--clockwise--alt--filled.svg', }, - 'icon.server--proxy': { - '_original': { - '$value': '/icon/server--proxy.svg', + 'icon.rotate--clockwise--filled': { + _original: { + $value: '/icon/rotate--clockwise--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.server--proxy', - '$type': 'link', - '$value': '/icon/server--proxy.svg', + id: 'icon.rotate--clockwise--filled', + $type: 'link', + $value: '/icon/rotate--clockwise--filled.svg', }, - 'icon.server--time': { - '_original': { - '$value': '/icon/server--time.svg', + 'icon.rotate--counterclockwise': { + _original: { + $value: '/icon/rotate--counterclockwise.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.server--time', - '$type': 'link', - '$value': '/icon/server--time.svg', + id: 'icon.rotate--counterclockwise', + $type: 'link', + $value: '/icon/rotate--counterclockwise.svg', }, - 'icon.service-desk': { - '_original': { - '$value': '/icon/service-desk.svg', + 'icon.rotate--counterclockwise--alt': { + _original: { + $value: '/icon/rotate--counterclockwise--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.service-desk', - '$type': 'link', - '$value': '/icon/service-desk.svg', + id: 'icon.rotate--counterclockwise--alt', + $type: 'link', + $value: '/icon/rotate--counterclockwise--alt.svg', }, - 'icon.session-border-control': { - '_original': { - '$value': '/icon/session-border-control.svg', + 'icon.rotate--counterclockwise--alt--filled': { + _original: { + $value: '/icon/rotate--counterclockwise--alt--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.session-border-control', - '$type': 'link', - '$value': '/icon/session-border-control.svg', + id: 'icon.rotate--counterclockwise--alt--filled', + $type: 'link', + $value: '/icon/rotate--counterclockwise--alt--filled.svg', }, - 'icon.settings': { - '_original': { - '$value': '/icon/settings.svg', + 'icon.rotate--counterclockwise--filled': { + _original: { + $value: '/icon/rotate--counterclockwise--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.settings', - '$type': 'link', - '$value': '/icon/settings.svg', + id: 'icon.rotate--counterclockwise--filled', + $type: 'link', + $value: '/icon/rotate--counterclockwise--filled.svg', }, - 'icon.settings--adjust': { - '_original': { - '$value': '/icon/settings--adjust.svg', + 'icon.router': { + _original: { + $value: '/icon/router.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.settings--adjust', - '$type': 'link', - '$value': '/icon/settings--adjust.svg', + id: 'icon.router', + $type: 'link', + $value: '/icon/router.svg', }, - 'icon.settings--check': { - '_original': { - '$value': '/icon/settings--check.svg', + 'icon.router--voice': { + _original: { + $value: '/icon/router--voice.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.settings--check', - '$type': 'link', - '$value': '/icon/settings--check.svg', + id: 'icon.router--voice', + $type: 'link', + $value: '/icon/router--voice.svg', }, - 'icon.settings--services': { - '_original': { - '$value': '/icon/settings--services.svg', + 'icon.router--wifi': { + _original: { + $value: '/icon/router--wifi.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.settings--services', - '$type': 'link', - '$value': '/icon/settings--services.svg', + id: 'icon.router--wifi', + $type: 'link', + $value: '/icon/router--wifi.svg', }, - 'icon.settings--view': { - '_original': { - '$value': '/icon/settings--view.svg', + 'icon.row': { + _original: { + $value: '/icon/row.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.settings--view', - '$type': 'link', - '$value': '/icon/settings--view.svg', + id: 'icon.row', + $type: 'link', + $value: '/icon/row.svg', }, - 'icon.shape--except': { - '_original': { - '$value': '/icon/shape--except.svg', + 'icon.row--collapse': { + _original: { + $value: '/icon/row--collapse.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shape--except', - '$type': 'link', - '$value': '/icon/shape--except.svg', + id: 'icon.row--collapse', + $type: 'link', + $value: '/icon/row--collapse.svg', }, - 'icon.shape--exclude': { - '_original': { - '$value': '/icon/shape--exclude.svg', + 'icon.row--delete': { + _original: { + $value: '/icon/row--delete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shape--exclude', - '$type': 'link', - '$value': '/icon/shape--exclude.svg', + id: 'icon.row--delete', + $type: 'link', + $value: '/icon/row--delete.svg', }, - 'icon.shape--intersect': { - '_original': { - '$value': '/icon/shape--intersect.svg', + 'icon.row--expand': { + _original: { + $value: '/icon/row--expand.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shape--intersect', - '$type': 'link', - '$value': '/icon/shape--intersect.svg', + id: 'icon.row--expand', + $type: 'link', + $value: '/icon/row--expand.svg', }, - 'icon.shape--join': { - '_original': { - '$value': '/icon/shape--join.svg', + 'icon.row--insert': { + _original: { + $value: '/icon/row--insert.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shape--join', - '$type': 'link', - '$value': '/icon/shape--join.svg', + id: 'icon.row--insert', + $type: 'link', + $value: '/icon/row--insert.svg', }, - 'icon.shape--unite': { - '_original': { - '$value': '/icon/shape--unite.svg', + 'icon.rss': { + _original: { + $value: '/icon/rss.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shape--unite', - '$type': 'link', - '$value': '/icon/shape--unite.svg', + id: 'icon.rss', + $type: 'link', + $value: '/icon/rss.svg', }, - 'icon.share': { - '_original': { - '$value': '/icon/share.svg', + 'icon.rule': { + _original: { + $value: '/icon/rule.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.share', - '$type': 'link', - '$value': '/icon/share.svg', + id: 'icon.rule', + $type: 'link', + $value: '/icon/rule.svg', }, - 'icon.share-knowledge': { - '_original': { - '$value': '/icon/share-knowledge.svg', + 'icon.rule--cancelled': { + _original: { + $value: '/icon/rule--cancelled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.share-knowledge', - '$type': 'link', - '$value': '/icon/share-knowledge.svg', + id: 'icon.rule--cancelled', + $type: 'link', + $value: '/icon/rule--cancelled.svg', }, - 'icon.shopping--bag': { - '_original': { - '$value': '/icon/shopping--bag.svg', + 'icon.rule--draft': { + _original: { + $value: '/icon/rule--draft.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--bag', - '$type': 'link', - '$value': '/icon/shopping--bag.svg', + id: 'icon.rule--draft', + $type: 'link', + $value: '/icon/rule--draft.svg', }, - 'icon.shopping--cart': { - '_original': { - '$value': '/icon/shopping--cart.svg', + 'icon.rule--filled': { + _original: { + $value: '/icon/rule--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart', - '$type': 'link', - '$value': '/icon/shopping--cart.svg', + id: 'icon.rule--filled', + $type: 'link', + $value: '/icon/rule--filled.svg', }, - 'icon.shopping--cart--arrow-down': { - '_original': { - '$value': '/icon/shopping--cart--arrow-down.svg', + 'icon.rule--test': { + _original: { + $value: '/icon/rule--test.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart--arrow-down', - '$type': 'link', - '$value': '/icon/shopping--cart--arrow-down.svg', + id: 'icon.rule--test', + $type: 'link', + $value: '/icon/rule--test.svg', }, - 'icon.shopping--cart--arrow-up': { - '_original': { - '$value': '/icon/shopping--cart--arrow-up.svg', + 'icon.ruler': { + _original: { + $value: '/icon/ruler.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart--arrow-up', - '$type': 'link', - '$value': '/icon/shopping--cart--arrow-up.svg', + id: 'icon.ruler', + $type: 'link', + $value: '/icon/ruler.svg', }, - 'icon.shopping--cart--clear': { - '_original': { - '$value': '/icon/shopping--cart--clear.svg', + 'icon.ruler--alt': { + _original: { + $value: '/icon/ruler--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart--clear', - '$type': 'link', - '$value': '/icon/shopping--cart--clear.svg', + id: 'icon.ruler--alt', + $type: 'link', + $value: '/icon/ruler--alt.svg', }, - 'icon.shopping--cart--error': { - '_original': { - '$value': '/icon/shopping--cart--error.svg', + 'icon.run': { + _original: { + $value: '/icon/run.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart--error', - '$type': 'link', - '$value': '/icon/shopping--cart--error.svg', + id: 'icon.run', + $type: 'link', + $value: '/icon/run.svg', }, - 'icon.shopping--cart--minus': { - '_original': { - '$value': '/icon/shopping--cart--minus.svg', + 'icon.S': { + _original: { + $value: '/icon/S.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart--minus', - '$type': 'link', - '$value': '/icon/shopping--cart--minus.svg', + id: 'icon.S', + $type: 'link', + $value: '/icon/S.svg', }, - 'icon.shopping--cart--plus': { - '_original': { - '$value': '/icon/shopping--cart--plus.svg', + 'icon.S--alt': { + _original: { + $value: '/icon/S--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--cart--plus', - '$type': 'link', - '$value': '/icon/shopping--cart--plus.svg', + id: 'icon.S--alt', + $type: 'link', + $value: '/icon/S--alt.svg', }, - 'icon.shopping--catalog': { - '_original': { - '$value': '/icon/shopping--catalog.svg', + 'icon.sailboat--coastal': { + _original: { + $value: '/icon/sailboat--coastal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shopping--catalog', - '$type': 'link', - '$value': '/icon/shopping--catalog.svg', + id: 'icon.sailboat--coastal', + $type: 'link', + $value: '/icon/sailboat--coastal.svg', }, - 'icon.show-data--cards': { - '_original': { - '$value': '/icon/show-data--cards.svg', + 'icon.sailboat--offshore': { + _original: { + $value: '/icon/sailboat--offshore.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.show-data--cards', - '$type': 'link', - '$value': '/icon/show-data--cards.svg', + id: 'icon.sailboat--offshore', + $type: 'link', + $value: '/icon/sailboat--offshore.svg', }, - 'icon.shrink-screen': { - '_original': { - '$value': '/icon/shrink-screen.svg', + 'icon.sankey-diagram': { + _original: { + $value: '/icon/sankey-diagram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shrink-screen', - '$type': 'link', - '$value': '/icon/shrink-screen.svg', + id: 'icon.sankey-diagram', + $type: 'link', + $value: '/icon/sankey-diagram.svg', }, - 'icon.shrink-screen--filled': { - '_original': { - '$value': '/icon/shrink-screen--filled.svg', + 'icon.sankey-diagram--alt': { + _original: { + $value: '/icon/sankey-diagram--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shrink-screen--filled', - '$type': 'link', - '$value': '/icon/shrink-screen--filled.svg', + id: 'icon.sankey-diagram--alt', + $type: 'link', + $value: '/icon/sankey-diagram--alt.svg', }, - 'icon.shuffle': { - '_original': { - '$value': '/icon/shuffle.svg', + 'icon.satellite': { + _original: { + $value: '/icon/satellite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shuffle', - '$type': 'link', - '$value': '/icon/shuffle.svg', + id: 'icon.satellite', + $type: 'link', + $value: '/icon/satellite.svg', }, - 'icon.shuttle': { - '_original': { - '$value': '/icon/shuttle.svg', + 'icon.satellite--radar': { + _original: { + $value: '/icon/satellite--radar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.shuttle', - '$type': 'link', - '$value': '/icon/shuttle.svg', + id: 'icon.satellite--radar', + $type: 'link', + $value: '/icon/satellite--radar.svg', }, - 'icon.sight': { - '_original': { - '$value': '/icon/sight.svg', + 'icon.satellite--weather': { + _original: { + $value: '/icon/satellite--weather.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sight', - '$type': 'link', - '$value': '/icon/sight.svg', + id: 'icon.satellite--weather', + $type: 'link', + $value: '/icon/satellite--weather.svg', }, - 'icon.sigma': { - '_original': { - '$value': '/icon/sigma.svg', + 'icon.save': { + _original: { + $value: '/icon/save.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sigma', - '$type': 'link', - '$value': '/icon/sigma.svg', + id: 'icon.save', + $type: 'link', + $value: '/icon/save.svg', }, - 'icon.signal-strength': { - '_original': { - '$value': '/icon/signal-strength.svg', + 'icon.save--annotation': { + _original: { + $value: '/icon/save--annotation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.signal-strength', - '$type': 'link', - '$value': '/icon/signal-strength.svg', + id: 'icon.save--annotation', + $type: 'link', + $value: '/icon/save--annotation.svg', }, - 'icon.sim-card': { - '_original': { - '$value': '/icon/sim-card.svg', + 'icon.save--image': { + _original: { + $value: '/icon/save--image.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sim-card', - '$type': 'link', - '$value': '/icon/sim-card.svg', + id: 'icon.save--image', + $type: 'link', + $value: '/icon/save--image.svg', }, - 'icon.skill-level': { - '_original': { - '$value': '/icon/skill-level.svg', + 'icon.save--model': { + _original: { + $value: '/icon/save--model.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skill-level', - '$type': 'link', - '$value': '/icon/skill-level.svg', + id: 'icon.save--model', + $type: 'link', + $value: '/icon/save--model.svg', }, - 'icon.skill-level--advanced': { - '_original': { - '$value': '/icon/skill-level--advanced.svg', + 'icon.save--series': { + _original: { + $value: '/icon/save--series.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skill-level--advanced', - '$type': 'link', - '$value': '/icon/skill-level--advanced.svg', + id: 'icon.save--series', + $type: 'link', + $value: '/icon/save--series.svg', }, - 'icon.skill-level--basic': { - '_original': { - '$value': '/icon/skill-level--basic.svg', + 'icon.scale': { + _original: { + $value: '/icon/scale.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skill-level--basic', - '$type': 'link', - '$value': '/icon/skill-level--basic.svg', + id: 'icon.scale', + $type: 'link', + $value: '/icon/scale.svg', }, - 'icon.skill-level--intermediate': { - '_original': { - '$value': '/icon/skill-level--intermediate.svg', + 'icon.scales': { + _original: { + $value: '/icon/scales.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skill-level--intermediate', - '$type': 'link', - '$value': '/icon/skill-level--intermediate.svg', + id: 'icon.scales', + $type: 'link', + $value: '/icon/scales.svg', }, - 'icon.skip--back': { - '_original': { - '$value': '/icon/skip--back.svg', + 'icon.scales--tipped': { + _original: { + $value: '/icon/scales--tipped.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--back', - '$type': 'link', - '$value': '/icon/skip--back.svg', + id: 'icon.scales--tipped', + $type: 'link', + $value: '/icon/scales--tipped.svg', }, - 'icon.skip--back--filled': { - '_original': { - '$value': '/icon/skip--back--filled.svg', + 'icon.scalpel': { + _original: { + $value: '/icon/scalpel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--back--filled', - '$type': 'link', - '$value': '/icon/skip--back--filled.svg', + id: 'icon.scalpel', + $type: 'link', + $value: '/icon/scalpel.svg', }, - 'icon.skip--back--outline': { - '_original': { - '$value': '/icon/skip--back--outline.svg', + 'icon.scalpel--cursor': { + _original: { + $value: '/icon/scalpel--cursor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--back--outline', - '$type': 'link', - '$value': '/icon/skip--back--outline.svg', + id: 'icon.scalpel--cursor', + $type: 'link', + $value: '/icon/scalpel--cursor.svg', }, - 'icon.skip--back--outline--filled': { - '_original': { - '$value': '/icon/skip--back--outline--filled.svg', + 'icon.scalpel--lasso': { + _original: { + $value: '/icon/scalpel--lasso.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--back--outline--filled', - '$type': 'link', - '$value': '/icon/skip--back--outline--filled.svg', + id: 'icon.scalpel--lasso', + $type: 'link', + $value: '/icon/scalpel--lasso.svg', }, - 'icon.skip--back--outline--solid': { - '_original': { - '$value': '/icon/skip--back--outline--solid.svg', + 'icon.scalpel--select': { + _original: { + $value: '/icon/scalpel--select.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--back--outline--solid', - '$type': 'link', - '$value': '/icon/skip--back--outline--solid.svg', + id: 'icon.scalpel--select', + $type: 'link', + $value: '/icon/scalpel--select.svg', }, - 'icon.skip--back--solid--filled': { - '_original': { - '$value': '/icon/skip--back--solid--filled.svg', + 'icon.scan': { + _original: { + $value: '/icon/scan.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--back--solid--filled', - '$type': 'link', - '$value': '/icon/skip--back--solid--filled.svg', + id: 'icon.scan', + $type: 'link', + $value: '/icon/scan.svg', }, - 'icon.skip--forward': { - '_original': { - '$value': '/icon/skip--forward.svg', + 'icon.scan--alt': { + _original: { + $value: '/icon/scan--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--forward', - '$type': 'link', - '$value': '/icon/skip--forward.svg', + id: 'icon.scan--alt', + $type: 'link', + $value: '/icon/scan--alt.svg', }, - 'icon.skip--forward--filled': { - '_original': { - '$value': '/icon/skip--forward--filled.svg', + 'icon.scan--disabled': { + _original: { + $value: '/icon/scan--disabled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--forward--filled', - '$type': 'link', - '$value': '/icon/skip--forward--filled.svg', + id: 'icon.scan--disabled', + $type: 'link', + $value: '/icon/scan--disabled.svg', }, - 'icon.skip--forward--outline': { - '_original': { - '$value': '/icon/skip--forward--outline.svg', + 'icon.scatter-matrix': { + _original: { + $value: '/icon/scatter-matrix.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--forward--outline', - '$type': 'link', - '$value': '/icon/skip--forward--outline.svg', + id: 'icon.scatter-matrix', + $type: 'link', + $value: '/icon/scatter-matrix.svg', }, - 'icon.skip--forward--outline--filled': { - '_original': { - '$value': '/icon/skip--forward--outline--filled.svg', + 'icon.schematics': { + _original: { + $value: '/icon/schematics.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--forward--outline--filled', - '$type': 'link', - '$value': '/icon/skip--forward--outline--filled.svg', + id: 'icon.schematics', + $type: 'link', + $value: '/icon/schematics.svg', }, - 'icon.skip--forward--outline--solid': { - '_original': { - '$value': '/icon/skip--forward--outline--solid.svg', + 'icon.scooter': { + _original: { + $value: '/icon/scooter.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--forward--outline--solid', - '$type': 'link', - '$value': '/icon/skip--forward--outline--solid.svg', + id: 'icon.scooter', + $type: 'link', + $value: '/icon/scooter.svg', }, - 'icon.skip--forward--solid--filled': { - '_original': { - '$value': '/icon/skip--forward--solid--filled.svg', + 'icon.scooter--front': { + _original: { + $value: '/icon/scooter--front.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.skip--forward--solid--filled', - '$type': 'link', - '$value': '/icon/skip--forward--solid--filled.svg', + id: 'icon.scooter--front', + $type: 'link', + $value: '/icon/scooter--front.svg', }, - 'icon.sleet': { - '_original': { - '$value': '/icon/sleet.svg', + 'icon.screen': { + _original: { + $value: '/icon/screen.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sleet', - '$type': 'link', - '$value': '/icon/sleet.svg', + id: 'icon.screen', + $type: 'link', + $value: '/icon/screen.svg', }, - 'icon.slisor': { - '_original': { - '$value': '/icon/slisor.svg', + 'icon.screen--off': { + _original: { + $value: '/icon/screen--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.slisor', - '$type': 'link', - '$value': '/icon/slisor.svg', + id: 'icon.screen--off', + $type: 'link', + $value: '/icon/screen--off.svg', }, - 'icon.smell': { - '_original': { - '$value': '/icon/smell.svg', + 'icon.script': { + _original: { + $value: '/icon/script.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.smell', - '$type': 'link', - '$value': '/icon/smell.svg', + id: 'icon.script', + $type: 'link', + $value: '/icon/script.svg', }, - 'icon.smoke': { - '_original': { - '$value': '/icon/smoke.svg', + 'icon.script--reference': { + _original: { + $value: '/icon/script--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.smoke', - '$type': 'link', - '$value': '/icon/smoke.svg', + id: 'icon.script--reference', + $type: 'link', + $value: '/icon/script--reference.svg', }, - 'icon.smoothing': { - '_original': { - '$value': '/icon/smoothing.svg', + 'icon.SDK': { + _original: { + $value: '/icon/SDK.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.smoothing', - '$type': 'link', - '$value': '/icon/smoothing.svg', + id: 'icon.SDK', + $type: 'link', + $value: '/icon/SDK.svg', }, - 'icon.smoothing--cursor': { - '_original': { - '$value': '/icon/smoothing--cursor.svg', + 'icon.search': { + _original: { + $value: '/icon/search.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.smoothing--cursor', - '$type': 'link', - '$value': '/icon/smoothing--cursor.svg', + id: 'icon.search', + $type: 'link', + $value: '/icon/search.svg', }, - 'icon.snooze': { - '_original': { - '$value': '/icon/snooze.svg', + 'icon.search--advanced': { + _original: { + $value: '/icon/search--advanced.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snooze', - '$type': 'link', - '$value': '/icon/snooze.svg', + id: 'icon.search--advanced', + $type: 'link', + $value: '/icon/search--advanced.svg', }, - 'icon.snow': { - '_original': { - '$value': '/icon/snow.svg', + 'icon.search--locate': { + _original: { + $value: '/icon/search--locate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snow', - '$type': 'link', - '$value': '/icon/snow.svg', + id: 'icon.search--locate', + $type: 'link', + $value: '/icon/search--locate.svg', }, - 'icon.snow--blizzard': { - '_original': { - '$value': '/icon/snow--blizzard.svg', + 'icon.security': { + _original: { + $value: '/icon/security.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snow--blizzard', - '$type': 'link', - '$value': '/icon/snow--blizzard.svg', + id: 'icon.security', + $type: 'link', + $value: '/icon/security.svg', }, - 'icon.snow--heavy': { - '_original': { - '$value': '/icon/snow--heavy.svg', + 'icon.security-services': { + _original: { + $value: '/icon/security-services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snow--heavy', - '$type': 'link', - '$value': '/icon/snow--heavy.svg', + id: 'icon.security-services', + $type: 'link', + $value: '/icon/security-services.svg', }, - 'icon.snow--scattered': { - '_original': { - '$value': '/icon/snow--scattered.svg', + 'icon.select--01': { + _original: { + $value: '/icon/select--01.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snow--scattered', - '$type': 'link', - '$value': '/icon/snow--scattered.svg', + id: 'icon.select--01', + $type: 'link', + $value: '/icon/select--01.svg', }, - 'icon.snow--scattered--night': { - '_original': { - '$value': '/icon/snow--scattered--night.svg', + 'icon.select--02': { + _original: { + $value: '/icon/select--02.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snow--scattered--night', - '$type': 'link', - '$value': '/icon/snow--scattered--night.svg', + id: 'icon.select--02', + $type: 'link', + $value: '/icon/select--02.svg', }, - 'icon.snow-density': { - '_original': { - '$value': '/icon/snow-density.svg', + 'icon.select--window': { + _original: { + $value: '/icon/select--window.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snow-density', - '$type': 'link', - '$value': '/icon/snow-density.svg', + id: 'icon.select--window', + $type: 'link', + $value: '/icon/select--window.svg', }, - 'icon.snowflake': { - '_original': { - '$value': '/icon/snowflake.svg', + 'icon.send': { + _original: { + $value: '/icon/send.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.snowflake', - '$type': 'link', - '$value': '/icon/snowflake.svg', + id: 'icon.send', + $type: 'link', + $value: '/icon/send.svg', }, - 'icon.soccer': { - '_original': { - '$value': '/icon/soccer.svg', + 'icon.send--alt': { + _original: { + $value: '/icon/send--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soccer', - '$type': 'link', - '$value': '/icon/soccer.svg', + id: 'icon.send--alt', + $type: 'link', + $value: '/icon/send--alt.svg', }, - 'icon.soil-moisture': { - '_original': { - '$value': '/icon/soil-moisture.svg', + 'icon.send--alt--filled': { + _original: { + $value: '/icon/send--alt--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soil-moisture', - '$type': 'link', - '$value': '/icon/soil-moisture.svg', + id: 'icon.send--alt--filled', + $type: 'link', + $value: '/icon/send--alt--filled.svg', }, - 'icon.soil-moisture--field': { - '_original': { - '$value': '/icon/soil-moisture--field.svg', + 'icon.send--filled': { + _original: { + $value: '/icon/send--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soil-moisture--field', - '$type': 'link', - '$value': '/icon/soil-moisture--field.svg', + id: 'icon.send--filled', + $type: 'link', + $value: '/icon/send--filled.svg', }, - 'icon.soil-moisture--global': { - '_original': { - '$value': '/icon/soil-moisture--global.svg', + 'icon.send-backward': { + _original: { + $value: '/icon/send-backward.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soil-moisture--global', - '$type': 'link', - '$value': '/icon/soil-moisture--global.svg', + id: 'icon.send-backward', + $type: 'link', + $value: '/icon/send-backward.svg', }, - 'icon.soil-temperature': { - '_original': { - '$value': '/icon/soil-temperature.svg', + 'icon.send-to-back': { + _original: { + $value: '/icon/send-to-back.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soil-temperature', - '$type': 'link', - '$value': '/icon/soil-temperature.svg', + id: 'icon.send-to-back', + $type: 'link', + $value: '/icon/send-to-back.svg', }, - 'icon.soil-temperature--field': { - '_original': { - '$value': '/icon/soil-temperature--field.svg', + 'icon.server--dns': { + _original: { + $value: '/icon/server--dns.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soil-temperature--field', - '$type': 'link', - '$value': '/icon/soil-temperature--field.svg', + id: 'icon.server--dns', + $type: 'link', + $value: '/icon/server--dns.svg', }, - 'icon.soil-temperature--global': { - '_original': { - '$value': '/icon/soil-temperature--global.svg', + 'icon.server--proxy': { + _original: { + $value: '/icon/server--proxy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.soil-temperature--global', - '$type': 'link', - '$value': '/icon/soil-temperature--global.svg', + id: 'icon.server--proxy', + $type: 'link', + $value: '/icon/server--proxy.svg', }, - 'icon.solar-panel': { - '_original': { - '$value': '/icon/solar-panel.svg', + 'icon.server--time': { + _original: { + $value: '/icon/server--time.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.solar-panel', - '$type': 'link', - '$value': '/icon/solar-panel.svg', + id: 'icon.server--time', + $type: 'link', + $value: '/icon/server--time.svg', }, - 'icon.sort--ascending': { - '_original': { - '$value': '/icon/sort--ascending.svg', + 'icon.service-desk': { + _original: { + $value: '/icon/service-desk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sort--ascending', - '$type': 'link', - '$value': '/icon/sort--ascending.svg', + id: 'icon.service-desk', + $type: 'link', + $value: '/icon/service-desk.svg', }, - 'icon.sort--descending': { - '_original': { - '$value': '/icon/sort--descending.svg', + 'icon.session-border-control': { + _original: { + $value: '/icon/session-border-control.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sort--descending', - '$type': 'link', - '$value': '/icon/sort--descending.svg', + id: 'icon.session-border-control', + $type: 'link', + $value: '/icon/session-border-control.svg', }, - 'icon.spell-check': { - '_original': { - '$value': '/icon/spell-check.svg', + 'icon.settings': { + _original: { + $value: '/icon/settings.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.spell-check', - '$type': 'link', - '$value': '/icon/spell-check.svg', + id: 'icon.settings', + $type: 'link', + $value: '/icon/settings.svg', }, - 'icon.spine-label': { - '_original': { - '$value': '/icon/spine-label.svg', + 'icon.settings--adjust': { + _original: { + $value: '/icon/settings--adjust.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.spine-label', - '$type': 'link', - '$value': '/icon/spine-label.svg', + id: 'icon.settings--adjust', + $type: 'link', + $value: '/icon/settings--adjust.svg', }, - 'icon.split': { - '_original': { - '$value': '/icon/split.svg', + 'icon.settings--check': { + _original: { + $value: '/icon/settings--check.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.split', - '$type': 'link', - '$value': '/icon/split.svg', + id: 'icon.settings--check', + $type: 'link', + $value: '/icon/settings--check.svg', }, - 'icon.split--discard': { - '_original': { - '$value': '/icon/split--discard.svg', + 'icon.settings--services': { + _original: { + $value: '/icon/settings--services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.split--discard', - '$type': 'link', - '$value': '/icon/split--discard.svg', + id: 'icon.settings--services', + $type: 'link', + $value: '/icon/settings--services.svg', }, - 'icon.split-screen': { - '_original': { - '$value': '/icon/split-screen.svg', + 'icon.settings--view': { + _original: { + $value: '/icon/settings--view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.split-screen', - '$type': 'link', - '$value': '/icon/split-screen.svg', + id: 'icon.settings--view', + $type: 'link', + $value: '/icon/settings--view.svg', }, - 'icon.spray-paint': { - '_original': { - '$value': '/icon/spray-paint.svg', + 'icon.shape--except': { + _original: { + $value: '/icon/shape--except.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.spray-paint', - '$type': 'link', - '$value': '/icon/spray-paint.svg', + id: 'icon.shape--except', + $type: 'link', + $value: '/icon/shape--except.svg', }, - 'icon.sprout': { - '_original': { - '$value': '/icon/sprout.svg', + 'icon.shape--exclude': { + _original: { + $value: '/icon/shape--exclude.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sprout', - '$type': 'link', - '$value': '/icon/sprout.svg', + id: 'icon.shape--exclude', + $type: 'link', + $value: '/icon/shape--exclude.svg', }, - 'icon.SQL': { - '_original': { - '$value': '/icon/SQL.svg', + 'icon.shape--intersect': { + _original: { + $value: '/icon/shape--intersect.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.SQL', - '$type': 'link', - '$value': '/icon/SQL.svg', + id: 'icon.shape--intersect', + $type: 'link', + $value: '/icon/shape--intersect.svg', }, - 'icon.square-fill': { - '_original': { - '$value': '/icon/square-fill.svg', + 'icon.shape--join': { + _original: { + $value: '/icon/shape--join.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.square-fill', - '$type': 'link', - '$value': '/icon/square-fill.svg', + id: 'icon.shape--join', + $type: 'link', + $value: '/icon/shape--join.svg', }, - 'icon.stack-limitation': { - '_original': { - '$value': '/icon/stack-limitation.svg', + 'icon.shape--unite': { + _original: { + $value: '/icon/shape--unite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stack-limitation', - '$type': 'link', - '$value': '/icon/stack-limitation.svg', + id: 'icon.shape--unite', + $type: 'link', + $value: '/icon/shape--unite.svg', }, - 'icon.stacked-move': { - '_original': { - '$value': '/icon/stacked-move.svg', + 'icon.share': { + _original: { + $value: '/icon/share.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stacked-move', - '$type': 'link', - '$value': '/icon/stacked-move.svg', + id: 'icon.share', + $type: 'link', + $value: '/icon/share.svg', }, - 'icon.stacked-scrolling--1': { - '_original': { - '$value': '/icon/stacked-scrolling--1.svg', + 'icon.share-knowledge': { + _original: { + $value: '/icon/share-knowledge.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stacked-scrolling--1', - '$type': 'link', - '$value': '/icon/stacked-scrolling--1.svg', + id: 'icon.share-knowledge', + $type: 'link', + $value: '/icon/share-knowledge.svg', }, - 'icon.stacked-scrolling--2': { - '_original': { - '$value': '/icon/stacked-scrolling--2.svg', + 'icon.shopping--bag': { + _original: { + $value: '/icon/shopping--bag.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stacked-scrolling--2', - '$type': 'link', - '$value': '/icon/stacked-scrolling--2.svg', + id: 'icon.shopping--bag', + $type: 'link', + $value: '/icon/shopping--bag.svg', }, - 'icon.stamp': { - '_original': { - '$value': '/icon/stamp.svg', + 'icon.shopping--cart': { + _original: { + $value: '/icon/shopping--cart.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stamp', - '$type': 'link', - '$value': '/icon/stamp.svg', + id: 'icon.shopping--cart', + $type: 'link', + $value: '/icon/shopping--cart.svg', }, - 'icon.star': { - '_original': { - '$value': '/icon/star.svg', + 'icon.shopping--cart--arrow-down': { + _original: { + $value: '/icon/shopping--cart--arrow-down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.star', - '$type': 'link', - '$value': '/icon/star.svg', + id: 'icon.shopping--cart--arrow-down', + $type: 'link', + $value: '/icon/shopping--cart--arrow-down.svg', }, - 'icon.star--filled': { - '_original': { - '$value': '/icon/star--filled.svg', + 'icon.shopping--cart--arrow-up': { + _original: { + $value: '/icon/shopping--cart--arrow-up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.star--filled', - '$type': 'link', - '$value': '/icon/star--filled.svg', + id: 'icon.shopping--cart--arrow-up', + $type: 'link', + $value: '/icon/shopping--cart--arrow-up.svg', }, - 'icon.star--half': { - '_original': { - '$value': '/icon/star--half.svg', + 'icon.shopping--cart--clear': { + _original: { + $value: '/icon/shopping--cart--clear.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.star--half', - '$type': 'link', - '$value': '/icon/star--half.svg', + id: 'icon.shopping--cart--clear', + $type: 'link', + $value: '/icon/shopping--cart--clear.svg', }, - 'icon.star--review': { - '_original': { - '$value': '/icon/star--review.svg', + 'icon.shopping--cart--error': { + _original: { + $value: '/icon/shopping--cart--error.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.star--review', - '$type': 'link', - '$value': '/icon/star--review.svg', + id: 'icon.shopping--cart--error', + $type: 'link', + $value: '/icon/shopping--cart--error.svg', }, - 'icon.status--acknowledge': { - '_original': { - '$value': '/icon/status--acknowledge.svg', + 'icon.shopping--cart--minus': { + _original: { + $value: '/icon/shopping--cart--minus.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.status--acknowledge', - '$type': 'link', - '$value': '/icon/status--acknowledge.svg', + id: 'icon.shopping--cart--minus', + $type: 'link', + $value: '/icon/shopping--cart--minus.svg', }, - 'icon.status--change': { - '_original': { - '$value': '/icon/status--change.svg', + 'icon.shopping--cart--plus': { + _original: { + $value: '/icon/shopping--cart--plus.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.status--change', - '$type': 'link', - '$value': '/icon/status--change.svg', + id: 'icon.shopping--cart--plus', + $type: 'link', + $value: '/icon/shopping--cart--plus.svg', }, - 'icon.status--partial-fail': { - '_original': { - '$value': '/icon/status--partial-fail.svg', + 'icon.shopping--catalog': { + _original: { + $value: '/icon/shopping--catalog.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.status--partial-fail', - '$type': 'link', - '$value': '/icon/status--partial-fail.svg', + id: 'icon.shopping--catalog', + $type: 'link', + $value: '/icon/shopping--catalog.svg', }, - 'icon.status--resolved': { - '_original': { - '$value': '/icon/status--resolved.svg', + 'icon.show-data--cards': { + _original: { + $value: '/icon/show-data--cards.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.status--resolved', - '$type': 'link', - '$value': '/icon/status--resolved.svg', + id: 'icon.show-data--cards', + $type: 'link', + $value: '/icon/show-data--cards.svg', }, - 'icon.stay-inside': { - '_original': { - '$value': '/icon/stay-inside.svg', + 'icon.shrink-screen': { + _original: { + $value: '/icon/shrink-screen.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stay-inside', - '$type': 'link', - '$value': '/icon/stay-inside.svg', + id: 'icon.shrink-screen', + $type: 'link', + $value: '/icon/shrink-screen.svg', }, - 'icon.stem-leaf-plot': { - '_original': { - '$value': '/icon/stem-leaf-plot.svg', + 'icon.shrink-screen--filled': { + _original: { + $value: '/icon/shrink-screen--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stem-leaf-plot', - '$type': 'link', - '$value': '/icon/stem-leaf-plot.svg', + id: 'icon.shrink-screen--filled', + $type: 'link', + $value: '/icon/shrink-screen--filled.svg', }, - 'icon.stethoscope': { - '_original': { - '$value': '/icon/stethoscope.svg', + 'icon.shuffle': { + _original: { + $value: '/icon/shuffle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stethoscope', - '$type': 'link', - '$value': '/icon/stethoscope.svg', + id: 'icon.shuffle', + $type: 'link', + $value: '/icon/shuffle.svg', }, - 'icon.stop': { - '_original': { - '$value': '/icon/stop.svg', + 'icon.shuttle': { + _original: { + $value: '/icon/shuttle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop', - '$type': 'link', - '$value': '/icon/stop.svg', + id: 'icon.shuttle', + $type: 'link', + $value: '/icon/shuttle.svg', }, - 'icon.stop--filled': { - '_original': { - '$value': '/icon/stop--filled.svg', + 'icon.sight': { + _original: { + $value: '/icon/sight.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop--filled', - '$type': 'link', - '$value': '/icon/stop--filled.svg', + id: 'icon.sight', + $type: 'link', + $value: '/icon/sight.svg', }, - 'icon.stop--filled--alt': { - '_original': { - '$value': '/icon/stop--filled--alt.svg', + 'icon.sigma': { + _original: { + $value: '/icon/sigma.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop--filled--alt', - '$type': 'link', - '$value': '/icon/stop--filled--alt.svg', + id: 'icon.sigma', + $type: 'link', + $value: '/icon/sigma.svg', }, - 'icon.stop--outline': { - '_original': { - '$value': '/icon/stop--outline.svg', + 'icon.signal-strength': { + _original: { + $value: '/icon/signal-strength.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop--outline', - '$type': 'link', - '$value': '/icon/stop--outline.svg', + id: 'icon.signal-strength', + $type: 'link', + $value: '/icon/signal-strength.svg', }, - 'icon.stop--outline--filled': { - '_original': { - '$value': '/icon/stop--outline--filled.svg', + 'icon.sim-card': { + _original: { + $value: '/icon/sim-card.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop--outline--filled', - '$type': 'link', - '$value': '/icon/stop--outline--filled.svg', + id: 'icon.sim-card', + $type: 'link', + $value: '/icon/sim-card.svg', }, - 'icon.stop-sign': { - '_original': { - '$value': '/icon/stop-sign.svg', + 'icon.skill-level': { + _original: { + $value: '/icon/skill-level.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop-sign', - '$type': 'link', - '$value': '/icon/stop-sign.svg', + id: 'icon.skill-level', + $type: 'link', + $value: '/icon/skill-level.svg', }, - 'icon.stop-sign--filled': { - '_original': { - '$value': '/icon/stop-sign--filled.svg', + 'icon.skill-level--advanced': { + _original: { + $value: '/icon/skill-level--advanced.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stop-sign--filled', - '$type': 'link', - '$value': '/icon/stop-sign--filled.svg', + id: 'icon.skill-level--advanced', + $type: 'link', + $value: '/icon/skill-level--advanced.svg', }, - 'icon.storage-pool': { - '_original': { - '$value': '/icon/storage-pool.svg', + 'icon.skill-level--basic': { + _original: { + $value: '/icon/skill-level--basic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.storage-pool', - '$type': 'link', - '$value': '/icon/storage-pool.svg', + id: 'icon.skill-level--basic', + $type: 'link', + $value: '/icon/skill-level--basic.svg', }, - 'icon.storage-request': { - '_original': { - '$value': '/icon/storage-request.svg', + 'icon.skill-level--intermediate': { + _original: { + $value: '/icon/skill-level--intermediate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.storage-request', - '$type': 'link', - '$value': '/icon/storage-request.svg', + id: 'icon.skill-level--intermediate', + $type: 'link', + $value: '/icon/skill-level--intermediate.svg', }, - 'icon.store': { - '_original': { - '$value': '/icon/store.svg', + 'icon.skip--back': { + _original: { + $value: '/icon/skip--back.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.store', - '$type': 'link', - '$value': '/icon/store.svg', + id: 'icon.skip--back', + $type: 'link', + $value: '/icon/skip--back.svg', }, - 'icon.storm-tracker': { - '_original': { - '$value': '/icon/storm-tracker.svg', + 'icon.skip--back--filled': { + _original: { + $value: '/icon/skip--back--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.storm-tracker', - '$type': 'link', - '$value': '/icon/storm-tracker.svg', + id: 'icon.skip--back--filled', + $type: 'link', + $value: '/icon/skip--back--filled.svg', }, - 'icon.strawberry': { - '_original': { - '$value': '/icon/strawberry.svg', + 'icon.skip--back--outline': { + _original: { + $value: '/icon/skip--back--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.strawberry', - '$type': 'link', - '$value': '/icon/strawberry.svg', + id: 'icon.skip--back--outline', + $type: 'link', + $value: '/icon/skip--back--outline.svg', }, - 'icon.stress-breath-editor': { - '_original': { - '$value': '/icon/stress-breath-editor.svg', + 'icon.skip--back--outline--filled': { + _original: { + $value: '/icon/skip--back--outline--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.stress-breath-editor', - '$type': 'link', - '$value': '/icon/stress-breath-editor.svg', + id: 'icon.skip--back--outline--filled', + $type: 'link', + $value: '/icon/skip--back--outline--filled.svg', }, - 'icon.string-integer': { - '_original': { - '$value': '/icon/string-integer.svg', + 'icon.skip--back--outline--solid': { + _original: { + $value: '/icon/skip--back--outline--solid.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.string-integer', - '$type': 'link', - '$value': '/icon/string-integer.svg', + id: 'icon.skip--back--outline--solid', + $type: 'link', + $value: '/icon/skip--back--outline--solid.svg', }, - 'icon.string-text': { - '_original': { - '$value': '/icon/string-text.svg', + 'icon.skip--back--solid--filled': { + _original: { + $value: '/icon/skip--back--solid--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.string-text', - '$type': 'link', - '$value': '/icon/string-text.svg', + id: 'icon.skip--back--solid--filled', + $type: 'link', + $value: '/icon/skip--back--solid--filled.svg', }, - 'icon.study--next': { - '_original': { - '$value': '/icon/study--next.svg', + 'icon.skip--forward': { + _original: { + $value: '/icon/skip--forward.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--next', - '$type': 'link', - '$value': '/icon/study--next.svg', + id: 'icon.skip--forward', + $type: 'link', + $value: '/icon/skip--forward.svg', }, - 'icon.study--previous': { - '_original': { - '$value': '/icon/study--previous.svg', + 'icon.skip--forward--filled': { + _original: { + $value: '/icon/skip--forward--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--previous', - '$type': 'link', - '$value': '/icon/study--previous.svg', + id: 'icon.skip--forward--filled', + $type: 'link', + $value: '/icon/skip--forward--filled.svg', }, - 'icon.study--read': { - '_original': { - '$value': '/icon/study--read.svg', + 'icon.skip--forward--outline': { + _original: { + $value: '/icon/skip--forward--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--read', - '$type': 'link', - '$value': '/icon/study--read.svg', + id: 'icon.skip--forward--outline', + $type: 'link', + $value: '/icon/skip--forward--outline.svg', }, - 'icon.study--skip': { - '_original': { - '$value': '/icon/study--skip.svg', + 'icon.skip--forward--outline--filled': { + _original: { + $value: '/icon/skip--forward--outline--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--skip', - '$type': 'link', - '$value': '/icon/study--skip.svg', + id: 'icon.skip--forward--outline--filled', + $type: 'link', + $value: '/icon/skip--forward--outline--filled.svg', }, - 'icon.study--transfer': { - '_original': { - '$value': '/icon/study--transfer.svg', + 'icon.skip--forward--outline--solid': { + _original: { + $value: '/icon/skip--forward--outline--solid.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--transfer', - '$type': 'link', - '$value': '/icon/study--transfer.svg', + id: 'icon.skip--forward--outline--solid', + $type: 'link', + $value: '/icon/skip--forward--outline--solid.svg', }, - 'icon.study--unread': { - '_original': { - '$value': '/icon/study--unread.svg', + 'icon.skip--forward--solid--filled': { + _original: { + $value: '/icon/skip--forward--solid--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--unread', - '$type': 'link', - '$value': '/icon/study--unread.svg', + id: 'icon.skip--forward--solid--filled', + $type: 'link', + $value: '/icon/skip--forward--solid--filled.svg', }, - 'icon.study--view': { - '_original': { - '$value': '/icon/study--view.svg', + 'icon.sleet': { + _original: { + $value: '/icon/sleet.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.study--view', - '$type': 'link', - '$value': '/icon/study--view.svg', + id: 'icon.sleet', + $type: 'link', + $value: '/icon/sleet.svg', }, - 'icon.sub-volume': { - '_original': { - '$value': '/icon/sub-volume.svg', + 'icon.slisor': { + _original: { + $value: '/icon/slisor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sub-volume', - '$type': 'link', - '$value': '/icon/sub-volume.svg', + id: 'icon.slisor', + $type: 'link', + $value: '/icon/slisor.svg', }, - 'icon.subflow': { - '_original': { - '$value': '/icon/subflow.svg', + 'icon.smell': { + _original: { + $value: '/icon/smell.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.subflow', - '$type': 'link', - '$value': '/icon/subflow.svg', + id: 'icon.smell', + $type: 'link', + $value: '/icon/smell.svg', }, - 'icon.subflow--local': { - '_original': { - '$value': '/icon/subflow--local.svg', + 'icon.smoke': { + _original: { + $value: '/icon/smoke.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.subflow--local', - '$type': 'link', - '$value': '/icon/subflow--local.svg', + id: 'icon.smoke', + $type: 'link', + $value: '/icon/smoke.svg', }, - 'icon.subnet-acl-rules': { - '_original': { - '$value': '/icon/subnet-acl-rules.svg', + 'icon.smoothing': { + _original: { + $value: '/icon/smoothing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.subnet-acl-rules', - '$type': 'link', - '$value': '/icon/subnet-acl-rules.svg', + id: 'icon.smoothing', + $type: 'link', + $value: '/icon/smoothing.svg', }, - 'icon.subtract': { - '_original': { - '$value': '/icon/subtract.svg', + 'icon.smoothing--cursor': { + _original: { + $value: '/icon/smoothing--cursor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.subtract', - '$type': 'link', - '$value': '/icon/subtract.svg', + id: 'icon.smoothing--cursor', + $type: 'link', + $value: '/icon/smoothing--cursor.svg', }, - 'icon.subtract--alt': { - '_original': { - '$value': '/icon/subtract--alt.svg', + 'icon.snooze': { + _original: { + $value: '/icon/snooze.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.subtract--alt', - '$type': 'link', - '$value': '/icon/subtract--alt.svg', + id: 'icon.snooze', + $type: 'link', + $value: '/icon/snooze.svg', }, - 'icon.summary--KPI': { - '_original': { - '$value': '/icon/summary--KPI.svg', + 'icon.snow': { + _original: { + $value: '/icon/snow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.summary--KPI', - '$type': 'link', - '$value': '/icon/summary--KPI.svg', + id: 'icon.snow', + $type: 'link', + $value: '/icon/snow.svg', }, - 'icon.sun': { - '_original': { - '$value': '/icon/sun.svg', + 'icon.snow--blizzard': { + _original: { + $value: '/icon/snow--blizzard.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sun', - '$type': 'link', - '$value': '/icon/sun.svg', + id: 'icon.snow--blizzard', + $type: 'link', + $value: '/icon/snow--blizzard.svg', }, - 'icon.sunny': { - '_original': { - '$value': '/icon/sunny.svg', + 'icon.snow--heavy': { + _original: { + $value: '/icon/snow--heavy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sunny', - '$type': 'link', - '$value': '/icon/sunny.svg', + id: 'icon.snow--heavy', + $type: 'link', + $value: '/icon/snow--heavy.svg', }, - 'icon.sunrise': { - '_original': { - '$value': '/icon/sunrise.svg', + 'icon.snow--scattered': { + _original: { + $value: '/icon/snow--scattered.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sunrise', - '$type': 'link', - '$value': '/icon/sunrise.svg', + id: 'icon.snow--scattered', + $type: 'link', + $value: '/icon/snow--scattered.svg', }, - 'icon.sunset': { - '_original': { - '$value': '/icon/sunset.svg', + 'icon.snow--scattered--night': { + _original: { + $value: '/icon/snow--scattered--night.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sunset', - '$type': 'link', - '$value': '/icon/sunset.svg', + id: 'icon.snow--scattered--night', + $type: 'link', + $value: '/icon/snow--scattered--night.svg', }, - 'icon.SVG': { - '_original': { - '$value': '/icon/SVG.svg', + 'icon.snow-density': { + _original: { + $value: '/icon/snow-density.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.SVG', - '$type': 'link', - '$value': '/icon/SVG.svg', + id: 'icon.snow-density', + $type: 'link', + $value: '/icon/snow-density.svg', }, - 'icon.swim': { - '_original': { - '$value': '/icon/swim.svg', + 'icon.snowflake': { + _original: { + $value: '/icon/snowflake.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.swim', - '$type': 'link', - '$value': '/icon/swim.svg', + id: 'icon.snowflake', + $type: 'link', + $value: '/icon/snowflake.svg', }, - 'icon.switch-layer-2': { - '_original': { - '$value': '/icon/switch-layer-2.svg', + 'icon.soccer': { + _original: { + $value: '/icon/soccer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.switch-layer-2', - '$type': 'link', - '$value': '/icon/switch-layer-2.svg', + id: 'icon.soccer', + $type: 'link', + $value: '/icon/soccer.svg', }, - 'icon.switch-layer-3': { - '_original': { - '$value': '/icon/switch-layer-3.svg', + 'icon.soil-moisture': { + _original: { + $value: '/icon/soil-moisture.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.switch-layer-3', - '$type': 'link', - '$value': '/icon/switch-layer-3.svg', + id: 'icon.soil-moisture', + $type: 'link', + $value: '/icon/soil-moisture.svg', }, - 'icon.switcher': { - '_original': { - '$value': '/icon/switcher.svg', + 'icon.soil-moisture--field': { + _original: { + $value: '/icon/soil-moisture--field.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.switcher', - '$type': 'link', - '$value': '/icon/switcher.svg', + id: 'icon.soil-moisture--field', + $type: 'link', + $value: '/icon/soil-moisture--field.svg', }, - 'icon.sys-provision': { - '_original': { - '$value': '/icon/sys-provision.svg', + 'icon.soil-moisture--global': { + _original: { + $value: '/icon/soil-moisture--global.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.sys-provision', - '$type': 'link', - '$value': '/icon/sys-provision.svg', + id: 'icon.soil-moisture--global', + $type: 'link', + $value: '/icon/soil-moisture--global.svg', }, - 'icon.T': { - '_original': { - '$value': '/icon/T.svg', + 'icon.soil-temperature': { + _original: { + $value: '/icon/soil-temperature.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.T', - '$type': 'link', - '$value': '/icon/T.svg', + id: 'icon.soil-temperature', + $type: 'link', + $value: '/icon/soil-temperature.svg', }, - 'icon.T--alt': { - '_original': { - '$value': '/icon/T--alt.svg', + 'icon.soil-temperature--field': { + _original: { + $value: '/icon/soil-temperature--field.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.T--alt', - '$type': 'link', - '$value': '/icon/T--alt.svg', + id: 'icon.soil-temperature--field', + $type: 'link', + $value: '/icon/soil-temperature--field.svg', }, - 'icon.table': { - '_original': { - '$value': '/icon/table.svg', + 'icon.soil-temperature--global': { + _original: { + $value: '/icon/soil-temperature--global.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.table', - '$type': 'link', - '$value': '/icon/table.svg', + id: 'icon.soil-temperature--global', + $type: 'link', + $value: '/icon/soil-temperature--global.svg', }, - 'icon.table--alias': { - '_original': { - '$value': '/icon/table--alias.svg', + 'icon.solar-panel': { + _original: { + $value: '/icon/solar-panel.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.table--alias', - '$type': 'link', - '$value': '/icon/table--alias.svg', + id: 'icon.solar-panel', + $type: 'link', + $value: '/icon/solar-panel.svg', }, - 'icon.table--built': { - '_original': { - '$value': '/icon/table--built.svg', + 'icon.sort--ascending': { + _original: { + $value: '/icon/sort--ascending.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.table--built', - '$type': 'link', - '$value': '/icon/table--built.svg', + id: 'icon.sort--ascending', + $type: 'link', + $value: '/icon/sort--ascending.svg', }, - 'icon.table--shortcut': { - '_original': { - '$value': '/icon/table--shortcut.svg', + 'icon.sort--descending': { + _original: { + $value: '/icon/sort--descending.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.table--shortcut', - '$type': 'link', - '$value': '/icon/table--shortcut.svg', + id: 'icon.sort--descending', + $type: 'link', + $value: '/icon/sort--descending.svg', }, - 'icon.table--split': { - '_original': { - '$value': '/icon/table--split.svg', + 'icon.spell-check': { + _original: { + $value: '/icon/spell-check.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.table--split', - '$type': 'link', - '$value': '/icon/table--split.svg', + id: 'icon.spell-check', + $type: 'link', + $value: '/icon/spell-check.svg', }, - 'icon.table-of-contents': { - '_original': { - '$value': '/icon/table-of-contents.svg', + 'icon.spine-label': { + _original: { + $value: '/icon/spine-label.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.table-of-contents', - '$type': 'link', - '$value': '/icon/table-of-contents.svg', + id: 'icon.spine-label', + $type: 'link', + $value: '/icon/spine-label.svg', }, - 'icon.tablet': { - '_original': { - '$value': '/icon/tablet.svg', + 'icon.split': { + _original: { + $value: '/icon/split.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tablet', - '$type': 'link', - '$value': '/icon/tablet.svg', + id: 'icon.split', + $type: 'link', + $value: '/icon/split.svg', }, - 'icon.tablet--landscape': { - '_original': { - '$value': '/icon/tablet--landscape.svg', + 'icon.split--discard': { + _original: { + $value: '/icon/split--discard.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tablet--landscape', - '$type': 'link', - '$value': '/icon/tablet--landscape.svg', + id: 'icon.split--discard', + $type: 'link', + $value: '/icon/split--discard.svg', }, - 'icon.tag': { - '_original': { - '$value': '/icon/tag.svg', + 'icon.split-screen': { + _original: { + $value: '/icon/split-screen.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tag', - '$type': 'link', - '$value': '/icon/tag.svg', + id: 'icon.split-screen', + $type: 'link', + $value: '/icon/split-screen.svg', }, - 'icon.tag--edit': { - '_original': { - '$value': '/icon/tag--edit.svg', + 'icon.spray-paint': { + _original: { + $value: '/icon/spray-paint.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tag--edit', - '$type': 'link', - '$value': '/icon/tag--edit.svg', + id: 'icon.spray-paint', + $type: 'link', + $value: '/icon/spray-paint.svg', }, - 'icon.tag--export': { - '_original': { - '$value': '/icon/tag--export.svg', + 'icon.sprout': { + _original: { + $value: '/icon/sprout.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tag--export', - '$type': 'link', - '$value': '/icon/tag--export.svg', + id: 'icon.sprout', + $type: 'link', + $value: '/icon/sprout.svg', }, - 'icon.tag--group': { - '_original': { - '$value': '/icon/tag--group.svg', + 'icon.SQL': { + _original: { + $value: '/icon/SQL.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tag--group', - '$type': 'link', - '$value': '/icon/tag--group.svg', + id: 'icon.SQL', + $type: 'link', + $value: '/icon/SQL.svg', }, - 'icon.tag--import': { - '_original': { - '$value': '/icon/tag--import.svg', + 'icon.square-fill': { + _original: { + $value: '/icon/square-fill.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tag--import', - '$type': 'link', - '$value': '/icon/tag--import.svg', + id: 'icon.square-fill', + $type: 'link', + $value: '/icon/square-fill.svg', }, - 'icon.tag--none': { - '_original': { - '$value': '/icon/tag--none.svg', + 'icon.stack-limitation': { + _original: { + $value: '/icon/stack-limitation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tag--none', - '$type': 'link', - '$value': '/icon/tag--none.svg', + id: 'icon.stack-limitation', + $type: 'link', + $value: '/icon/stack-limitation.svg', }, - 'icon.tank': { - '_original': { - '$value': '/icon/tank.svg', + 'icon.stacked-move': { + _original: { + $value: '/icon/stacked-move.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tank', - '$type': 'link', - '$value': '/icon/tank.svg', + id: 'icon.stacked-move', + $type: 'link', + $value: '/icon/stacked-move.svg', }, - 'icon.task': { - '_original': { - '$value': '/icon/task.svg', + 'icon.stacked-scrolling--1': { + _original: { + $value: '/icon/stacked-scrolling--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task', - '$type': 'link', - '$value': '/icon/task.svg', + id: 'icon.stacked-scrolling--1', + $type: 'link', + $value: '/icon/stacked-scrolling--1.svg', }, - 'icon.task--add': { - '_original': { - '$value': '/icon/task--add.svg', + 'icon.stacked-scrolling--2': { + _original: { + $value: '/icon/stacked-scrolling--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--add', - '$type': 'link', - '$value': '/icon/task--add.svg', + id: 'icon.stacked-scrolling--2', + $type: 'link', + $value: '/icon/stacked-scrolling--2.svg', }, - 'icon.task--approved': { - '_original': { - '$value': '/icon/task--approved.svg', + 'icon.stamp': { + _original: { + $value: '/icon/stamp.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--approved', - '$type': 'link', - '$value': '/icon/task--approved.svg', + id: 'icon.stamp', + $type: 'link', + $value: '/icon/stamp.svg', }, - 'icon.task--asset-view': { - '_original': { - '$value': '/icon/task--asset-view.svg', + 'icon.star': { + _original: { + $value: '/icon/star.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--asset-view', - '$type': 'link', - '$value': '/icon/task--asset-view.svg', + id: 'icon.star', + $type: 'link', + $value: '/icon/star.svg', }, - 'icon.task--complete': { - '_original': { - '$value': '/icon/task--complete.svg', + 'icon.star--filled': { + _original: { + $value: '/icon/star--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--complete', - '$type': 'link', - '$value': '/icon/task--complete.svg', + id: 'icon.star--filled', + $type: 'link', + $value: '/icon/star--filled.svg', }, - 'icon.task--location': { - '_original': { - '$value': '/icon/task--location.svg', + 'icon.star--half': { + _original: { + $value: '/icon/star--half.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--location', - '$type': 'link', - '$value': '/icon/task--location.svg', + id: 'icon.star--half', + $type: 'link', + $value: '/icon/star--half.svg', }, - 'icon.task--remove': { - '_original': { - '$value': '/icon/task--remove.svg', + 'icon.star--review': { + _original: { + $value: '/icon/star--review.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--remove', - '$type': 'link', - '$value': '/icon/task--remove.svg', + id: 'icon.star--review', + $type: 'link', + $value: '/icon/star--review.svg', }, - 'icon.task--settings': { - '_original': { - '$value': '/icon/task--settings.svg', + 'icon.status--acknowledge': { + _original: { + $value: '/icon/status--acknowledge.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--settings', - '$type': 'link', - '$value': '/icon/task--settings.svg', + id: 'icon.status--acknowledge', + $type: 'link', + $value: '/icon/status--acknowledge.svg', }, - 'icon.task--star': { - '_original': { - '$value': '/icon/task--star.svg', + 'icon.status--change': { + _original: { + $value: '/icon/status--change.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--star', - '$type': 'link', - '$value': '/icon/task--star.svg', + id: 'icon.status--change', + $type: 'link', + $value: '/icon/status--change.svg', }, - 'icon.task--tools': { - '_original': { - '$value': '/icon/task--tools.svg', + 'icon.status--partial-fail': { + _original: { + $value: '/icon/status--partial-fail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--tools', - '$type': 'link', - '$value': '/icon/task--tools.svg', + id: 'icon.status--partial-fail', + $type: 'link', + $value: '/icon/status--partial-fail.svg', }, - 'icon.task--view': { - '_original': { - '$value': '/icon/task--view.svg', + 'icon.status--resolved': { + _original: { + $value: '/icon/status--resolved.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.task--view', - '$type': 'link', - '$value': '/icon/task--view.svg', + id: 'icon.status--resolved', + $type: 'link', + $value: '/icon/status--resolved.svg', }, - 'icon.taste': { - '_original': { - '$value': '/icon/taste.svg', + 'icon.stay-inside': { + _original: { + $value: '/icon/stay-inside.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.taste', - '$type': 'link', - '$value': '/icon/taste.svg', + id: 'icon.stay-inside', + $type: 'link', + $value: '/icon/stay-inside.svg', }, - 'icon.taxi': { - '_original': { - '$value': '/icon/taxi.svg', + 'icon.stem-leaf-plot': { + _original: { + $value: '/icon/stem-leaf-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.taxi', - '$type': 'link', - '$value': '/icon/taxi.svg', + id: 'icon.stem-leaf-plot', + $type: 'link', + $value: '/icon/stem-leaf-plot.svg', }, - 'icon.temperature': { - '_original': { - '$value': '/icon/temperature.svg', + 'icon.stethoscope': { + _original: { + $value: '/icon/stethoscope.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature', - '$type': 'link', - '$value': '/icon/temperature.svg', + id: 'icon.stethoscope', + $type: 'link', + $value: '/icon/stethoscope.svg', }, - 'icon.temperature--celsius': { - '_original': { - '$value': '/icon/temperature--celsius.svg', + 'icon.stop': { + _original: { + $value: '/icon/stop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--celsius', - '$type': 'link', - '$value': '/icon/temperature--celsius.svg', + id: 'icon.stop', + $type: 'link', + $value: '/icon/stop.svg', }, - 'icon.temperature--celsius--alt': { - '_original': { - '$value': '/icon/temperature--celsius--alt.svg', + 'icon.stop--filled': { + _original: { + $value: '/icon/stop--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--celsius--alt', - '$type': 'link', - '$value': '/icon/temperature--celsius--alt.svg', + id: 'icon.stop--filled', + $type: 'link', + $value: '/icon/stop--filled.svg', }, - 'icon.temperature--fahrenheit': { - '_original': { - '$value': '/icon/temperature--fahrenheit.svg', + 'icon.stop--filled--alt': { + _original: { + $value: '/icon/stop--filled--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--fahrenheit', - '$type': 'link', - '$value': '/icon/temperature--fahrenheit.svg', + id: 'icon.stop--filled--alt', + $type: 'link', + $value: '/icon/stop--filled--alt.svg', }, - 'icon.temperature--fahrenheit--alt': { - '_original': { - '$value': '/icon/temperature--fahrenheit--alt.svg', + 'icon.stop--outline': { + _original: { + $value: '/icon/stop--outline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--fahrenheit--alt', - '$type': 'link', - '$value': '/icon/temperature--fahrenheit--alt.svg', + id: 'icon.stop--outline', + $type: 'link', + $value: '/icon/stop--outline.svg', }, - 'icon.temperature--feels-like': { - '_original': { - '$value': '/icon/temperature--feels-like.svg', + 'icon.stop--outline--filled': { + _original: { + $value: '/icon/stop--outline--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--feels-like', - '$type': 'link', - '$value': '/icon/temperature--feels-like.svg', + id: 'icon.stop--outline--filled', + $type: 'link', + $value: '/icon/stop--outline--filled.svg', }, - 'icon.temperature--frigid': { - '_original': { - '$value': '/icon/temperature--frigid.svg', + 'icon.stop-sign': { + _original: { + $value: '/icon/stop-sign.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--frigid', - '$type': 'link', - '$value': '/icon/temperature--frigid.svg', + id: 'icon.stop-sign', + $type: 'link', + $value: '/icon/stop-sign.svg', }, - 'icon.temperature--hot': { - '_original': { - '$value': '/icon/temperature--hot.svg', + 'icon.stop-sign--filled': { + _original: { + $value: '/icon/stop-sign--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--hot', - '$type': 'link', - '$value': '/icon/temperature--hot.svg', + id: 'icon.stop-sign--filled', + $type: 'link', + $value: '/icon/stop-sign--filled.svg', }, - 'icon.temperature--inversion': { - '_original': { - '$value': '/icon/temperature--inversion.svg', + 'icon.storage-pool': { + _original: { + $value: '/icon/storage-pool.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--inversion', - '$type': 'link', - '$value': '/icon/temperature--inversion.svg', + id: 'icon.storage-pool', + $type: 'link', + $value: '/icon/storage-pool.svg', }, - 'icon.temperature--max': { - '_original': { - '$value': '/icon/temperature--max.svg', + 'icon.storage-request': { + _original: { + $value: '/icon/storage-request.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--max', - '$type': 'link', - '$value': '/icon/temperature--max.svg', + id: 'icon.storage-request', + $type: 'link', + $value: '/icon/storage-request.svg', }, - 'icon.temperature--min': { - '_original': { - '$value': '/icon/temperature--min.svg', + 'icon.store': { + _original: { + $value: '/icon/store.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--min', - '$type': 'link', - '$value': '/icon/temperature--min.svg', + id: 'icon.store', + $type: 'link', + $value: '/icon/store.svg', }, - 'icon.temperature--water': { - '_original': { - '$value': '/icon/temperature--water.svg', + 'icon.storm-tracker': { + _original: { + $value: '/icon/storm-tracker.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.temperature--water', - '$type': 'link', - '$value': '/icon/temperature--water.svg', + id: 'icon.storm-tracker', + $type: 'link', + $value: '/icon/storm-tracker.svg', }, - 'icon.template': { - '_original': { - '$value': '/icon/template.svg', + 'icon.strawberry': { + _original: { + $value: '/icon/strawberry.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.template', - '$type': 'link', - '$value': '/icon/template.svg', + id: 'icon.strawberry', + $type: 'link', + $value: '/icon/strawberry.svg', }, - 'icon.tennis': { - '_original': { - '$value': '/icon/tennis.svg', + 'icon.stress-breath-editor': { + _original: { + $value: '/icon/stress-breath-editor.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tennis', - '$type': 'link', - '$value': '/icon/tennis.svg', + id: 'icon.stress-breath-editor', + $type: 'link', + $value: '/icon/stress-breath-editor.svg', }, - 'icon.tennis-ball': { - '_original': { - '$value': '/icon/tennis-ball.svg', + 'icon.string-integer': { + _original: { + $value: '/icon/string-integer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tennis-ball', - '$type': 'link', - '$value': '/icon/tennis-ball.svg', + id: 'icon.string-integer', + $type: 'link', + $value: '/icon/string-integer.svg', }, - 'icon.term': { - '_original': { - '$value': '/icon/term.svg', + 'icon.string-text': { + _original: { + $value: '/icon/string-text.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.term', - '$type': 'link', - '$value': '/icon/term.svg', + id: 'icon.string-text', + $type: 'link', + $value: '/icon/string-text.svg', }, - 'icon.terminal': { - '_original': { - '$value': '/icon/terminal.svg', + 'icon.study--next': { + _original: { + $value: '/icon/study--next.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.terminal', - '$type': 'link', - '$value': '/icon/terminal.svg', + id: 'icon.study--next', + $type: 'link', + $value: '/icon/study--next.svg', }, - 'icon.terminal--3270': { - '_original': { - '$value': '/icon/terminal--3270.svg', + 'icon.study--previous': { + _original: { + $value: '/icon/study--previous.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.terminal--3270', - '$type': 'link', - '$value': '/icon/terminal--3270.svg', + id: 'icon.study--previous', + $type: 'link', + $value: '/icon/study--previous.svg', }, - 'icon.text--align--center': { - '_original': { - '$value': '/icon/text--align--center.svg', + 'icon.study--read': { + _original: { + $value: '/icon/study--read.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--align--center', - '$type': 'link', - '$value': '/icon/text--align--center.svg', + id: 'icon.study--read', + $type: 'link', + $value: '/icon/study--read.svg', }, - 'icon.text--align--justify': { - '_original': { - '$value': '/icon/text--align--justify.svg', + 'icon.study--skip': { + _original: { + $value: '/icon/study--skip.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--align--justify', - '$type': 'link', - '$value': '/icon/text--align--justify.svg', + id: 'icon.study--skip', + $type: 'link', + $value: '/icon/study--skip.svg', }, - 'icon.text--align--left': { - '_original': { - '$value': '/icon/text--align--left.svg', + 'icon.study--transfer': { + _original: { + $value: '/icon/study--transfer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--align--left', - '$type': 'link', - '$value': '/icon/text--align--left.svg', + id: 'icon.study--transfer', + $type: 'link', + $value: '/icon/study--transfer.svg', }, - 'icon.text--align--mixed': { - '_original': { - '$value': '/icon/text--align--mixed.svg', + 'icon.study--unread': { + _original: { + $value: '/icon/study--unread.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--align--mixed', - '$type': 'link', - '$value': '/icon/text--align--mixed.svg', + id: 'icon.study--unread', + $type: 'link', + $value: '/icon/study--unread.svg', }, - 'icon.text--align--right': { - '_original': { - '$value': '/icon/text--align--right.svg', + 'icon.study--view': { + _original: { + $value: '/icon/study--view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--align--right', - '$type': 'link', - '$value': '/icon/text--align--right.svg', + id: 'icon.study--view', + $type: 'link', + $value: '/icon/study--view.svg', }, - 'icon.text--all-caps': { - '_original': { - '$value': '/icon/text--all-caps.svg', + 'icon.sub-volume': { + _original: { + $value: '/icon/sub-volume.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--all-caps', - '$type': 'link', - '$value': '/icon/text--all-caps.svg', + id: 'icon.sub-volume', + $type: 'link', + $value: '/icon/sub-volume.svg', }, - 'icon.text--bold': { - '_original': { - '$value': '/icon/text--bold.svg', + 'icon.subflow': { + _original: { + $value: '/icon/subflow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--bold', - '$type': 'link', - '$value': '/icon/text--bold.svg', + id: 'icon.subflow', + $type: 'link', + $value: '/icon/subflow.svg', }, - 'icon.text--clear-format': { - '_original': { - '$value': '/icon/text--clear-format.svg', + 'icon.subflow--local': { + _original: { + $value: '/icon/subflow--local.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--clear-format', - '$type': 'link', - '$value': '/icon/text--clear-format.svg', + id: 'icon.subflow--local', + $type: 'link', + $value: '/icon/subflow--local.svg', }, - 'icon.text--color': { - '_original': { - '$value': '/icon/text--color.svg', + 'icon.subnet-acl-rules': { + _original: { + $value: '/icon/subnet-acl-rules.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--color', - '$type': 'link', - '$value': '/icon/text--color.svg', + id: 'icon.subnet-acl-rules', + $type: 'link', + $value: '/icon/subnet-acl-rules.svg', }, - 'icon.text--creation': { - '_original': { - '$value': '/icon/text--creation.svg', + 'icon.subtract': { + _original: { + $value: '/icon/subtract.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--creation', - '$type': 'link', - '$value': '/icon/text--creation.svg', + id: 'icon.subtract', + $type: 'link', + $value: '/icon/subtract.svg', }, - 'icon.text--fill': { - '_original': { - '$value': '/icon/text--fill.svg', + 'icon.subtract--alt': { + _original: { + $value: '/icon/subtract--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--fill', - '$type': 'link', - '$value': '/icon/text--fill.svg', + id: 'icon.subtract--alt', + $type: 'link', + $value: '/icon/subtract--alt.svg', }, - 'icon.text--font': { - '_original': { - '$value': '/icon/text--font.svg', + 'icon.summary--KPI': { + _original: { + $value: '/icon/summary--KPI.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--font', - '$type': 'link', - '$value': '/icon/text--font.svg', + id: 'icon.summary--KPI', + $type: 'link', + $value: '/icon/summary--KPI.svg', }, - 'icon.text--footnote': { - '_original': { - '$value': '/icon/text--footnote.svg', + 'icon.sun': { + _original: { + $value: '/icon/sun.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--footnote', - '$type': 'link', - '$value': '/icon/text--footnote.svg', + id: 'icon.sun', + $type: 'link', + $value: '/icon/sun.svg', }, - 'icon.text--highlight': { - '_original': { - '$value': '/icon/text--highlight.svg', + 'icon.sunny': { + _original: { + $value: '/icon/sunny.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--highlight', - '$type': 'link', - '$value': '/icon/text--highlight.svg', + id: 'icon.sunny', + $type: 'link', + $value: '/icon/sunny.svg', }, - 'icon.text--indent': { - '_original': { - '$value': '/icon/text--indent.svg', + 'icon.sunrise': { + _original: { + $value: '/icon/sunrise.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--indent', - '$type': 'link', - '$value': '/icon/text--indent.svg', + id: 'icon.sunrise', + $type: 'link', + $value: '/icon/sunrise.svg', }, - 'icon.text--indent--less': { - '_original': { - '$value': '/icon/text--indent--less.svg', + 'icon.sunset': { + _original: { + $value: '/icon/sunset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--indent--less', - '$type': 'link', - '$value': '/icon/text--indent--less.svg', + id: 'icon.sunset', + $type: 'link', + $value: '/icon/sunset.svg', }, - 'icon.text--indent--more': { - '_original': { - '$value': '/icon/text--indent--more.svg', + 'icon.SVG': { + _original: { + $value: '/icon/SVG.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--indent--more', - '$type': 'link', - '$value': '/icon/text--indent--more.svg', + id: 'icon.SVG', + $type: 'link', + $value: '/icon/SVG.svg', }, - 'icon.text--italic': { - '_original': { - '$value': '/icon/text--italic.svg', + 'icon.swim': { + _original: { + $value: '/icon/swim.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--italic', - '$type': 'link', - '$value': '/icon/text--italic.svg', + id: 'icon.swim', + $type: 'link', + $value: '/icon/swim.svg', }, - 'icon.text--kerning': { - '_original': { - '$value': '/icon/text--kerning.svg', + 'icon.switch-layer-2': { + _original: { + $value: '/icon/switch-layer-2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--kerning', - '$type': 'link', - '$value': '/icon/text--kerning.svg', + id: 'icon.switch-layer-2', + $type: 'link', + $value: '/icon/switch-layer-2.svg', }, - 'icon.text--leading': { - '_original': { - '$value': '/icon/text--leading.svg', + 'icon.switch-layer-3': { + _original: { + $value: '/icon/switch-layer-3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--leading', - '$type': 'link', - '$value': '/icon/text--leading.svg', + id: 'icon.switch-layer-3', + $type: 'link', + $value: '/icon/switch-layer-3.svg', }, - 'icon.text--line-spacing': { - '_original': { - '$value': '/icon/text--line-spacing.svg', + 'icon.switcher': { + _original: { + $value: '/icon/switcher.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--line-spacing', - '$type': 'link', - '$value': '/icon/text--line-spacing.svg', + id: 'icon.switcher', + $type: 'link', + $value: '/icon/switcher.svg', }, - 'icon.text--new-line': { - '_original': { - '$value': '/icon/text--new-line.svg', + 'icon.sys-provision': { + _original: { + $value: '/icon/sys-provision.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--new-line', - '$type': 'link', - '$value': '/icon/text--new-line.svg', + id: 'icon.sys-provision', + $type: 'link', + $value: '/icon/sys-provision.svg', }, - 'icon.text--scale': { - '_original': { - '$value': '/icon/text--scale.svg', + 'icon.T': { + _original: { + $value: '/icon/T.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--scale', - '$type': 'link', - '$value': '/icon/text--scale.svg', + id: 'icon.T', + $type: 'link', + $value: '/icon/T.svg', }, - 'icon.text--selection': { - '_original': { - '$value': '/icon/text--selection.svg', + 'icon.T--alt': { + _original: { + $value: '/icon/T--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--selection', - '$type': 'link', - '$value': '/icon/text--selection.svg', + id: 'icon.T--alt', + $type: 'link', + $value: '/icon/T--alt.svg', }, - 'icon.text--small-caps': { - '_original': { - '$value': '/icon/text--small-caps.svg', + 'icon.table': { + _original: { + $value: '/icon/table.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--small-caps', - '$type': 'link', - '$value': '/icon/text--small-caps.svg', + id: 'icon.table', + $type: 'link', + $value: '/icon/table.svg', }, - 'icon.text--strikethrough': { - '_original': { - '$value': '/icon/text--strikethrough.svg', + 'icon.table--alias': { + _original: { + $value: '/icon/table--alias.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--strikethrough', - '$type': 'link', - '$value': '/icon/text--strikethrough.svg', + id: 'icon.table--alias', + $type: 'link', + $value: '/icon/table--alias.svg', }, - 'icon.text--subscript': { - '_original': { - '$value': '/icon/text--subscript.svg', + 'icon.table--built': { + _original: { + $value: '/icon/table--built.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--subscript', - '$type': 'link', - '$value': '/icon/text--subscript.svg', + id: 'icon.table--built', + $type: 'link', + $value: '/icon/table--built.svg', }, - 'icon.text--superscript': { - '_original': { - '$value': '/icon/text--superscript.svg', + 'icon.table--shortcut': { + _original: { + $value: '/icon/table--shortcut.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--superscript', - '$type': 'link', - '$value': '/icon/text--superscript.svg', + id: 'icon.table--shortcut', + $type: 'link', + $value: '/icon/table--shortcut.svg', }, - 'icon.text--tracking': { - '_original': { - '$value': '/icon/text--tracking.svg', + 'icon.table--split': { + _original: { + $value: '/icon/table--split.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--tracking', - '$type': 'link', - '$value': '/icon/text--tracking.svg', + id: 'icon.table--split', + $type: 'link', + $value: '/icon/table--split.svg', }, - 'icon.text--underline': { - '_original': { - '$value': '/icon/text--underline.svg', + 'icon.table-of-contents': { + _original: { + $value: '/icon/table-of-contents.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--underline', - '$type': 'link', - '$value': '/icon/text--underline.svg', + id: 'icon.table-of-contents', + $type: 'link', + $value: '/icon/table-of-contents.svg', }, - 'icon.text--vertical-alignment': { - '_original': { - '$value': '/icon/text--vertical-alignment.svg', + 'icon.tablet': { + _original: { + $value: '/icon/tablet.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--vertical-alignment', - '$type': 'link', - '$value': '/icon/text--vertical-alignment.svg', + id: 'icon.tablet', + $type: 'link', + $value: '/icon/tablet.svg', }, - 'icon.text--wrap': { - '_original': { - '$value': '/icon/text--wrap.svg', + 'icon.tablet--landscape': { + _original: { + $value: '/icon/tablet--landscape.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text--wrap', - '$type': 'link', - '$value': '/icon/text--wrap.svg', + id: 'icon.tablet--landscape', + $type: 'link', + $value: '/icon/tablet--landscape.svg', }, - 'icon.text-annotation-toggle': { - '_original': { - '$value': '/icon/text-annotation-toggle.svg', + 'icon.tag': { + _original: { + $value: '/icon/tag.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text-annotation-toggle', - '$type': 'link', - '$value': '/icon/text-annotation-toggle.svg', + id: 'icon.tag', + $type: 'link', + $value: '/icon/tag.svg', }, - 'icon.text-link': { - '_original': { - '$value': '/icon/text-link.svg', + 'icon.tag--edit': { + _original: { + $value: '/icon/tag--edit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text-link', - '$type': 'link', - '$value': '/icon/text-link.svg', + id: 'icon.tag--edit', + $type: 'link', + $value: '/icon/tag--edit.svg', }, - 'icon.text-link--analysis': { - '_original': { - '$value': '/icon/text-link--analysis.svg', + 'icon.tag--export': { + _original: { + $value: '/icon/tag--export.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text-link--analysis', - '$type': 'link', - '$value': '/icon/text-link--analysis.svg', + id: 'icon.tag--export', + $type: 'link', + $value: '/icon/tag--export.svg', }, - 'icon.text-mining': { - '_original': { - '$value': '/icon/text-mining.svg', + 'icon.tag--group': { + _original: { + $value: '/icon/tag--group.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text-mining', - '$type': 'link', - '$value': '/icon/text-mining.svg', + id: 'icon.tag--group', + $type: 'link', + $value: '/icon/tag--group.svg', }, - 'icon.text-mining--applier': { - '_original': { - '$value': '/icon/text-mining--applier.svg', + 'icon.tag--import': { + _original: { + $value: '/icon/tag--import.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.text-mining--applier', - '$type': 'link', - '$value': '/icon/text-mining--applier.svg', + id: 'icon.tag--import', + $type: 'link', + $value: '/icon/tag--import.svg', }, - 'icon.theater': { - '_original': { - '$value': '/icon/theater.svg', + 'icon.tag--none': { + _original: { + $value: '/icon/tag--none.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.theater', - '$type': 'link', - '$value': '/icon/theater.svg', + id: 'icon.tag--none', + $type: 'link', + $value: '/icon/tag--none.svg', }, - 'icon.this-side-up': { - '_original': { - '$value': '/icon/this-side-up.svg', + 'icon.tank': { + _original: { + $value: '/icon/tank.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.this-side-up', - '$type': 'link', - '$value': '/icon/this-side-up.svg', + id: 'icon.tank', + $type: 'link', + $value: '/icon/tank.svg', }, - 'icon.threshold': { - '_original': { - '$value': '/icon/threshold.svg', + 'icon.task': { + _original: { + $value: '/icon/task.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.threshold', - '$type': 'link', - '$value': '/icon/threshold.svg', + id: 'icon.task', + $type: 'link', + $value: '/icon/task.svg', }, - 'icon.thumbnail--1': { - '_original': { - '$value': '/icon/thumbnail--1.svg', + 'icon.task--add': { + _original: { + $value: '/icon/task--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbnail--1', - '$type': 'link', - '$value': '/icon/thumbnail--1.svg', + id: 'icon.task--add', + $type: 'link', + $value: '/icon/task--add.svg', }, - 'icon.thumbnail--2': { - '_original': { - '$value': '/icon/thumbnail--2.svg', + 'icon.task--approved': { + _original: { + $value: '/icon/task--approved.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbnail--2', - '$type': 'link', - '$value': '/icon/thumbnail--2.svg', + id: 'icon.task--approved', + $type: 'link', + $value: '/icon/task--approved.svg', }, - 'icon.thumbnail-preview': { - '_original': { - '$value': '/icon/thumbnail-preview.svg', + 'icon.task--asset-view': { + _original: { + $value: '/icon/task--asset-view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbnail-preview', - '$type': 'link', - '$value': '/icon/thumbnail-preview.svg', + id: 'icon.task--asset-view', + $type: 'link', + $value: '/icon/task--asset-view.svg', }, - 'icon.thumbs-down': { - '_original': { - '$value': '/icon/thumbs-down.svg', + 'icon.task--complete': { + _original: { + $value: '/icon/task--complete.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbs-down', - '$type': 'link', - '$value': '/icon/thumbs-down.svg', + id: 'icon.task--complete', + $type: 'link', + $value: '/icon/task--complete.svg', }, - 'icon.thumbs-down--filled': { - '_original': { - '$value': '/icon/thumbs-down--filled.svg', + 'icon.task--location': { + _original: { + $value: '/icon/task--location.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbs-down--filled', - '$type': 'link', - '$value': '/icon/thumbs-down--filled.svg', + id: 'icon.task--location', + $type: 'link', + $value: '/icon/task--location.svg', }, - 'icon.thumbs-up': { - '_original': { - '$value': '/icon/thumbs-up.svg', + 'icon.task--remove': { + _original: { + $value: '/icon/task--remove.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbs-up', - '$type': 'link', - '$value': '/icon/thumbs-up.svg', + id: 'icon.task--remove', + $type: 'link', + $value: '/icon/task--remove.svg', }, - 'icon.thumbs-up--filled': { - '_original': { - '$value': '/icon/thumbs-up--filled.svg', + 'icon.task--settings': { + _original: { + $value: '/icon/task--settings.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thumbs-up--filled', - '$type': 'link', - '$value': '/icon/thumbs-up--filled.svg', + id: 'icon.task--settings', + $type: 'link', + $value: '/icon/task--settings.svg', }, - 'icon.thunderstorm': { - '_original': { - '$value': '/icon/thunderstorm.svg', + 'icon.task--star': { + _original: { + $value: '/icon/task--star.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thunderstorm', - '$type': 'link', - '$value': '/icon/thunderstorm.svg', + id: 'icon.task--star', + $type: 'link', + $value: '/icon/task--star.svg', }, - 'icon.thunderstorm--scattered': { - '_original': { - '$value': '/icon/thunderstorm--scattered.svg', + 'icon.task--tools': { + _original: { + $value: '/icon/task--tools.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thunderstorm--scattered', - '$type': 'link', - '$value': '/icon/thunderstorm--scattered.svg', + id: 'icon.task--tools', + $type: 'link', + $value: '/icon/task--tools.svg', }, - 'icon.thunderstorm--scattered--night': { - '_original': { - '$value': '/icon/thunderstorm--scattered--night.svg', + 'icon.task--view': { + _original: { + $value: '/icon/task--view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thunderstorm--scattered--night', - '$type': 'link', - '$value': '/icon/thunderstorm--scattered--night.svg', + id: 'icon.task--view', + $type: 'link', + $value: '/icon/task--view.svg', }, - 'icon.thunderstorm--severe': { - '_original': { - '$value': '/icon/thunderstorm--severe.svg', + 'icon.taste': { + _original: { + $value: '/icon/taste.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thunderstorm--severe', - '$type': 'link', - '$value': '/icon/thunderstorm--severe.svg', + id: 'icon.taste', + $type: 'link', + $value: '/icon/taste.svg', }, - 'icon.thunderstorm--strong': { - '_original': { - '$value': '/icon/thunderstorm--strong.svg', + 'icon.taxi': { + _original: { + $value: '/icon/taxi.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.thunderstorm--strong', - '$type': 'link', - '$value': '/icon/thunderstorm--strong.svg', + id: 'icon.taxi', + $type: 'link', + $value: '/icon/taxi.svg', }, - 'icon.ticket': { - '_original': { - '$value': '/icon/ticket.svg', + 'icon.temperature': { + _original: { + $value: '/icon/temperature.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ticket', - '$type': 'link', - '$value': '/icon/ticket.svg', + id: 'icon.temperature', + $type: 'link', + $value: '/icon/temperature.svg', }, - 'icon.tides': { - '_original': { - '$value': '/icon/tides.svg', + 'icon.temperature--celsius': { + _original: { + $value: '/icon/temperature--celsius.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tides', - '$type': 'link', - '$value': '/icon/tides.svg', + id: 'icon.temperature--celsius', + $type: 'link', + $value: '/icon/temperature--celsius.svg', }, - 'icon.TIF': { - '_original': { - '$value': '/icon/TIF.svg', + 'icon.temperature--celsius--alt': { + _original: { + $value: '/icon/temperature--celsius--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.TIF', - '$type': 'link', - '$value': '/icon/TIF.svg', + id: 'icon.temperature--celsius--alt', + $type: 'link', + $value: '/icon/temperature--celsius--alt.svg', }, - 'icon.time': { - '_original': { - '$value': '/icon/time.svg', + 'icon.temperature--fahrenheit': { + _original: { + $value: '/icon/temperature--fahrenheit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.time', - '$type': 'link', - '$value': '/icon/time.svg', + id: 'icon.temperature--fahrenheit', + $type: 'link', + $value: '/icon/temperature--fahrenheit.svg', }, - 'icon.time-plot': { - '_original': { - '$value': '/icon/time-plot.svg', + 'icon.temperature--fahrenheit--alt': { + _original: { + $value: '/icon/temperature--fahrenheit--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.time-plot', - '$type': 'link', - '$value': '/icon/time-plot.svg', + id: 'icon.temperature--fahrenheit--alt', + $type: 'link', + $value: '/icon/temperature--fahrenheit--alt.svg', }, - 'icon.timer': { - '_original': { - '$value': '/icon/timer.svg', + 'icon.temperature--feels-like': { + _original: { + $value: '/icon/temperature--feels-like.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.timer', - '$type': 'link', - '$value': '/icon/timer.svg', + id: 'icon.temperature--feels-like', + $type: 'link', + $value: '/icon/temperature--feels-like.svg', }, - 'icon.tool-box': { - '_original': { - '$value': '/icon/tool-box.svg', + 'icon.temperature--frigid': { + _original: { + $value: '/icon/temperature--frigid.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tool-box', - '$type': 'link', - '$value': '/icon/tool-box.svg', + id: 'icon.temperature--frigid', + $type: 'link', + $value: '/icon/temperature--frigid.svg', }, - 'icon.tool-kit': { - '_original': { - '$value': '/icon/tool-kit.svg', + 'icon.temperature--hot': { + _original: { + $value: '/icon/temperature--hot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tool-kit', - '$type': 'link', - '$value': '/icon/tool-kit.svg', + id: 'icon.temperature--hot', + $type: 'link', + $value: '/icon/temperature--hot.svg', }, - 'icon.tools': { - '_original': { - '$value': '/icon/tools.svg', + 'icon.temperature--inversion': { + _original: { + $value: '/icon/temperature--inversion.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tools', - '$type': 'link', - '$value': '/icon/tools.svg', + id: 'icon.temperature--inversion', + $type: 'link', + $value: '/icon/temperature--inversion.svg', }, - 'icon.tools--alt': { - '_original': { - '$value': '/icon/tools--alt.svg', + 'icon.temperature--max': { + _original: { + $value: '/icon/temperature--max.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tools--alt', - '$type': 'link', - '$value': '/icon/tools--alt.svg', + id: 'icon.temperature--max', + $type: 'link', + $value: '/icon/temperature--max.svg', }, - 'icon.tornado': { - '_original': { - '$value': '/icon/tornado.svg', + 'icon.temperature--min': { + _original: { + $value: '/icon/temperature--min.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tornado', - '$type': 'link', - '$value': '/icon/tornado.svg', + id: 'icon.temperature--min', + $type: 'link', + $value: '/icon/temperature--min.svg', }, - 'icon.tornado-warning': { - '_original': { - '$value': '/icon/tornado-warning.svg', + 'icon.temperature--water': { + _original: { + $value: '/icon/temperature--water.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tornado-warning', - '$type': 'link', - '$value': '/icon/tornado-warning.svg', + id: 'icon.temperature--water', + $type: 'link', + $value: '/icon/temperature--water.svg', }, - 'icon.touch--1': { - '_original': { - '$value': '/icon/touch--1.svg', + 'icon.template': { + _original: { + $value: '/icon/template.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--1', - '$type': 'link', - '$value': '/icon/touch--1.svg', + id: 'icon.template', + $type: 'link', + $value: '/icon/template.svg', }, - 'icon.touch--1--filled': { - '_original': { - '$value': '/icon/touch--1--filled.svg', + 'icon.tennis': { + _original: { + $value: '/icon/tennis.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--1--filled', - '$type': 'link', - '$value': '/icon/touch--1--filled.svg', + id: 'icon.tennis', + $type: 'link', + $value: '/icon/tennis.svg', }, - 'icon.touch--1-down': { - '_original': { - '$value': '/icon/touch--1-down.svg', + 'icon.tennis-ball': { + _original: { + $value: '/icon/tennis-ball.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--1-down', - '$type': 'link', - '$value': '/icon/touch--1-down.svg', + id: 'icon.tennis-ball', + $type: 'link', + $value: '/icon/tennis-ball.svg', }, - 'icon.touch--1-down--filled': { - '_original': { - '$value': '/icon/touch--1-down--filled.svg', + 'icon.term': { + _original: { + $value: '/icon/term.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--1-down--filled', - '$type': 'link', - '$value': '/icon/touch--1-down--filled.svg', + id: 'icon.term', + $type: 'link', + $value: '/icon/term.svg', }, - 'icon.touch--2': { - '_original': { - '$value': '/icon/touch--2.svg', + 'icon.terminal': { + _original: { + $value: '/icon/terminal.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--2', - '$type': 'link', - '$value': '/icon/touch--2.svg', + id: 'icon.terminal', + $type: 'link', + $value: '/icon/terminal.svg', }, - 'icon.touch--2--filled': { - '_original': { - '$value': '/icon/touch--2--filled.svg', + 'icon.terminal--3270': { + _original: { + $value: '/icon/terminal--3270.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--2--filled', - '$type': 'link', - '$value': '/icon/touch--2--filled.svg', + id: 'icon.terminal--3270', + $type: 'link', + $value: '/icon/terminal--3270.svg', }, - 'icon.touch--interaction': { - '_original': { - '$value': '/icon/touch--interaction.svg', + 'icon.text--align--center': { + _original: { + $value: '/icon/text--align--center.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.touch--interaction', - '$type': 'link', - '$value': '/icon/touch--interaction.svg', + id: 'icon.text--align--center', + $type: 'link', + $value: '/icon/text--align--center.svg', }, - 'icon.traffic--event': { - '_original': { - '$value': '/icon/traffic--event.svg', + 'icon.text--align--justify': { + _original: { + $value: '/icon/text--align--justify.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.traffic--event', - '$type': 'link', - '$value': '/icon/traffic--event.svg', + id: 'icon.text--align--justify', + $type: 'link', + $value: '/icon/text--align--justify.svg', }, - 'icon.traffic--flow': { - '_original': { - '$value': '/icon/traffic--flow.svg', + 'icon.text--align--left': { + _original: { + $value: '/icon/text--align--left.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.traffic--flow', - '$type': 'link', - '$value': '/icon/traffic--flow.svg', + id: 'icon.text--align--left', + $type: 'link', + $value: '/icon/text--align--left.svg', }, - 'icon.traffic--flow-incident': { - '_original': { - '$value': '/icon/traffic--flow-incident.svg', + 'icon.text--align--mixed': { + _original: { + $value: '/icon/text--align--mixed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.traffic--flow-incident', - '$type': 'link', - '$value': '/icon/traffic--flow-incident.svg', + id: 'icon.text--align--mixed', + $type: 'link', + $value: '/icon/text--align--mixed.svg', }, - 'icon.traffic--incident': { - '_original': { - '$value': '/icon/traffic--incident.svg', + 'icon.text--align--right': { + _original: { + $value: '/icon/text--align--right.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.traffic--incident', - '$type': 'link', - '$value': '/icon/traffic--incident.svg', + id: 'icon.text--align--right', + $type: 'link', + $value: '/icon/text--align--right.svg', }, - 'icon.traffic--weather-incident': { - '_original': { - '$value': '/icon/traffic--weather-incident.svg', + 'icon.text--all-caps': { + _original: { + $value: '/icon/text--all-caps.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.traffic--weather-incident', - '$type': 'link', - '$value': '/icon/traffic--weather-incident.svg', + id: 'icon.text--all-caps', + $type: 'link', + $value: '/icon/text--all-caps.svg', }, - 'icon.traffic-cone': { - '_original': { - '$value': '/icon/traffic-cone.svg', + 'icon.text--bold': { + _original: { + $value: '/icon/text--bold.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.traffic-cone', - '$type': 'link', - '$value': '/icon/traffic-cone.svg', + id: 'icon.text--bold', + $type: 'link', + $value: '/icon/text--bold.svg', }, - 'icon.train': { - '_original': { - '$value': '/icon/train.svg', + 'icon.text--clear-format': { + _original: { + $value: '/icon/text--clear-format.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.train', - '$type': 'link', - '$value': '/icon/train.svg', + id: 'icon.text--clear-format', + $type: 'link', + $value: '/icon/text--clear-format.svg', }, - 'icon.train--heart': { - '_original': { - '$value': '/icon/train--heart.svg', + 'icon.text--color': { + _original: { + $value: '/icon/text--color.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.train--heart', - '$type': 'link', - '$value': '/icon/train--heart.svg', + id: 'icon.text--color', + $type: 'link', + $value: '/icon/text--color.svg', }, - 'icon.train--profile': { - '_original': { - '$value': '/icon/train--profile.svg', + 'icon.text--creation': { + _original: { + $value: '/icon/text--creation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.train--profile', - '$type': 'link', - '$value': '/icon/train--profile.svg', + id: 'icon.text--creation', + $type: 'link', + $value: '/icon/text--creation.svg', }, - 'icon.train--speed': { - '_original': { - '$value': '/icon/train--speed.svg', + 'icon.text--fill': { + _original: { + $value: '/icon/text--fill.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.train--speed', - '$type': 'link', - '$value': '/icon/train--speed.svg', + id: 'icon.text--fill', + $type: 'link', + $value: '/icon/text--fill.svg', }, - 'icon.train--ticket': { - '_original': { - '$value': '/icon/train--ticket.svg', + 'icon.text--font': { + _original: { + $value: '/icon/text--font.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.train--ticket', - '$type': 'link', - '$value': '/icon/train--ticket.svg', + id: 'icon.text--font', + $type: 'link', + $value: '/icon/text--font.svg', }, - 'icon.train--time': { - '_original': { - '$value': '/icon/train--time.svg', + 'icon.text--footnote': { + _original: { + $value: '/icon/text--footnote.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.train--time', - '$type': 'link', - '$value': '/icon/train--time.svg', + id: 'icon.text--footnote', + $type: 'link', + $value: '/icon/text--footnote.svg', }, - 'icon.tram': { - '_original': { - '$value': '/icon/tram.svg', + 'icon.text--highlight': { + _original: { + $value: '/icon/text--highlight.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tram', - '$type': 'link', - '$value': '/icon/tram.svg', + id: 'icon.text--highlight', + $type: 'link', + $value: '/icon/text--highlight.svg', }, - 'icon.transgender': { - '_original': { - '$value': '/icon/transgender.svg', + 'icon.text--indent': { + _original: { + $value: '/icon/text--indent.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.transgender', - '$type': 'link', - '$value': '/icon/transgender.svg', + id: 'icon.text--indent', + $type: 'link', + $value: '/icon/text--indent.svg', }, - 'icon.translate': { - '_original': { - '$value': '/icon/translate.svg', + 'icon.text--indent--less': { + _original: { + $value: '/icon/text--indent--less.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.translate', - '$type': 'link', - '$value': '/icon/translate.svg', + id: 'icon.text--indent--less', + $type: 'link', + $value: '/icon/text--indent--less.svg', }, - 'icon.transmission-lte': { - '_original': { - '$value': '/icon/transmission-lte.svg', + 'icon.text--indent--more': { + _original: { + $value: '/icon/text--indent--more.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.transmission-lte', - '$type': 'link', - '$value': '/icon/transmission-lte.svg', + id: 'icon.text--indent--more', + $type: 'link', + $value: '/icon/text--indent--more.svg', }, - 'icon.transpose': { - '_original': { - '$value': '/icon/transpose.svg', + 'icon.text--italic': { + _original: { + $value: '/icon/text--italic.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.transpose', - '$type': 'link', - '$value': '/icon/transpose.svg', + id: 'icon.text--italic', + $type: 'link', + $value: '/icon/text--italic.svg', }, - 'icon.trash-can': { - '_original': { - '$value': '/icon/trash-can.svg', + 'icon.text--kerning': { + _original: { + $value: '/icon/text--kerning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.trash-can', - '$type': 'link', - '$value': '/icon/trash-can.svg', + id: 'icon.text--kerning', + $type: 'link', + $value: '/icon/text--kerning.svg', }, - 'icon.tree': { - '_original': { - '$value': '/icon/tree.svg', + 'icon.text--leading': { + _original: { + $value: '/icon/text--leading.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tree', - '$type': 'link', - '$value': '/icon/tree.svg', + id: 'icon.text--leading', + $type: 'link', + $value: '/icon/text--leading.svg', }, - 'icon.tree--fall-risk': { - '_original': { - '$value': '/icon/tree--fall-risk.svg', + 'icon.text--line-spacing': { + _original: { + $value: '/icon/text--line-spacing.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tree--fall-risk', - '$type': 'link', - '$value': '/icon/tree--fall-risk.svg', + id: 'icon.text--line-spacing', + $type: 'link', + $value: '/icon/text--line-spacing.svg', }, - 'icon.tree-view': { - '_original': { - '$value': '/icon/tree-view.svg', + 'icon.text--new-line': { + _original: { + $value: '/icon/text--new-line.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tree-view', - '$type': 'link', - '$value': '/icon/tree-view.svg', + id: 'icon.text--new-line', + $type: 'link', + $value: '/icon/text--new-line.svg', }, - 'icon.tree-view--alt': { - '_original': { - '$value': '/icon/tree-view--alt.svg', + 'icon.text--scale': { + _original: { + $value: '/icon/text--scale.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tree-view--alt', - '$type': 'link', - '$value': '/icon/tree-view--alt.svg', + id: 'icon.text--scale', + $type: 'link', + $value: '/icon/text--scale.svg', }, - 'icon.trophy': { - '_original': { - '$value': '/icon/trophy.svg', + 'icon.text--selection': { + _original: { + $value: '/icon/text--selection.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.trophy', - '$type': 'link', - '$value': '/icon/trophy.svg', + id: 'icon.text--selection', + $type: 'link', + $value: '/icon/text--selection.svg', }, - 'icon.trophy--filled': { - '_original': { - '$value': '/icon/trophy--filled.svg', + 'icon.text--small-caps': { + _original: { + $value: '/icon/text--small-caps.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.trophy--filled', - '$type': 'link', - '$value': '/icon/trophy--filled.svg', + id: 'icon.text--small-caps', + $type: 'link', + $value: '/icon/text--small-caps.svg', }, - 'icon.tropical-storm': { - '_original': { - '$value': '/icon/tropical-storm.svg', + 'icon.text--strikethrough': { + _original: { + $value: '/icon/text--strikethrough.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tropical-storm', - '$type': 'link', - '$value': '/icon/tropical-storm.svg', + id: 'icon.text--strikethrough', + $type: 'link', + $value: '/icon/text--strikethrough.svg', }, - 'icon.tropical-storm--model-tracks': { - '_original': { - '$value': '/icon/tropical-storm--model-tracks.svg', + 'icon.text--subscript': { + _original: { + $value: '/icon/text--subscript.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tropical-storm--model-tracks', - '$type': 'link', - '$value': '/icon/tropical-storm--model-tracks.svg', + id: 'icon.text--subscript', + $type: 'link', + $value: '/icon/text--subscript.svg', }, - 'icon.tropical-storm--tracks': { - '_original': { - '$value': '/icon/tropical-storm--tracks.svg', + 'icon.text--superscript': { + _original: { + $value: '/icon/text--superscript.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tropical-storm--tracks', - '$type': 'link', - '$value': '/icon/tropical-storm--tracks.svg', + id: 'icon.text--superscript', + $type: 'link', + $value: '/icon/text--superscript.svg', }, - 'icon.tropical-warning': { - '_original': { - '$value': '/icon/tropical-warning.svg', + 'icon.text--tracking': { + _original: { + $value: '/icon/text--tracking.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tropical-warning', - '$type': 'link', - '$value': '/icon/tropical-warning.svg', + id: 'icon.text--tracking', + $type: 'link', + $value: '/icon/text--tracking.svg', }, - 'icon.tsunami': { - '_original': { - '$value': '/icon/tsunami.svg', + 'icon.text--underline': { + _original: { + $value: '/icon/text--underline.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.tsunami', - '$type': 'link', - '$value': '/icon/tsunami.svg', + id: 'icon.text--underline', + $type: 'link', + $value: '/icon/text--underline.svg', }, - 'icon.TSV': { - '_original': { - '$value': '/icon/TSV.svg', + 'icon.text--vertical-alignment': { + _original: { + $value: '/icon/text--vertical-alignment.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.TSV', - '$type': 'link', - '$value': '/icon/TSV.svg', + id: 'icon.text--vertical-alignment', + $type: 'link', + $value: '/icon/text--vertical-alignment.svg', }, - 'icon.two-factor-authentication': { - '_original': { - '$value': '/icon/two-factor-authentication.svg', + 'icon.text--wrap': { + _original: { + $value: '/icon/text--wrap.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.two-factor-authentication', - '$type': 'link', - '$value': '/icon/two-factor-authentication.svg', + id: 'icon.text--wrap', + $type: 'link', + $value: '/icon/text--wrap.svg', }, - 'icon.two-person-lift': { - '_original': { - '$value': '/icon/two-person-lift.svg', + 'icon.text-annotation-toggle': { + _original: { + $value: '/icon/text-annotation-toggle.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.two-person-lift', - '$type': 'link', - '$value': '/icon/two-person-lift.svg', + id: 'icon.text-annotation-toggle', + $type: 'link', + $value: '/icon/text-annotation-toggle.svg', }, - 'icon.TXT': { - '_original': { - '$value': '/icon/TXT.svg', + 'icon.text-link': { + _original: { + $value: '/icon/text-link.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.TXT', - '$type': 'link', - '$value': '/icon/TXT.svg', + id: 'icon.text-link', + $type: 'link', + $value: '/icon/text-link.svg', }, - 'icon.TXT--reference': { - '_original': { - '$value': '/icon/TXT--reference.svg', + 'icon.text-link--analysis': { + _original: { + $value: '/icon/text-link--analysis.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.TXT--reference', - '$type': 'link', - '$value': '/icon/TXT--reference.svg', + id: 'icon.text-link--analysis', + $type: 'link', + $value: '/icon/text-link--analysis.svg', }, - 'icon.type-pattern': { - '_original': { - '$value': '/icon/type-pattern.svg', + 'icon.text-mining': { + _original: { + $value: '/icon/text-mining.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.type-pattern', - '$type': 'link', - '$value': '/icon/type-pattern.svg', + id: 'icon.text-mining', + $type: 'link', + $value: '/icon/text-mining.svg', }, - 'icon.types': { - '_original': { - '$value': '/icon/types.svg', + 'icon.text-mining--applier': { + _original: { + $value: '/icon/text-mining--applier.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.types', - '$type': 'link', - '$value': '/icon/types.svg', + id: 'icon.text-mining--applier', + $type: 'link', + $value: '/icon/text-mining--applier.svg', }, - 'icon.U1': { - '_original': { - '$value': '/icon/U1.svg', + 'icon.theater': { + _original: { + $value: '/icon/theater.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.U1', - '$type': 'link', - '$value': '/icon/U1.svg', + id: 'icon.theater', + $type: 'link', + $value: '/icon/theater.svg', }, - 'icon.U2': { - '_original': { - '$value': '/icon/U2.svg', + 'icon.this-side-up': { + _original: { + $value: '/icon/this-side-up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.U2', - '$type': 'link', - '$value': '/icon/U2.svg', + id: 'icon.this-side-up', + $type: 'link', + $value: '/icon/this-side-up.svg', }, - 'icon.U3': { - '_original': { - '$value': '/icon/U3.svg', + 'icon.threshold': { + _original: { + $value: '/icon/threshold.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.U3', - '$type': 'link', - '$value': '/icon/U3.svg', + id: 'icon.threshold', + $type: 'link', + $value: '/icon/threshold.svg', }, - 'icon.umbrella': { - '_original': { - '$value': '/icon/umbrella.svg', + 'icon.thumbnail--1': { + _original: { + $value: '/icon/thumbnail--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.umbrella', - '$type': 'link', - '$value': '/icon/umbrella.svg', + id: 'icon.thumbnail--1', + $type: 'link', + $value: '/icon/thumbnail--1.svg', }, - 'icon.undefined': { - '_original': { - '$value': '/icon/undefined.svg', + 'icon.thumbnail--2': { + _original: { + $value: '/icon/thumbnail--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.undefined', - '$type': 'link', - '$value': '/icon/undefined.svg', + id: 'icon.thumbnail--2', + $type: 'link', + $value: '/icon/thumbnail--2.svg', }, - 'icon.undefined--filled': { - '_original': { - '$value': '/icon/undefined--filled.svg', + 'icon.thumbnail-preview': { + _original: { + $value: '/icon/thumbnail-preview.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.undefined--filled', - '$type': 'link', - '$value': '/icon/undefined--filled.svg', + id: 'icon.thumbnail-preview', + $type: 'link', + $value: '/icon/thumbnail-preview.svg', }, - 'icon.undo': { - '_original': { - '$value': '/icon/undo.svg', + 'icon.thumbs-down': { + _original: { + $value: '/icon/thumbs-down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.undo', - '$type': 'link', - '$value': '/icon/undo.svg', + id: 'icon.thumbs-down', + $type: 'link', + $value: '/icon/thumbs-down.svg', }, - 'icon.ungroup-objects': { - '_original': { - '$value': '/icon/ungroup-objects.svg', + 'icon.thumbs-down--filled': { + _original: { + $value: '/icon/thumbs-down--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ungroup-objects', - '$type': 'link', - '$value': '/icon/ungroup-objects.svg', + id: 'icon.thumbs-down--filled', + $type: 'link', + $value: '/icon/thumbs-down--filled.svg', }, - 'icon.unknown': { - '_original': { - '$value': '/icon/unknown.svg', + 'icon.thumbs-up': { + _original: { + $value: '/icon/thumbs-up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.unknown', - '$type': 'link', - '$value': '/icon/unknown.svg', + id: 'icon.thumbs-up', + $type: 'link', + $value: '/icon/thumbs-up.svg', }, - 'icon.unknown--filled': { - '_original': { - '$value': '/icon/unknown--filled.svg', + 'icon.thumbs-up--filled': { + _original: { + $value: '/icon/thumbs-up--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.unknown--filled', - '$type': 'link', - '$value': '/icon/unknown--filled.svg', + id: 'icon.thumbs-up--filled', + $type: 'link', + $value: '/icon/thumbs-up--filled.svg', }, - 'icon.unlink': { - '_original': { - '$value': '/icon/unlink.svg', + 'icon.thunderstorm': { + _original: { + $value: '/icon/thunderstorm.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.unlink', - '$type': 'link', - '$value': '/icon/unlink.svg', + id: 'icon.thunderstorm', + $type: 'link', + $value: '/icon/thunderstorm.svg', }, - 'icon.unlocked': { - '_original': { - '$value': '/icon/unlocked.svg', + 'icon.thunderstorm--scattered': { + _original: { + $value: '/icon/thunderstorm--scattered.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.unlocked', - '$type': 'link', - '$value': '/icon/unlocked.svg', + id: 'icon.thunderstorm--scattered', + $type: 'link', + $value: '/icon/thunderstorm--scattered.svg', }, - 'icon.up-to-top': { - '_original': { - '$value': '/icon/up-to-top.svg', + 'icon.thunderstorm--scattered--night': { + _original: { + $value: '/icon/thunderstorm--scattered--night.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.up-to-top', - '$type': 'link', - '$value': '/icon/up-to-top.svg', + id: 'icon.thunderstorm--scattered--night', + $type: 'link', + $value: '/icon/thunderstorm--scattered--night.svg', }, - 'icon.update-now': { - '_original': { - '$value': '/icon/update-now.svg', + 'icon.thunderstorm--severe': { + _original: { + $value: '/icon/thunderstorm--severe.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.update-now', - '$type': 'link', - '$value': '/icon/update-now.svg', + id: 'icon.thunderstorm--severe', + $type: 'link', + $value: '/icon/thunderstorm--severe.svg', }, - 'icon.upgrade': { - '_original': { - '$value': '/icon/upgrade.svg', + 'icon.thunderstorm--strong': { + _original: { + $value: '/icon/thunderstorm--strong.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.upgrade', - '$type': 'link', - '$value': '/icon/upgrade.svg', + id: 'icon.thunderstorm--strong', + $type: 'link', + $value: '/icon/thunderstorm--strong.svg', }, - 'icon.upload': { - '_original': { - '$value': '/icon/upload.svg', + 'icon.ticket': { + _original: { + $value: '/icon/ticket.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.upload', - '$type': 'link', - '$value': '/icon/upload.svg', + id: 'icon.ticket', + $type: 'link', + $value: '/icon/ticket.svg', }, - 'icon.USB': { - '_original': { - '$value': '/icon/USB.svg', + 'icon.tides': { + _original: { + $value: '/icon/tides.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.USB', - '$type': 'link', - '$value': '/icon/USB.svg', + id: 'icon.tides', + $type: 'link', + $value: '/icon/tides.svg', }, - 'icon.user': { - '_original': { - '$value': '/icon/user.svg', + 'icon.TIF': { + _original: { + $value: '/icon/TIF.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user', - '$type': 'link', - '$value': '/icon/user.svg', + id: 'icon.TIF', + $type: 'link', + $value: '/icon/TIF.svg', }, - 'icon.user--access': { - '_original': { - '$value': '/icon/user--access.svg', + 'icon.time': { + _original: { + $value: '/icon/time.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--access', - '$type': 'link', - '$value': '/icon/user--access.svg', + id: 'icon.time', + $type: 'link', + $value: '/icon/time.svg', }, - 'icon.user--activity': { - '_original': { - '$value': '/icon/user--activity.svg', + 'icon.time-plot': { + _original: { + $value: '/icon/time-plot.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--activity', - '$type': 'link', - '$value': '/icon/user--activity.svg', + id: 'icon.time-plot', + $type: 'link', + $value: '/icon/time-plot.svg', }, - 'icon.user--admin': { - '_original': { - '$value': '/icon/user--admin.svg', + 'icon.timer': { + _original: { + $value: '/icon/timer.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--admin', - '$type': 'link', - '$value': '/icon/user--admin.svg', + id: 'icon.timer', + $type: 'link', + $value: '/icon/timer.svg', }, - 'icon.user--avatar': { - '_original': { - '$value': '/icon/user--avatar.svg', + 'icon.tool-box': { + _original: { + $value: '/icon/tool-box.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--avatar', - '$type': 'link', - '$value': '/icon/user--avatar.svg', + id: 'icon.tool-box', + $type: 'link', + $value: '/icon/tool-box.svg', }, - 'icon.user--avatar--filled': { - '_original': { - '$value': '/icon/user--avatar--filled.svg', + 'icon.tool-kit': { + _original: { + $value: '/icon/tool-kit.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--avatar--filled', - '$type': 'link', - '$value': '/icon/user--avatar--filled.svg', + id: 'icon.tool-kit', + $type: 'link', + $value: '/icon/tool-kit.svg', }, - 'icon.user--avatar--filled--alt': { - '_original': { - '$value': '/icon/user--avatar--filled--alt.svg', + 'icon.tools': { + _original: { + $value: '/icon/tools.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--avatar--filled--alt', - '$type': 'link', - '$value': '/icon/user--avatar--filled--alt.svg', + id: 'icon.tools', + $type: 'link', + $value: '/icon/tools.svg', }, - 'icon.user--certification': { - '_original': { - '$value': '/icon/user--certification.svg', + 'icon.tools--alt': { + _original: { + $value: '/icon/tools--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--certification', - '$type': 'link', - '$value': '/icon/user--certification.svg', + id: 'icon.tools--alt', + $type: 'link', + $value: '/icon/tools--alt.svg', }, - 'icon.user--data': { - '_original': { - '$value': '/icon/user--data.svg', + 'icon.tornado': { + _original: { + $value: '/icon/tornado.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--data', - '$type': 'link', - '$value': '/icon/user--data.svg', + id: 'icon.tornado', + $type: 'link', + $value: '/icon/tornado.svg', }, - 'icon.user--favorite': { - '_original': { - '$value': '/icon/user--favorite.svg', + 'icon.tornado-warning': { + _original: { + $value: '/icon/tornado-warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--favorite', - '$type': 'link', - '$value': '/icon/user--favorite.svg', + id: 'icon.tornado-warning', + $type: 'link', + $value: '/icon/tornado-warning.svg', }, - 'icon.user--favorite--alt': { - '_original': { - '$value': '/icon/user--favorite--alt.svg', + 'icon.touch--1': { + _original: { + $value: '/icon/touch--1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--favorite--alt', - '$type': 'link', - '$value': '/icon/user--favorite--alt.svg', + id: 'icon.touch--1', + $type: 'link', + $value: '/icon/touch--1.svg', }, - 'icon.user--favorite--alt--filled': { - '_original': { - '$value': '/icon/user--favorite--alt--filled.svg', + 'icon.touch--1--filled': { + _original: { + $value: '/icon/touch--1--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--favorite--alt--filled', - '$type': 'link', - '$value': '/icon/user--favorite--alt--filled.svg', + id: 'icon.touch--1--filled', + $type: 'link', + $value: '/icon/touch--1--filled.svg', }, - 'icon.user--filled': { - '_original': { - '$value': '/icon/user--filled.svg', + 'icon.touch--1-down': { + _original: { + $value: '/icon/touch--1-down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--filled', - '$type': 'link', - '$value': '/icon/user--filled.svg', + id: 'icon.touch--1-down', + $type: 'link', + $value: '/icon/touch--1-down.svg', }, - 'icon.user--follow': { - '_original': { - '$value': '/icon/user--follow.svg', + 'icon.touch--1-down--filled': { + _original: { + $value: '/icon/touch--1-down--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--follow', - '$type': 'link', - '$value': '/icon/user--follow.svg', + id: 'icon.touch--1-down--filled', + $type: 'link', + $value: '/icon/touch--1-down--filled.svg', }, - 'icon.user--identification': { - '_original': { - '$value': '/icon/user--identification.svg', + 'icon.touch--2': { + _original: { + $value: '/icon/touch--2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--identification', - '$type': 'link', - '$value': '/icon/user--identification.svg', + id: 'icon.touch--2', + $type: 'link', + $value: '/icon/touch--2.svg', }, - 'icon.user--military': { - '_original': { - '$value': '/icon/user--military.svg', + 'icon.touch--2--filled': { + _original: { + $value: '/icon/touch--2--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--military', - '$type': 'link', - '$value': '/icon/user--military.svg', + id: 'icon.touch--2--filled', + $type: 'link', + $value: '/icon/touch--2--filled.svg', }, - 'icon.user--multiple': { - '_original': { - '$value': '/icon/user--multiple.svg', + 'icon.touch--interaction': { + _original: { + $value: '/icon/touch--interaction.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--multiple', - '$type': 'link', - '$value': '/icon/user--multiple.svg', + id: 'icon.touch--interaction', + $type: 'link', + $value: '/icon/touch--interaction.svg', }, - 'icon.user--online': { - '_original': { - '$value': '/icon/user--online.svg', + 'icon.traffic--event': { + _original: { + $value: '/icon/traffic--event.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--online', - '$type': 'link', - '$value': '/icon/user--online.svg', + id: 'icon.traffic--event', + $type: 'link', + $value: '/icon/traffic--event.svg', }, - 'icon.user--profile': { - '_original': { - '$value': '/icon/user--profile.svg', + 'icon.traffic--flow': { + _original: { + $value: '/icon/traffic--flow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--profile', - '$type': 'link', - '$value': '/icon/user--profile.svg', + id: 'icon.traffic--flow', + $type: 'link', + $value: '/icon/traffic--flow.svg', }, - 'icon.user--role': { - '_original': { - '$value': '/icon/user--role.svg', + 'icon.traffic--flow-incident': { + _original: { + $value: '/icon/traffic--flow-incident.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--role', - '$type': 'link', - '$value': '/icon/user--role.svg', + id: 'icon.traffic--flow-incident', + $type: 'link', + $value: '/icon/traffic--flow-incident.svg', }, - 'icon.user--service-desk': { - '_original': { - '$value': '/icon/user--service-desk.svg', + 'icon.traffic--incident': { + _original: { + $value: '/icon/traffic--incident.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--service-desk', - '$type': 'link', - '$value': '/icon/user--service-desk.svg', + id: 'icon.traffic--incident', + $type: 'link', + $value: '/icon/traffic--incident.svg', }, - 'icon.user--settings': { - '_original': { - '$value': '/icon/user--settings.svg', + 'icon.traffic--weather-incident': { + _original: { + $value: '/icon/traffic--weather-incident.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--settings', - '$type': 'link', - '$value': '/icon/user--settings.svg', + id: 'icon.traffic--weather-incident', + $type: 'link', + $value: '/icon/traffic--weather-incident.svg', }, - 'icon.user--simulation': { - '_original': { - '$value': '/icon/user--simulation.svg', + 'icon.traffic-cone': { + _original: { + $value: '/icon/traffic-cone.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--simulation', - '$type': 'link', - '$value': '/icon/user--simulation.svg', + id: 'icon.traffic-cone', + $type: 'link', + $value: '/icon/traffic-cone.svg', }, - 'icon.user--speaker': { - '_original': { - '$value': '/icon/user--speaker.svg', + 'icon.train': { + _original: { + $value: '/icon/train.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--speaker', - '$type': 'link', - '$value': '/icon/user--speaker.svg', + id: 'icon.train', + $type: 'link', + $value: '/icon/train.svg', }, - 'icon.user--x-ray': { - '_original': { - '$value': '/icon/user--x-ray.svg', + 'icon.train--heart': { + _original: { + $value: '/icon/train--heart.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user--x-ray', - '$type': 'link', - '$value': '/icon/user--x-ray.svg', + id: 'icon.train--heart', + $type: 'link', + $value: '/icon/train--heart.svg', }, - 'icon.user-profile--alt': { - '_original': { - '$value': '/icon/user-profile--alt.svg', + 'icon.train--profile': { + _original: { + $value: '/icon/train--profile.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.user-profile--alt', - '$type': 'link', - '$value': '/icon/user-profile--alt.svg', + id: 'icon.train--profile', + $type: 'link', + $value: '/icon/train--profile.svg', }, - 'icon.uv-index': { - '_original': { - '$value': '/icon/uv-index.svg', + 'icon.train--speed': { + _original: { + $value: '/icon/train--speed.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.uv-index', - '$type': 'link', - '$value': '/icon/uv-index.svg', + id: 'icon.train--speed', + $type: 'link', + $value: '/icon/train--speed.svg', }, - 'icon.uv-index--alt': { - '_original': { - '$value': '/icon/uv-index--alt.svg', + 'icon.train--ticket': { + _original: { + $value: '/icon/train--ticket.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.uv-index--alt', - '$type': 'link', - '$value': '/icon/uv-index--alt.svg', + id: 'icon.train--ticket', + $type: 'link', + $value: '/icon/train--ticket.svg', }, - 'icon.uv-index--filled': { - '_original': { - '$value': '/icon/uv-index--filled.svg', + 'icon.train--time': { + _original: { + $value: '/icon/train--time.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.uv-index--filled', - '$type': 'link', - '$value': '/icon/uv-index--filled.svg', + id: 'icon.train--time', + $type: 'link', + $value: '/icon/train--time.svg', }, - 'icon.value--variable': { - '_original': { - '$value': '/icon/value--variable.svg', + 'icon.tram': { + _original: { + $value: '/icon/tram.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.value--variable', - '$type': 'link', - '$value': '/icon/value--variable.svg', + id: 'icon.tram', + $type: 'link', + $value: '/icon/tram.svg', }, - 'icon.van': { - '_original': { - '$value': '/icon/van.svg', + 'icon.transgender': { + _original: { + $value: '/icon/transgender.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.van', - '$type': 'link', - '$value': '/icon/van.svg', + id: 'icon.transgender', + $type: 'link', + $value: '/icon/transgender.svg', }, - 'icon.vegetation--asset': { - '_original': { - '$value': '/icon/vegetation--asset.svg', + 'icon.translate': { + _original: { + $value: '/icon/translate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vegetation--asset', - '$type': 'link', - '$value': '/icon/vegetation--asset.svg', + id: 'icon.translate', + $type: 'link', + $value: '/icon/translate.svg', }, - 'icon.vehicle--api': { - '_original': { - '$value': '/icon/vehicle--api.svg', + 'icon.transmission-lte': { + _original: { + $value: '/icon/transmission-lte.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vehicle--api', - '$type': 'link', - '$value': '/icon/vehicle--api.svg', + id: 'icon.transmission-lte', + $type: 'link', + $value: '/icon/transmission-lte.svg', }, - 'icon.vehicle--connected': { - '_original': { - '$value': '/icon/vehicle--connected.svg', + 'icon.transpose': { + _original: { + $value: '/icon/transpose.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vehicle--connected', - '$type': 'link', - '$value': '/icon/vehicle--connected.svg', + id: 'icon.transpose', + $type: 'link', + $value: '/icon/transpose.svg', }, - 'icon.vehicle--insights': { - '_original': { - '$value': '/icon/vehicle--insights.svg', + 'icon.trash-can': { + _original: { + $value: '/icon/trash-can.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vehicle--insights', - '$type': 'link', - '$value': '/icon/vehicle--insights.svg', + id: 'icon.trash-can', + $type: 'link', + $value: '/icon/trash-can.svg', }, - 'icon.vehicle--services': { - '_original': { - '$value': '/icon/vehicle--services.svg', + 'icon.tree': { + _original: { + $value: '/icon/tree.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vehicle--services', - '$type': 'link', - '$value': '/icon/vehicle--services.svg', + id: 'icon.tree', + $type: 'link', + $value: '/icon/tree.svg', }, - 'icon.version': { - '_original': { - '$value': '/icon/version.svg', + 'icon.tree--fall-risk': { + _original: { + $value: '/icon/tree--fall-risk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.version', - '$type': 'link', - '$value': '/icon/version.svg', + id: 'icon.tree--fall-risk', + $type: 'link', + $value: '/icon/tree--fall-risk.svg', }, - 'icon.vertical-view': { - '_original': { - '$value': '/icon/vertical-view.svg', + 'icon.tree-view': { + _original: { + $value: '/icon/tree-view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vertical-view', - '$type': 'link', - '$value': '/icon/vertical-view.svg', + id: 'icon.tree-view', + $type: 'link', + $value: '/icon/tree-view.svg', }, - 'icon.video': { - '_original': { - '$value': '/icon/video.svg', + 'icon.tree-view--alt': { + _original: { + $value: '/icon/tree-view--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.video', - '$type': 'link', - '$value': '/icon/video.svg', + id: 'icon.tree-view--alt', + $type: 'link', + $value: '/icon/tree-view--alt.svg', }, - 'icon.video--add': { - '_original': { - '$value': '/icon/video--add.svg', + 'icon.trophy': { + _original: { + $value: '/icon/trophy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.video--add', - '$type': 'link', - '$value': '/icon/video--add.svg', + id: 'icon.trophy', + $type: 'link', + $value: '/icon/trophy.svg', }, - 'icon.video--chat': { - '_original': { - '$value': '/icon/video--chat.svg', + 'icon.trophy--filled': { + _original: { + $value: '/icon/trophy--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.video--chat', - '$type': 'link', - '$value': '/icon/video--chat.svg', + id: 'icon.trophy--filled', + $type: 'link', + $value: '/icon/trophy--filled.svg', }, - 'icon.video--filled': { - '_original': { - '$value': '/icon/video--filled.svg', + 'icon.tropical-storm': { + _original: { + $value: '/icon/tropical-storm.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.video--filled', - '$type': 'link', - '$value': '/icon/video--filled.svg', + id: 'icon.tropical-storm', + $type: 'link', + $value: '/icon/tropical-storm.svg', }, - 'icon.video--off': { - '_original': { - '$value': '/icon/video--off.svg', + 'icon.tropical-storm--model-tracks': { + _original: { + $value: '/icon/tropical-storm--model-tracks.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.video--off', - '$type': 'link', - '$value': '/icon/video--off.svg', + id: 'icon.tropical-storm--model-tracks', + $type: 'link', + $value: '/icon/tropical-storm--model-tracks.svg', }, - 'icon.video--off--filled': { - '_original': { - '$value': '/icon/video--off--filled.svg', + 'icon.tropical-storm--tracks': { + _original: { + $value: '/icon/tropical-storm--tracks.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.video--off--filled', - '$type': 'link', - '$value': '/icon/video--off--filled.svg', + id: 'icon.tropical-storm--tracks', + $type: 'link', + $value: '/icon/tropical-storm--tracks.svg', }, - 'icon.view': { - '_original': { - '$value': '/icon/view.svg', + 'icon.tropical-warning': { + _original: { + $value: '/icon/tropical-warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view', - '$type': 'link', - '$value': '/icon/view.svg', + id: 'icon.tropical-warning', + $type: 'link', + $value: '/icon/tropical-warning.svg', }, - 'icon.view--filled': { - '_original': { - '$value': '/icon/view--filled.svg', + 'icon.tsunami': { + _original: { + $value: '/icon/tsunami.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view--filled', - '$type': 'link', - '$value': '/icon/view--filled.svg', + id: 'icon.tsunami', + $type: 'link', + $value: '/icon/tsunami.svg', }, - 'icon.view--mode-1': { - '_original': { - '$value': '/icon/view--mode-1.svg', + 'icon.TSV': { + _original: { + $value: '/icon/TSV.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view--mode-1', - '$type': 'link', - '$value': '/icon/view--mode-1.svg', + id: 'icon.TSV', + $type: 'link', + $value: '/icon/TSV.svg', }, - 'icon.view--mode-2': { - '_original': { - '$value': '/icon/view--mode-2.svg', + 'icon.two-factor-authentication': { + _original: { + $value: '/icon/two-factor-authentication.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view--mode-2', - '$type': 'link', - '$value': '/icon/view--mode-2.svg', + id: 'icon.two-factor-authentication', + $type: 'link', + $value: '/icon/two-factor-authentication.svg', }, - 'icon.view--off': { - '_original': { - '$value': '/icon/view--off.svg', + 'icon.two-person-lift': { + _original: { + $value: '/icon/two-person-lift.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view--off', - '$type': 'link', - '$value': '/icon/view--off.svg', + id: 'icon.two-person-lift', + $type: 'link', + $value: '/icon/two-person-lift.svg', }, - 'icon.view--off--filled': { - '_original': { - '$value': '/icon/view--off--filled.svg', + 'icon.TXT': { + _original: { + $value: '/icon/TXT.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view--off--filled', - '$type': 'link', - '$value': '/icon/view--off--filled.svg', + id: 'icon.TXT', + $type: 'link', + $value: '/icon/TXT.svg', }, - 'icon.view-next': { - '_original': { - '$value': '/icon/view-next.svg', + 'icon.TXT--reference': { + _original: { + $value: '/icon/TXT--reference.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.view-next', - '$type': 'link', - '$value': '/icon/view-next.svg', + id: 'icon.TXT--reference', + $type: 'link', + $value: '/icon/TXT--reference.svg', }, - 'icon.virtual-column': { - '_original': { - '$value': '/icon/virtual-column.svg', + 'icon.type-pattern': { + _original: { + $value: '/icon/type-pattern.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.virtual-column', - '$type': 'link', - '$value': '/icon/virtual-column.svg', + id: 'icon.type-pattern', + $type: 'link', + $value: '/icon/type-pattern.svg', }, - 'icon.virtual-column--key': { - '_original': { - '$value': '/icon/virtual-column--key.svg', + 'icon.types': { + _original: { + $value: '/icon/types.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.virtual-column--key', - '$type': 'link', - '$value': '/icon/virtual-column--key.svg', + id: 'icon.types', + $type: 'link', + $value: '/icon/types.svg', }, - 'icon.virtual-desktop': { - '_original': { - '$value': '/icon/virtual-desktop.svg', + 'icon.U1': { + _original: { + $value: '/icon/U1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.virtual-desktop', - '$type': 'link', - '$value': '/icon/virtual-desktop.svg', + id: 'icon.U1', + $type: 'link', + $value: '/icon/U1.svg', }, - 'icon.virtual-machine': { - '_original': { - '$value': '/icon/virtual-machine.svg', + 'icon.U2': { + _original: { + $value: '/icon/U2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.virtual-machine', - '$type': 'link', - '$value': '/icon/virtual-machine.svg', + id: 'icon.U2', + $type: 'link', + $value: '/icon/U2.svg', }, - 'icon.virtual-private-cloud': { - '_original': { - '$value': '/icon/virtual-private-cloud.svg', + 'icon.U3': { + _original: { + $value: '/icon/U3.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.virtual-private-cloud', - '$type': 'link', - '$value': '/icon/virtual-private-cloud.svg', + id: 'icon.U3', + $type: 'link', + $value: '/icon/U3.svg', }, - 'icon.virtual-private-cloud--alt': { - '_original': { - '$value': '/icon/virtual-private-cloud--alt.svg', + 'icon.umbrella': { + _original: { + $value: '/icon/umbrella.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.virtual-private-cloud--alt', - '$type': 'link', - '$value': '/icon/virtual-private-cloud--alt.svg', + id: 'icon.umbrella', + $type: 'link', + $value: '/icon/umbrella.svg', }, - 'icon.visual-recognition': { - '_original': { - '$value': '/icon/visual-recognition.svg', + 'icon.undefined': { + _original: { + $value: '/icon/undefined.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.visual-recognition', - '$type': 'link', - '$value': '/icon/visual-recognition.svg', + id: 'icon.undefined', + $type: 'link', + $value: '/icon/undefined.svg', }, - 'icon.vlan': { - '_original': { - '$value': '/icon/vlan.svg', + 'icon.undefined--filled': { + _original: { + $value: '/icon/undefined--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vlan', - '$type': 'link', - '$value': '/icon/vlan.svg', + id: 'icon.undefined--filled', + $type: 'link', + $value: '/icon/undefined--filled.svg', }, - 'icon.vlan--ibm': { - '_original': { - '$value': '/icon/vlan--ibm.svg', + 'icon.undo': { + _original: { + $value: '/icon/undo.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vlan--ibm', - '$type': 'link', - '$value': '/icon/vlan--ibm.svg', + id: 'icon.undo', + $type: 'link', + $value: '/icon/undo.svg', }, - 'icon.vmdk-disk': { - '_original': { - '$value': '/icon/vmdk-disk.svg', + 'icon.ungroup-objects': { + _original: { + $value: '/icon/ungroup-objects.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vmdk-disk', - '$type': 'link', - '$value': '/icon/vmdk-disk.svg', + id: 'icon.ungroup-objects', + $type: 'link', + $value: '/icon/ungroup-objects.svg', }, - 'icon.voice-activate': { - '_original': { - '$value': '/icon/voice-activate.svg', + 'icon.unknown': { + _original: { + $value: '/icon/unknown.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.voice-activate', - '$type': 'link', - '$value': '/icon/voice-activate.svg', + id: 'icon.unknown', + $type: 'link', + $value: '/icon/unknown.svg', }, - 'icon.voicemail': { - '_original': { - '$value': '/icon/voicemail.svg', + 'icon.unknown--filled': { + _original: { + $value: '/icon/unknown--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.voicemail', - '$type': 'link', - '$value': '/icon/voicemail.svg', + id: 'icon.unknown--filled', + $type: 'link', + $value: '/icon/unknown--filled.svg', }, - 'icon.volume--block-storage': { - '_original': { - '$value': '/icon/volume--block-storage.svg', + 'icon.unlink': { + _original: { + $value: '/icon/unlink.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--block-storage', - '$type': 'link', - '$value': '/icon/volume--block-storage.svg', + id: 'icon.unlink', + $type: 'link', + $value: '/icon/unlink.svg', }, - 'icon.volume--down': { - '_original': { - '$value': '/icon/volume--down.svg', + 'icon.unlocked': { + _original: { + $value: '/icon/unlocked.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--down', - '$type': 'link', - '$value': '/icon/volume--down.svg', + id: 'icon.unlocked', + $type: 'link', + $value: '/icon/unlocked.svg', }, - 'icon.volume--down--alt': { - '_original': { - '$value': '/icon/volume--down--alt.svg', + 'icon.up-to-top': { + _original: { + $value: '/icon/up-to-top.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--down--alt', - '$type': 'link', - '$value': '/icon/volume--down--alt.svg', + id: 'icon.up-to-top', + $type: 'link', + $value: '/icon/up-to-top.svg', }, - 'icon.volume--down--filled': { - '_original': { - '$value': '/icon/volume--down--filled.svg', + 'icon.update-now': { + _original: { + $value: '/icon/update-now.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--down--filled', - '$type': 'link', - '$value': '/icon/volume--down--filled.svg', + id: 'icon.update-now', + $type: 'link', + $value: '/icon/update-now.svg', }, - 'icon.volume--down--filled--alt': { - '_original': { - '$value': '/icon/volume--down--filled--alt.svg', + 'icon.upgrade': { + _original: { + $value: '/icon/upgrade.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--down--filled--alt', - '$type': 'link', - '$value': '/icon/volume--down--filled--alt.svg', + id: 'icon.upgrade', + $type: 'link', + $value: '/icon/upgrade.svg', }, - 'icon.volume--file-storage': { - '_original': { - '$value': '/icon/volume--file-storage.svg', + 'icon.upload': { + _original: { + $value: '/icon/upload.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--file-storage', - '$type': 'link', - '$value': '/icon/volume--file-storage.svg', + id: 'icon.upload', + $type: 'link', + $value: '/icon/upload.svg', }, - 'icon.volume--mute': { - '_original': { - '$value': '/icon/volume--mute.svg', + 'icon.USB': { + _original: { + $value: '/icon/USB.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--mute', - '$type': 'link', - '$value': '/icon/volume--mute.svg', + id: 'icon.USB', + $type: 'link', + $value: '/icon/USB.svg', }, - 'icon.volume--mute--filled': { - '_original': { - '$value': '/icon/volume--mute--filled.svg', + 'icon.user': { + _original: { + $value: '/icon/user.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--mute--filled', - '$type': 'link', - '$value': '/icon/volume--mute--filled.svg', + id: 'icon.user', + $type: 'link', + $value: '/icon/user.svg', }, - 'icon.volume--object-storage': { - '_original': { - '$value': '/icon/volume--object-storage.svg', + 'icon.user--access': { + _original: { + $value: '/icon/user--access.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--object-storage', - '$type': 'link', - '$value': '/icon/volume--object-storage.svg', + id: 'icon.user--access', + $type: 'link', + $value: '/icon/user--access.svg', }, - 'icon.volume--up': { - '_original': { - '$value': '/icon/volume--up.svg', + 'icon.user--activity': { + _original: { + $value: '/icon/user--activity.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--up', - '$type': 'link', - '$value': '/icon/volume--up.svg', + id: 'icon.user--activity', + $type: 'link', + $value: '/icon/user--activity.svg', }, - 'icon.volume--up--alt': { - '_original': { - '$value': '/icon/volume--up--alt.svg', + 'icon.user--admin': { + _original: { + $value: '/icon/user--admin.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--up--alt', - '$type': 'link', - '$value': '/icon/volume--up--alt.svg', + id: 'icon.user--admin', + $type: 'link', + $value: '/icon/user--admin.svg', }, - 'icon.volume--up--filled': { - '_original': { - '$value': '/icon/volume--up--filled.svg', + 'icon.user--avatar': { + _original: { + $value: '/icon/user--avatar.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--up--filled', - '$type': 'link', - '$value': '/icon/volume--up--filled.svg', + id: 'icon.user--avatar', + $type: 'link', + $value: '/icon/user--avatar.svg', }, - 'icon.volume--up--filled--alt': { - '_original': { - '$value': '/icon/volume--up--filled--alt.svg', + 'icon.user--avatar--filled': { + _original: { + $value: '/icon/user--avatar--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.volume--up--filled--alt', - '$type': 'link', - '$value': '/icon/volume--up--filled--alt.svg', + id: 'icon.user--avatar--filled', + $type: 'link', + $value: '/icon/user--avatar--filled.svg', }, - 'icon.VPN': { - '_original': { - '$value': '/icon/VPN.svg', + 'icon.user--avatar--filled--alt': { + _original: { + $value: '/icon/user--avatar--filled--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.VPN', - '$type': 'link', - '$value': '/icon/VPN.svg', + id: 'icon.user--avatar--filled--alt', + $type: 'link', + $value: '/icon/user--avatar--filled--alt.svg', }, - 'icon.vpn--connection': { - '_original': { - '$value': '/icon/vpn--connection.svg', + 'icon.user--certification': { + _original: { + $value: '/icon/user--certification.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vpn--connection', - '$type': 'link', - '$value': '/icon/vpn--connection.svg', + id: 'icon.user--certification', + $type: 'link', + $value: '/icon/user--certification.svg', }, - 'icon.vpn--policy': { - '_original': { - '$value': '/icon/vpn--policy.svg', + 'icon.user--data': { + _original: { + $value: '/icon/user--data.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.vpn--policy', - '$type': 'link', - '$value': '/icon/vpn--policy.svg', + id: 'icon.user--data', + $type: 'link', + $value: '/icon/user--data.svg', }, - 'icon.wallet': { - '_original': { - '$value': '/icon/wallet.svg', + 'icon.user--favorite': { + _original: { + $value: '/icon/user--favorite.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wallet', - '$type': 'link', - '$value': '/icon/wallet.svg', + id: 'icon.user--favorite', + $type: 'link', + $value: '/icon/user--favorite.svg', }, - 'icon.warning': { - '_original': { - '$value': '/icon/warning.svg', + 'icon.user--favorite--alt': { + _original: { + $value: '/icon/user--favorite--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning', - '$type': 'link', - '$value': '/icon/warning.svg', + id: 'icon.user--favorite--alt', + $type: 'link', + $value: '/icon/user--favorite--alt.svg', }, - 'icon.warning--alt': { - '_original': { - '$value': '/icon/warning--alt.svg', + 'icon.user--favorite--alt--filled': { + _original: { + $value: '/icon/user--favorite--alt--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--alt', - '$type': 'link', - '$value': '/icon/warning--alt.svg', + id: 'icon.user--favorite--alt--filled', + $type: 'link', + $value: '/icon/user--favorite--alt--filled.svg', }, - 'icon.warning--alt--filled': { - '_original': { - '$value': '/icon/warning--alt--filled.svg', + 'icon.user--filled': { + _original: { + $value: '/icon/user--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--alt--filled', - '$type': 'link', - '$value': '/icon/warning--alt--filled.svg', + id: 'icon.user--filled', + $type: 'link', + $value: '/icon/user--filled.svg', }, - 'icon.warning--alt-inverted': { - '_original': { - '$value': '/icon/warning--alt-inverted.svg', + 'icon.user--follow': { + _original: { + $value: '/icon/user--follow.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--alt-inverted', - '$type': 'link', - '$value': '/icon/warning--alt-inverted.svg', + id: 'icon.user--follow', + $type: 'link', + $value: '/icon/user--follow.svg', }, - 'icon.warning--alt-inverted--filled': { - '_original': { - '$value': '/icon/warning--alt-inverted--filled.svg', + 'icon.user--identification': { + _original: { + $value: '/icon/user--identification.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--alt-inverted--filled', - '$type': 'link', - '$value': '/icon/warning--alt-inverted--filled.svg', + id: 'icon.user--identification', + $type: 'link', + $value: '/icon/user--identification.svg', }, - 'icon.warning--filled': { - '_original': { - '$value': '/icon/warning--filled.svg', + 'icon.user--military': { + _original: { + $value: '/icon/user--military.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--filled', - '$type': 'link', - '$value': '/icon/warning--filled.svg', + id: 'icon.user--military', + $type: 'link', + $value: '/icon/user--military.svg', }, - 'icon.warning--hex': { - '_original': { - '$value': '/icon/warning--hex.svg', + 'icon.user--multiple': { + _original: { + $value: '/icon/user--multiple.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--hex', - '$type': 'link', - '$value': '/icon/warning--hex.svg', + id: 'icon.user--multiple', + $type: 'link', + $value: '/icon/user--multiple.svg', }, - 'icon.warning--hex--filled': { - '_original': { - '$value': '/icon/warning--hex--filled.svg', + 'icon.user--online': { + _original: { + $value: '/icon/user--online.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--hex--filled', - '$type': 'link', - '$value': '/icon/warning--hex--filled.svg', + id: 'icon.user--online', + $type: 'link', + $value: '/icon/user--online.svg', }, - 'icon.warning--other': { - '_original': { - '$value': '/icon/warning--other.svg', + 'icon.user--profile': { + _original: { + $value: '/icon/user--profile.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning--other', - '$type': 'link', - '$value': '/icon/warning--other.svg', + id: 'icon.user--profile', + $type: 'link', + $value: '/icon/user--profile.svg', }, - 'icon.warning-square': { - '_original': { - '$value': '/icon/warning-square.svg', + 'icon.user--role': { + _original: { + $value: '/icon/user--role.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning-square', - '$type': 'link', - '$value': '/icon/warning-square.svg', + id: 'icon.user--role', + $type: 'link', + $value: '/icon/user--role.svg', }, - 'icon.warning-square--filled': { - '_original': { - '$value': '/icon/warning-square--filled.svg', + 'icon.user--service-desk': { + _original: { + $value: '/icon/user--service-desk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.warning-square--filled', - '$type': 'link', - '$value': '/icon/warning-square--filled.svg', + id: 'icon.user--service-desk', + $type: 'link', + $value: '/icon/user--service-desk.svg', }, - 'icon.watch': { - '_original': { - '$value': '/icon/watch.svg', + 'icon.user--settings': { + _original: { + $value: '/icon/user--settings.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.watch', - '$type': 'link', - '$value': '/icon/watch.svg', + id: 'icon.user--settings', + $type: 'link', + $value: '/icon/user--settings.svg', }, - 'icon.watson': { - '_original': { - '$value': '/icon/watson.svg', + 'icon.user--simulation': { + _original: { + $value: '/icon/user--simulation.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.watson', - '$type': 'link', - '$value': '/icon/watson.svg', + id: 'icon.user--simulation', + $type: 'link', + $value: '/icon/user--simulation.svg', }, - 'icon.watson--machine-learning': { - '_original': { - '$value': '/icon/watson--machine-learning.svg', + 'icon.user--speaker': { + _original: { + $value: '/icon/user--speaker.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.watson--machine-learning', - '$type': 'link', - '$value': '/icon/watson--machine-learning.svg', + id: 'icon.user--speaker', + $type: 'link', + $value: '/icon/user--speaker.svg', }, - 'icon.wave-direction': { - '_original': { - '$value': '/icon/wave-direction.svg', + 'icon.user--x-ray': { + _original: { + $value: '/icon/user--x-ray.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wave-direction', - '$type': 'link', - '$value': '/icon/wave-direction.svg', + id: 'icon.user--x-ray', + $type: 'link', + $value: '/icon/user--x-ray.svg', }, - 'icon.wave-height': { - '_original': { - '$value': '/icon/wave-height.svg', + 'icon.user-profile--alt': { + _original: { + $value: '/icon/user-profile--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wave-height', - '$type': 'link', - '$value': '/icon/wave-height.svg', + id: 'icon.user-profile--alt', + $type: 'link', + $value: '/icon/user-profile--alt.svg', }, - 'icon.wave-period': { - '_original': { - '$value': '/icon/wave-period.svg', + 'icon.uv-index': { + _original: { + $value: '/icon/uv-index.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wave-period', - '$type': 'link', - '$value': '/icon/wave-period.svg', + id: 'icon.uv-index', + $type: 'link', + $value: '/icon/uv-index.svg', }, - 'icon.weather-front--cold': { - '_original': { - '$value': '/icon/weather-front--cold.svg', + 'icon.uv-index--alt': { + _original: { + $value: '/icon/uv-index--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.weather-front--cold', - '$type': 'link', - '$value': '/icon/weather-front--cold.svg', + id: 'icon.uv-index--alt', + $type: 'link', + $value: '/icon/uv-index--alt.svg', }, - 'icon.weather-front--stationary': { - '_original': { - '$value': '/icon/weather-front--stationary.svg', + 'icon.uv-index--filled': { + _original: { + $value: '/icon/uv-index--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.weather-front--stationary', - '$type': 'link', - '$value': '/icon/weather-front--stationary.svg', + id: 'icon.uv-index--filled', + $type: 'link', + $value: '/icon/uv-index--filled.svg', }, - 'icon.weather-front--warm': { - '_original': { - '$value': '/icon/weather-front--warm.svg', + 'icon.value--variable': { + _original: { + $value: '/icon/value--variable.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.weather-front--warm', - '$type': 'link', - '$value': '/icon/weather-front--warm.svg', + id: 'icon.value--variable', + $type: 'link', + $value: '/icon/value--variable.svg', }, - 'icon.weather-station': { - '_original': { - '$value': '/icon/weather-station.svg', + 'icon.van': { + _original: { + $value: '/icon/van.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.weather-station', - '$type': 'link', - '$value': '/icon/weather-station.svg', + id: 'icon.van', + $type: 'link', + $value: '/icon/van.svg', }, - 'icon.webhook': { - '_original': { - '$value': '/icon/webhook.svg', + 'icon.vegetation--asset': { + _original: { + $value: '/icon/vegetation--asset.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.webhook', - '$type': 'link', - '$value': '/icon/webhook.svg', + id: 'icon.vegetation--asset', + $type: 'link', + $value: '/icon/vegetation--asset.svg', }, - 'icon.websheet': { - '_original': { - '$value': '/icon/websheet.svg', + 'icon.vehicle--api': { + _original: { + $value: '/icon/vehicle--api.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.websheet', - '$type': 'link', - '$value': '/icon/websheet.svg', + id: 'icon.vehicle--api', + $type: 'link', + $value: '/icon/vehicle--api.svg', }, - 'icon.wheat': { - '_original': { - '$value': '/icon/wheat.svg', + 'icon.vehicle--connected': { + _original: { + $value: '/icon/vehicle--connected.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wheat', - '$type': 'link', - '$value': '/icon/wheat.svg', + id: 'icon.vehicle--connected', + $type: 'link', + $value: '/icon/vehicle--connected.svg', }, - 'icon.wifi': { - '_original': { - '$value': '/icon/wifi.svg', + 'icon.vehicle--insights': { + _original: { + $value: '/icon/vehicle--insights.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi', - '$type': 'link', - '$value': '/icon/wifi.svg', + id: 'icon.vehicle--insights', + $type: 'link', + $value: '/icon/vehicle--insights.svg', }, - 'icon.wifi--controller': { - '_original': { - '$value': '/icon/wifi--controller.svg', + 'icon.vehicle--services': { + _original: { + $value: '/icon/vehicle--services.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi--controller', - '$type': 'link', - '$value': '/icon/wifi--controller.svg', + id: 'icon.vehicle--services', + $type: 'link', + $value: '/icon/vehicle--services.svg', }, - 'icon.wifi--not-secure': { - '_original': { - '$value': '/icon/wifi--not-secure.svg', + 'icon.version': { + _original: { + $value: '/icon/version.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi--not-secure', - '$type': 'link', - '$value': '/icon/wifi--not-secure.svg', + id: 'icon.version', + $type: 'link', + $value: '/icon/version.svg', }, - 'icon.wifi--off': { - '_original': { - '$value': '/icon/wifi--off.svg', + 'icon.vertical-view': { + _original: { + $value: '/icon/vertical-view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi--off', - '$type': 'link', - '$value': '/icon/wifi--off.svg', + id: 'icon.vertical-view', + $type: 'link', + $value: '/icon/vertical-view.svg', }, - 'icon.wifi--secure': { - '_original': { - '$value': '/icon/wifi--secure.svg', + 'icon.video': { + _original: { + $value: '/icon/video.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi--secure', - '$type': 'link', - '$value': '/icon/wifi--secure.svg', + id: 'icon.video', + $type: 'link', + $value: '/icon/video.svg', }, - 'icon.wifi-bridge': { - '_original': { - '$value': '/icon/wifi-bridge.svg', + 'icon.video--add': { + _original: { + $value: '/icon/video--add.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi-bridge', - '$type': 'link', - '$value': '/icon/wifi-bridge.svg', + id: 'icon.video--add', + $type: 'link', + $value: '/icon/video--add.svg', }, - 'icon.wifi-bridge--alt': { - '_original': { - '$value': '/icon/wifi-bridge--alt.svg', + 'icon.video--chat': { + _original: { + $value: '/icon/video--chat.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wifi-bridge--alt', - '$type': 'link', - '$value': '/icon/wifi-bridge--alt.svg', + id: 'icon.video--chat', + $type: 'link', + $value: '/icon/video--chat.svg', }, - 'icon.wikis': { - '_original': { - '$value': '/icon/wikis.svg', + 'icon.video--filled': { + _original: { + $value: '/icon/video--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wikis', - '$type': 'link', - '$value': '/icon/wikis.svg', + id: 'icon.video--filled', + $type: 'link', + $value: '/icon/video--filled.svg', }, - 'icon.wind-gusts': { - '_original': { - '$value': '/icon/wind-gusts.svg', + 'icon.video--off': { + _original: { + $value: '/icon/video--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wind-gusts', - '$type': 'link', - '$value': '/icon/wind-gusts.svg', + id: 'icon.video--off', + $type: 'link', + $value: '/icon/video--off.svg', }, - 'icon.wind-power': { - '_original': { - '$value': '/icon/wind-power.svg', + 'icon.video--off--filled': { + _original: { + $value: '/icon/video--off--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wind-power', - '$type': 'link', - '$value': '/icon/wind-power.svg', + id: 'icon.video--off--filled', + $type: 'link', + $value: '/icon/video--off--filled.svg', }, - 'icon.wind-stream': { - '_original': { - '$value': '/icon/wind-stream.svg', + 'icon.view': { + _original: { + $value: '/icon/view.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wind-stream', - '$type': 'link', - '$value': '/icon/wind-stream.svg', + id: 'icon.view', + $type: 'link', + $value: '/icon/view.svg', }, - 'icon.window--auto': { - '_original': { - '$value': '/icon/window--auto.svg', + 'icon.view--filled': { + _original: { + $value: '/icon/view--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.window--auto', - '$type': 'link', - '$value': '/icon/window--auto.svg', + id: 'icon.view--filled', + $type: 'link', + $value: '/icon/view--filled.svg', }, - 'icon.window--base': { - '_original': { - '$value': '/icon/window--base.svg', + 'icon.view--mode-1': { + _original: { + $value: '/icon/view--mode-1.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.window--base', - '$type': 'link', - '$value': '/icon/window--base.svg', + id: 'icon.view--mode-1', + $type: 'link', + $value: '/icon/view--mode-1.svg', }, - 'icon.window--black-saturation': { - '_original': { - '$value': '/icon/window--black-saturation.svg', + 'icon.view--mode-2': { + _original: { + $value: '/icon/view--mode-2.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.window--black-saturation', - '$type': 'link', - '$value': '/icon/window--black-saturation.svg', + id: 'icon.view--mode-2', + $type: 'link', + $value: '/icon/view--mode-2.svg', }, - 'icon.window--overlay': { - '_original': { - '$value': '/icon/window--overlay.svg', + 'icon.view--off': { + _original: { + $value: '/icon/view--off.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.window--overlay', - '$type': 'link', - '$value': '/icon/window--overlay.svg', + id: 'icon.view--off', + $type: 'link', + $value: '/icon/view--off.svg', }, - 'icon.window--preset': { - '_original': { - '$value': '/icon/window--preset.svg', + 'icon.view--off--filled': { + _original: { + $value: '/icon/view--off--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.window--preset', - '$type': 'link', - '$value': '/icon/window--preset.svg', + id: 'icon.view--off--filled', + $type: 'link', + $value: '/icon/view--off--filled.svg', }, - 'icon.windy': { - '_original': { - '$value': '/icon/windy.svg', + 'icon.view-next': { + _original: { + $value: '/icon/view-next.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.windy', - '$type': 'link', - '$value': '/icon/windy.svg', + id: 'icon.view-next', + $type: 'link', + $value: '/icon/view-next.svg', }, - 'icon.windy--dust': { - '_original': { - '$value': '/icon/windy--dust.svg', + 'icon.virtual-column': { + _original: { + $value: '/icon/virtual-column.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.windy--dust', - '$type': 'link', - '$value': '/icon/windy--dust.svg', + id: 'icon.virtual-column', + $type: 'link', + $value: '/icon/virtual-column.svg', }, - 'icon.windy--snow': { - '_original': { - '$value': '/icon/windy--snow.svg', + 'icon.virtual-column--key': { + _original: { + $value: '/icon/virtual-column--key.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.windy--snow', - '$type': 'link', - '$value': '/icon/windy--snow.svg', + id: 'icon.virtual-column--key', + $type: 'link', + $value: '/icon/virtual-column--key.svg', }, - 'icon.windy--strong': { - '_original': { - '$value': '/icon/windy--strong.svg', + 'icon.virtual-desktop': { + _original: { + $value: '/icon/virtual-desktop.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.windy--strong', - '$type': 'link', - '$value': '/icon/windy--strong.svg', + id: 'icon.virtual-desktop', + $type: 'link', + $value: '/icon/virtual-desktop.svg', }, - 'icon.winter-warning': { - '_original': { - '$value': '/icon/winter-warning.svg', + 'icon.virtual-machine': { + _original: { + $value: '/icon/virtual-machine.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.winter-warning', - '$type': 'link', - '$value': '/icon/winter-warning.svg', + id: 'icon.virtual-machine', + $type: 'link', + $value: '/icon/virtual-machine.svg', }, - 'icon.wintry-mix': { - '_original': { - '$value': '/icon/wintry-mix.svg', + 'icon.virtual-private-cloud': { + _original: { + $value: '/icon/virtual-private-cloud.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wintry-mix', - '$type': 'link', - '$value': '/icon/wintry-mix.svg', + id: 'icon.virtual-private-cloud', + $type: 'link', + $value: '/icon/virtual-private-cloud.svg', }, - 'icon.wireless-checkout': { - '_original': { - '$value': '/icon/wireless-checkout.svg', + 'icon.virtual-private-cloud--alt': { + _original: { + $value: '/icon/virtual-private-cloud--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.wireless-checkout', - '$type': 'link', - '$value': '/icon/wireless-checkout.svg', + id: 'icon.virtual-private-cloud--alt', + $type: 'link', + $value: '/icon/virtual-private-cloud--alt.svg', }, - 'icon.WMV': { - '_original': { - '$value': '/icon/WMV.svg', + 'icon.visual-recognition': { + _original: { + $value: '/icon/visual-recognition.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.WMV', - '$type': 'link', - '$value': '/icon/WMV.svg', + id: 'icon.visual-recognition', + $type: 'link', + $value: '/icon/visual-recognition.svg', }, - 'icon.word-cloud': { - '_original': { - '$value': '/icon/word-cloud.svg', + 'icon.vlan': { + _original: { + $value: '/icon/vlan.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.word-cloud', - '$type': 'link', - '$value': '/icon/word-cloud.svg', + id: 'icon.vlan', + $type: 'link', + $value: '/icon/vlan.svg', }, - 'icon.workspace': { - '_original': { - '$value': '/icon/workspace.svg', + 'icon.vlan--ibm': { + _original: { + $value: '/icon/vlan--ibm.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.workspace', - '$type': 'link', - '$value': '/icon/workspace.svg', + id: 'icon.vlan--ibm', + $type: 'link', + $value: '/icon/vlan--ibm.svg', }, - 'icon.workspace--import': { - '_original': { - '$value': '/icon/workspace--import.svg', + 'icon.vmdk-disk': { + _original: { + $value: '/icon/vmdk-disk.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.workspace--import', - '$type': 'link', - '$value': '/icon/workspace--import.svg', + id: 'icon.vmdk-disk', + $type: 'link', + $value: '/icon/vmdk-disk.svg', }, - 'icon.worship': { - '_original': { - '$value': '/icon/worship.svg', + 'icon.voice-activate': { + _original: { + $value: '/icon/voice-activate.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.worship', - '$type': 'link', - '$value': '/icon/worship.svg', + id: 'icon.voice-activate', + $type: 'link', + $value: '/icon/voice-activate.svg', }, - 'icon.worship--christian': { - '_original': { - '$value': '/icon/worship--christian.svg', + 'icon.voicemail': { + _original: { + $value: '/icon/voicemail.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.worship--christian', - '$type': 'link', - '$value': '/icon/worship--christian.svg', + id: 'icon.voicemail', + $type: 'link', + $value: '/icon/voicemail.svg', }, - 'icon.worship--jewish': { - '_original': { - '$value': '/icon/worship--jewish.svg', + 'icon.volume--block-storage': { + _original: { + $value: '/icon/volume--block-storage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.worship--jewish', - '$type': 'link', - '$value': '/icon/worship--jewish.svg', + id: 'icon.volume--block-storage', + $type: 'link', + $value: '/icon/volume--block-storage.svg', }, - 'icon.worship--muslim': { - '_original': { - '$value': '/icon/worship--muslim.svg', + 'icon.volume--down': { + _original: { + $value: '/icon/volume--down.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.worship--muslim', - '$type': 'link', - '$value': '/icon/worship--muslim.svg', + id: 'icon.volume--down', + $type: 'link', + $value: '/icon/volume--down.svg', }, - 'icon.X': { - '_original': { - '$value': '/icon/X.svg', + 'icon.volume--down--alt': { + _original: { + $value: '/icon/volume--down--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.X', - '$type': 'link', - '$value': '/icon/X.svg', + id: 'icon.volume--down--alt', + $type: 'link', + $value: '/icon/volume--down--alt.svg', }, - 'icon.x-axis': { - '_original': { - '$value': '/icon/x-axis.svg', + 'icon.volume--down--filled': { + _original: { + $value: '/icon/volume--down--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.x-axis', - '$type': 'link', - '$value': '/icon/x-axis.svg', + id: 'icon.volume--down--filled', + $type: 'link', + $value: '/icon/volume--down--filled.svg', }, - 'icon.XLS': { - '_original': { - '$value': '/icon/XLS.svg', + 'icon.volume--down--filled--alt': { + _original: { + $value: '/icon/volume--down--filled--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.XLS', - '$type': 'link', - '$value': '/icon/XLS.svg', + id: 'icon.volume--down--filled--alt', + $type: 'link', + $value: '/icon/volume--down--filled--alt.svg', }, - 'icon.XML': { - '_original': { - '$value': '/icon/XML.svg', + 'icon.volume--file-storage': { + _original: { + $value: '/icon/volume--file-storage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.XML', - '$type': 'link', - '$value': '/icon/XML.svg', + id: 'icon.volume--file-storage', + $type: 'link', + $value: '/icon/volume--file-storage.svg', }, - 'icon.Y': { - '_original': { - '$value': '/icon/Y.svg', + 'icon.volume--mute': { + _original: { + $value: '/icon/volume--mute.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.Y', - '$type': 'link', - '$value': '/icon/Y.svg', + id: 'icon.volume--mute', + $type: 'link', + $value: '/icon/volume--mute.svg', }, - 'icon.y-axis': { - '_original': { - '$value': '/icon/y-axis.svg', + 'icon.volume--mute--filled': { + _original: { + $value: '/icon/volume--mute--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.y-axis', - '$type': 'link', - '$value': '/icon/y-axis.svg', + id: 'icon.volume--mute--filled', + $type: 'link', + $value: '/icon/volume--mute--filled.svg', }, - 'icon.Z': { - '_original': { - '$value': '/icon/Z.svg', + 'icon.volume--object-storage': { + _original: { + $value: '/icon/volume--object-storage.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.Z', - '$type': 'link', - '$value': '/icon/Z.svg', + id: 'icon.volume--object-storage', + $type: 'link', + $value: '/icon/volume--object-storage.svg', }, - 'icon.z-axis': { - '_original': { - '$value': '/icon/z-axis.svg', + 'icon.volume--up': { + _original: { + $value: '/icon/volume--up.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.z-axis', - '$type': 'link', - '$value': '/icon/z-axis.svg', + id: 'icon.volume--up', + $type: 'link', + $value: '/icon/volume--up.svg', }, - 'icon.ZIP': { - '_original': { - '$value': '/icon/ZIP.svg', + 'icon.volume--up--alt': { + _original: { + $value: '/icon/volume--up--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ZIP', - '$type': 'link', - '$value': '/icon/ZIP.svg', + id: 'icon.volume--up--alt', + $type: 'link', + $value: '/icon/volume--up--alt.svg', }, - 'icon.ZIP--reference': { - '_original': { - '$value': '/icon/ZIP--reference.svg', + 'icon.volume--up--filled': { + _original: { + $value: '/icon/volume--up--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.ZIP--reference', - '$type': 'link', - '$value': '/icon/ZIP--reference.svg', + id: 'icon.volume--up--filled', + $type: 'link', + $value: '/icon/volume--up--filled.svg', }, - 'icon.zoom--area': { - '_original': { - '$value': '/icon/zoom--area.svg', + 'icon.volume--up--filled--alt': { + _original: { + $value: '/icon/volume--up--filled--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--area', - '$type': 'link', - '$value': '/icon/zoom--area.svg', + id: 'icon.volume--up--filled--alt', + $type: 'link', + $value: '/icon/volume--up--filled--alt.svg', }, - 'icon.zoom--fit': { - '_original': { - '$value': '/icon/zoom--fit.svg', + 'icon.VPN': { + _original: { + $value: '/icon/VPN.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--fit', - '$type': 'link', - '$value': '/icon/zoom--fit.svg', + id: 'icon.VPN', + $type: 'link', + $value: '/icon/VPN.svg', }, - 'icon.zoom--in': { - '_original': { - '$value': '/icon/zoom--in.svg', + 'icon.vpn--connection': { + _original: { + $value: '/icon/vpn--connection.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--in', - '$type': 'link', - '$value': '/icon/zoom--in.svg', + id: 'icon.vpn--connection', + $type: 'link', + $value: '/icon/vpn--connection.svg', }, - 'icon.zoom--in-area': { - '_original': { - '$value': '/icon/zoom--in-area.svg', + 'icon.vpn--policy': { + _original: { + $value: '/icon/vpn--policy.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--in-area', - '$type': 'link', - '$value': '/icon/zoom--in-area.svg', + id: 'icon.vpn--policy', + $type: 'link', + $value: '/icon/vpn--policy.svg', }, - 'icon.zoom--out': { - '_original': { - '$value': '/icon/zoom--out.svg', + 'icon.wallet': { + _original: { + $value: '/icon/wallet.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--out', - '$type': 'link', - '$value': '/icon/zoom--out.svg', + id: 'icon.wallet', + $type: 'link', + $value: '/icon/wallet.svg', }, - 'icon.zoom--out-area': { - '_original': { - '$value': '/icon/zoom--out-area.svg', + 'icon.warning': { + _original: { + $value: '/icon/warning.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--out-area', - '$type': 'link', - '$value': '/icon/zoom--out-area.svg', + id: 'icon.warning', + $type: 'link', + $value: '/icon/warning.svg', }, - 'icon.zoom--reset': { - '_original': { - '$value': '/icon/zoom--reset.svg', + 'icon.warning--alt': { + _original: { + $value: '/icon/warning--alt.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom--reset', - '$type': 'link', - '$value': '/icon/zoom--reset.svg', + id: 'icon.warning--alt', + $type: 'link', + $value: '/icon/warning--alt.svg', }, - 'icon.zoom-pan': { - '_original': { - '$value': '/icon/zoom-pan.svg', + 'icon.warning--alt--filled': { + _original: { + $value: '/icon/warning--alt--filled.svg', }, - '_group': { + _group: { id: 'icon', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'link', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'icon.zoom-pan', - '$type': 'link', - '$value': '/icon/zoom-pan.svg', + id: 'icon.warning--alt--filled', + $type: 'link', + $value: '/icon/warning--alt--filled.svg', }, - 'font.family.mono': { - '_original': { - '$value': ['IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier', 'monospace'], + 'icon.warning--alt-inverted': { + _original: { + $value: '/icon/warning--alt-inverted.svg', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.family.mono', - '$type': 'fontFamily', - '$value': ['IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier', 'monospace'], + id: 'icon.warning--alt-inverted', + $type: 'link', + $value: '/icon/warning--alt-inverted.svg', }, - 'font.family.sans': { - '_original': { - '$value': ['IBM Plex Sans', 'Helvetica Neue', 'Arial', 'sans-serif'], + 'icon.warning--alt-inverted--filled': { + _original: { + $value: '/icon/warning--alt-inverted--filled.svg', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.family.sans', - '$type': 'fontFamily', - '$value': ['IBM Plex Sans', 'Helvetica Neue', 'Arial', 'sans-serif'], + id: 'icon.warning--alt-inverted--filled', + $type: 'link', + $value: '/icon/warning--alt-inverted--filled.svg', }, - 'font.family.sansCondensed': { - '_original': { - '$value': ['IBM Plex Sans Condensed', 'Helvetica Neue', 'Arial', 'sans-serif'], + 'icon.warning--filled': { + _original: { + $value: '/icon/warning--filled.svg', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.family.sansCondensed', - '$type': 'fontFamily', - '$value': ['IBM Plex Sans Condensed', 'Helvetica Neue', 'Arial', 'sans-serif'], + id: 'icon.warning--filled', + $type: 'link', + $value: '/icon/warning--filled.svg', }, - 'font.family.sansHebrew': { - '_original': { - '$value': ['IBM Plex Sans Hebrew', 'Helvetica Hebrew', 'Arial Hebrew', 'sans-serif'], + 'icon.warning--hex': { + _original: { + $value: '/icon/warning--hex.svg', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.family.sansHebrew', - '$type': 'fontFamily', - '$value': ['IBM Plex Sans Hebrew', 'Helvetica Hebrew', 'Arial Hebrew', 'sans-serif'], + id: 'icon.warning--hex', + $type: 'link', + $value: '/icon/warning--hex.svg', }, - 'font.family.serif': { - '_original': { - '$value': ['IBM Plex Serif', 'Georgia', 'Times', 'serif'], + 'icon.warning--hex--filled': { + _original: { + $value: '/icon/warning--hex--filled.svg', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'fontFamily', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.family.serif', - '$type': 'fontFamily', - '$value': ['IBM Plex Serif', 'Georgia', 'Times', 'serif'], + id: 'icon.warning--hex--filled', + $type: 'link', + $value: '/icon/warning--hex--filled.svg', }, - 'font.size.body01': { - '_original': { - '$value': '0.875rem', + 'icon.warning--other': { + _original: { + $value: '/icon/warning--other.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.body01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.warning--other', + $type: 'link', + $value: '/icon/warning--other.svg', }, - 'font.size.body02': { - '_original': { - '$value': '1rem', + 'icon.warning-square': { + _original: { + $value: '/icon/warning-square.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.body02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.warning-square', + $type: 'link', + $value: '/icon/warning-square.svg', }, - 'font.size.bodyCompact01': { - '_original': { - '$value': '0.875rem', + 'icon.warning-square--filled': { + _original: { + $value: '/icon/warning-square--filled.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.bodyCompact01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.warning-square--filled', + $type: 'link', + $value: '/icon/warning-square--filled.svg', }, - 'font.size.bodyCompact02': { - '_original': { - '$value': '1rem', + 'icon.watch': { + _original: { + $value: '/icon/watch.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.bodyCompact02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.watch', + $type: 'link', + $value: '/icon/watch.svg', }, - 'font.size.bodyLong01': { - '_original': { - '$value': '0.875rem', + 'icon.watson': { + _original: { + $value: '/icon/watson.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.bodyLong01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.watson', + $type: 'link', + $value: '/icon/watson.svg', }, - 'font.size.bodyLong02': { - '_original': { - '$value': '1rem', + 'icon.watson--machine-learning': { + _original: { + $value: '/icon/watson--machine-learning.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.bodyLong02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.watson--machine-learning', + $type: 'link', + $value: '/icon/watson--machine-learning.svg', }, - 'font.size.bodyShort01': { - '_original': { - '$value': '0.875rem', + 'icon.wave-direction': { + _original: { + $value: '/icon/wave-direction.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.bodyShort01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.wave-direction', + $type: 'link', + $value: '/icon/wave-direction.svg', }, - 'font.size.bodyShort02': { - '_original': { - '$value': '1rem', + 'icon.wave-height': { + _original: { + $value: '/icon/wave-height.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.bodyShort02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.wave-height', + $type: 'link', + $value: '/icon/wave-height.svg', }, - 'font.size.caption01': { - '_original': { - '$value': '0.75rem', + 'icon.wave-period': { + _original: { + $value: '/icon/wave-period.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.caption01', - '$type': 'dimension', - '$value': '0.75rem', + id: 'icon.wave-period', + $type: 'link', + $value: '/icon/wave-period.svg', }, - 'font.size.caption02': { - '_original': { - '$value': '0.875rem', + 'icon.weather-front--cold': { + _original: { + $value: '/icon/weather-front--cold.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.caption02', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.weather-front--cold', + $type: 'link', + $value: '/icon/weather-front--cold.svg', }, - 'font.size.code01': { - '_original': { - '$value': '0.75rem', + 'icon.weather-front--stationary': { + _original: { + $value: '/icon/weather-front--stationary.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.code01', - '$type': 'dimension', - '$value': '0.75rem', + id: 'icon.weather-front--stationary', + $type: 'link', + $value: '/icon/weather-front--stationary.svg', }, - 'font.size.code02': { - '_original': { - '$value': '0.875rem', + 'icon.weather-front--warm': { + _original: { + $value: '/icon/weather-front--warm.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.code02', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.weather-front--warm', + $type: 'link', + $value: '/icon/weather-front--warm.svg', }, - 'font.size.display01': { - '_original': { - '$value': '2.625rem', + 'icon.weather-station': { + _original: { + $value: '/icon/weather-station.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.display01', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.weather-station', + $type: 'link', + $value: '/icon/weather-station.svg', }, - 'font.size.display02': { - '_original': { - '$value': '2.625rem', + 'icon.webhook': { + _original: { + $value: '/icon/webhook.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.display02', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.webhook', + $type: 'link', + $value: '/icon/webhook.svg', }, - 'font.size.display03': { - '_original': { - '$value': '2.625rem', + 'icon.websheet': { + _original: { + $value: '/icon/websheet.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.display03', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.websheet', + $type: 'link', + $value: '/icon/websheet.svg', }, - 'font.size.display04': { - '_original': { - '$value': '2.625rem', + 'icon.wheat': { + _original: { + $value: '/icon/wheat.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.display04', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.wheat', + $type: 'link', + $value: '/icon/wheat.svg', }, - 'font.size.expressiveHeading01': { - '_original': { - '$value': '0.875rem', + 'icon.wifi': { + _original: { + $value: '/icon/wifi.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveHeading01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.wifi', + $type: 'link', + $value: '/icon/wifi.svg', }, - 'font.size.expressiveHeading02': { - '_original': { - '$value': '1rem', + 'icon.wifi--controller': { + _original: { + $value: '/icon/wifi--controller.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveHeading02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.wifi--controller', + $type: 'link', + $value: '/icon/wifi--controller.svg', }, - 'font.size.expressiveHeading03': { - '_original': { - '$value': '1.25rem', + 'icon.wifi--not-secure': { + _original: { + $value: '/icon/wifi--not-secure.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveHeading03', - '$type': 'dimension', - '$value': '1.25rem', + id: 'icon.wifi--not-secure', + $type: 'link', + $value: '/icon/wifi--not-secure.svg', }, - 'font.size.expressiveHeading04': { - '_original': { - '$value': '1.75rem', + 'icon.wifi--off': { + _original: { + $value: '/icon/wifi--off.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveHeading04', - '$type': 'dimension', - '$value': '1.75rem', + id: 'icon.wifi--off', + $type: 'link', + $value: '/icon/wifi--off.svg', }, - 'font.size.expressiveHeading05': { - '_original': { - '$value': '2rem', + 'icon.wifi--secure': { + _original: { + $value: '/icon/wifi--secure.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveHeading05', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.wifi--secure', + $type: 'link', + $value: '/icon/wifi--secure.svg', }, - 'font.size.expressiveHeading06': { - '_original': { - '$value': '2rem', + 'icon.wifi-bridge': { + _original: { + $value: '/icon/wifi-bridge.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveHeading06', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.wifi-bridge', + $type: 'link', + $value: '/icon/wifi-bridge.svg', }, - 'font.size.expressiveParagraph01': { - '_original': { - '$value': '1.5rem', + 'icon.wifi-bridge--alt': { + _original: { + $value: '/icon/wifi-bridge--alt.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.expressiveParagraph01', - '$type': 'dimension', - '$value': '1.5rem', + id: 'icon.wifi-bridge--alt', + $type: 'link', + $value: '/icon/wifi-bridge--alt.svg', }, - 'font.size.fluidDisplay01': { - '_original': { - '$value': '2.625rem', + 'icon.wikis': { + _original: { + $value: '/icon/wikis.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidDisplay01', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.wikis', + $type: 'link', + $value: '/icon/wikis.svg', }, - 'font.size.fluidDisplay02': { - '_original': { - '$value': '2.625rem', + 'icon.wind-gusts': { + _original: { + $value: '/icon/wind-gusts.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidDisplay02', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.wind-gusts', + $type: 'link', + $value: '/icon/wind-gusts.svg', }, - 'font.size.fluidDisplay03': { - '_original': { - '$value': '2.625rem', + 'icon.wind-power': { + _original: { + $value: '/icon/wind-power.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidDisplay03', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.wind-power', + $type: 'link', + $value: '/icon/wind-power.svg', }, - 'font.size.fluidDisplay04': { - '_original': { - '$value': '2.625rem', + 'icon.wind-stream': { + _original: { + $value: '/icon/wind-stream.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidDisplay04', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.wind-stream', + $type: 'link', + $value: '/icon/wind-stream.svg', }, - 'font.size.fluidHeading03': { - '_original': { - '$value': '1.25rem', + 'icon.window--auto': { + _original: { + $value: '/icon/window--auto.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidHeading03', - '$type': 'dimension', - '$value': '1.25rem', + id: 'icon.window--auto', + $type: 'link', + $value: '/icon/window--auto.svg', }, - 'font.size.fluidHeading04': { - '_original': { - '$value': '1.75rem', + 'icon.window--base': { + _original: { + $value: '/icon/window--base.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidHeading04', - '$type': 'dimension', - '$value': '1.75rem', + id: 'icon.window--base', + $type: 'link', + $value: '/icon/window--base.svg', }, - 'font.size.fluidHeading05': { - '_original': { - '$value': '2rem', + 'icon.window--black-saturation': { + _original: { + $value: '/icon/window--black-saturation.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidHeading05', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.window--black-saturation', + $type: 'link', + $value: '/icon/window--black-saturation.svg', }, - 'font.size.fluidHeading06': { - '_original': { - '$value': '2rem', + 'icon.window--overlay': { + _original: { + $value: '/icon/window--overlay.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidHeading06', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.window--overlay', + $type: 'link', + $value: '/icon/window--overlay.svg', }, - 'font.size.fluidParagraph01': { - '_original': { - '$value': '1.5rem', + 'icon.window--preset': { + _original: { + $value: '/icon/window--preset.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidParagraph01', - '$type': 'dimension', - '$value': '1.5rem', + id: 'icon.window--preset', + $type: 'link', + $value: '/icon/window--preset.svg', }, - 'font.size.fluidQuotation01': { - '_original': { - '$value': '1.25rem', + 'icon.windy': { + _original: { + $value: '/icon/windy.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidQuotation01', - '$type': 'dimension', - '$value': '1.25rem', + id: 'icon.windy', + $type: 'link', + $value: '/icon/windy.svg', }, - 'font.size.fluidQuotation02': { - '_original': { - '$value': '2rem', + 'icon.windy--dust': { + _original: { + $value: '/icon/windy--dust.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.fluidQuotation02', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.windy--dust', + $type: 'link', + $value: '/icon/windy--dust.svg', }, - 'font.size.heading01': { - '_original': { - '$value': '0.875rem', + 'icon.windy--snow': { + _original: { + $value: '/icon/windy--snow.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.windy--snow', + $type: 'link', + $value: '/icon/windy--snow.svg', }, - 'font.size.heading02': { - '_original': { - '$value': '1rem', + 'icon.windy--strong': { + _original: { + $value: '/icon/windy--strong.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.windy--strong', + $type: 'link', + $value: '/icon/windy--strong.svg', }, - 'font.size.heading03': { - '_original': { - '$value': '1.25rem', + 'icon.winter-warning': { + _original: { + $value: '/icon/winter-warning.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading03', - '$type': 'dimension', - '$value': '1.25rem', + id: 'icon.winter-warning', + $type: 'link', + $value: '/icon/winter-warning.svg', }, - 'font.size.heading04': { - '_original': { - '$value': '1.75rem', + 'icon.wintry-mix': { + _original: { + $value: '/icon/wintry-mix.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading04', - '$type': 'dimension', - '$value': '1.75rem', + id: 'icon.wintry-mix', + $type: 'link', + $value: '/icon/wintry-mix.svg', }, - 'font.size.heading05': { - '_original': { - '$value': '2rem', + 'icon.wireless-checkout': { + _original: { + $value: '/icon/wireless-checkout.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading05', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.wireless-checkout', + $type: 'link', + $value: '/icon/wireless-checkout.svg', }, - 'font.size.heading06': { - '_original': { - '$value': '2.625rem', + 'icon.WMV': { + _original: { + $value: '/icon/WMV.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading06', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.WMV', + $type: 'link', + $value: '/icon/WMV.svg', }, - 'font.size.heading07': { - '_original': { - '$value': '3.375rem', + 'icon.word-cloud': { + _original: { + $value: '/icon/word-cloud.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.heading07', - '$type': 'dimension', - '$value': '3.375rem', + id: 'icon.word-cloud', + $type: 'link', + $value: '/icon/word-cloud.svg', }, - 'font.size.headingCompact01': { - '_original': { - '$value': '0.875rem', + 'icon.workspace': { + _original: { + $value: '/icon/workspace.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.headingCompact01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.workspace', + $type: 'link', + $value: '/icon/workspace.svg', }, - 'font.size.headingCompact02': { - '_original': { - '$value': '1rem', + 'icon.workspace--import': { + _original: { + $value: '/icon/workspace--import.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.headingCompact02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.workspace--import', + $type: 'link', + $value: '/icon/workspace--import.svg', }, - 'font.size.helperText01': { - '_original': { - '$value': '0.75rem', + 'icon.worship': { + _original: { + $value: '/icon/worship.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.helperText01', - '$type': 'dimension', - '$value': '0.75rem', + id: 'icon.worship', + $type: 'link', + $value: '/icon/worship.svg', }, - 'font.size.helperText02': { - '_original': { - '$value': '0.875rem', + 'icon.worship--christian': { + _original: { + $value: '/icon/worship--christian.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.helperText02', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.worship--christian', + $type: 'link', + $value: '/icon/worship--christian.svg', }, - 'font.size.label01': { - '_original': { - '$value': '0.75rem', + 'icon.worship--jewish': { + _original: { + $value: '/icon/worship--jewish.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.label01', - '$type': 'dimension', - '$value': '0.75rem', + id: 'icon.worship--jewish', + $type: 'link', + $value: '/icon/worship--jewish.svg', }, - 'font.size.label02': { - '_original': { - '$value': '0.875rem', + 'icon.worship--muslim': { + _original: { + $value: '/icon/worship--muslim.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.label02', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.worship--muslim', + $type: 'link', + $value: '/icon/worship--muslim.svg', }, - 'font.size.legal01': { - '_original': { - '$value': '0.75rem', + 'icon.X': { + _original: { + $value: '/icon/X.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.legal01', - '$type': 'dimension', - '$value': '0.75rem', + id: 'icon.X', + $type: 'link', + $value: '/icon/X.svg', }, - 'font.size.legal02': { - '_original': { - '$value': '0.875rem', + 'icon.x-axis': { + _original: { + $value: '/icon/x-axis.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.legal02', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.x-axis', + $type: 'link', + $value: '/icon/x-axis.svg', }, - 'font.size.productiveHeading01': { - '_original': { - '$value': '0.875rem', + 'icon.XLS': { + _original: { + $value: '/icon/XLS.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading01', - '$type': 'dimension', - '$value': '0.875rem', + id: 'icon.XLS', + $type: 'link', + $value: '/icon/XLS.svg', }, - 'font.size.productiveHeading02': { - '_original': { - '$value': '1rem', + 'icon.XML': { + _original: { + $value: '/icon/XML.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading02', - '$type': 'dimension', - '$value': '1rem', + id: 'icon.XML', + $type: 'link', + $value: '/icon/XML.svg', }, - 'font.size.productiveHeading03': { - '_original': { - '$value': '1.25rem', + 'icon.Y': { + _original: { + $value: '/icon/Y.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading03', - '$type': 'dimension', - '$value': '1.25rem', + id: 'icon.Y', + $type: 'link', + $value: '/icon/Y.svg', }, - 'font.size.productiveHeading04': { - '_original': { - '$value': '1.75rem', + 'icon.y-axis': { + _original: { + $value: '/icon/y-axis.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading04', - '$type': 'dimension', - '$value': '1.75rem', + id: 'icon.y-axis', + $type: 'link', + $value: '/icon/y-axis.svg', }, - 'font.size.productiveHeading05': { - '_original': { - '$value': '2rem', + 'icon.Z': { + _original: { + $value: '/icon/Z.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading05', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.Z', + $type: 'link', + $value: '/icon/Z.svg', }, - 'font.size.productiveHeading06': { - '_original': { - '$value': '2.625rem', + 'icon.z-axis': { + _original: { + $value: '/icon/z-axis.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading06', - '$type': 'dimension', - '$value': '2.625rem', + id: 'icon.z-axis', + $type: 'link', + $value: '/icon/z-axis.svg', }, - 'font.size.productiveHeading07': { - '_original': { - '$value': '3.375rem', + 'icon.ZIP': { + _original: { + $value: '/icon/ZIP.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.productiveHeading07', - '$type': 'dimension', - '$value': '3.375rem', + id: 'icon.ZIP', + $type: 'link', + $value: '/icon/ZIP.svg', }, - 'font.size.quotation01': { - '_original': { - '$value': '1.25rem', + 'icon.ZIP--reference': { + _original: { + $value: '/icon/ZIP--reference.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.quotation01', - '$type': 'dimension', - '$value': '1.25rem', + id: 'icon.ZIP--reference', + $type: 'link', + $value: '/icon/ZIP--reference.svg', }, - 'font.size.quotation02': { - '_original': { - '$value': '2rem', + 'icon.zoom--area': { + _original: { + $value: '/icon/zoom--area.svg', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'font.size.quotation02', - '$type': 'dimension', - '$value': '2rem', + id: 'icon.zoom--area', + $type: 'link', + $value: '/icon/zoom--area.svg', }, - 'spacing.4xs': { - '_original': { - '$value': '1px', + 'icon.zoom--fit': { + _original: { + $value: '/icon/zoom--fit.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.4xs', - '$type': 'dimension', - '$value': '1px', + id: 'icon.zoom--fit', + $type: 'link', + $value: '/icon/zoom--fit.svg', }, - 'spacing.3xs': { - '_original': { - '$value': '2px', + 'icon.zoom--in': { + _original: { + $value: '/icon/zoom--in.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.3xs', - '$type': 'dimension', - '$value': '2px', + id: 'icon.zoom--in', + $type: 'link', + $value: '/icon/zoom--in.svg', }, - 'spacing.2xs': { - '_original': { - '$value': '4px', + 'icon.zoom--in-area': { + _original: { + $value: '/icon/zoom--in-area.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.2xs', - '$type': 'dimension', - '$value': '4px', + id: 'icon.zoom--in-area', + $type: 'link', + $value: '/icon/zoom--in-area.svg', }, - 'spacing.xs': { - '_original': { - '$value': '8px', + 'icon.zoom--out': { + _original: { + $value: '/icon/zoom--out.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.xs', - '$type': 'dimension', - '$value': '8px', + id: 'icon.zoom--out', + $type: 'link', + $value: '/icon/zoom--out.svg', }, - 'spacing.sm': { - '_original': { - '$value': '12px', + 'icon.zoom--out-area': { + _original: { + $value: '/icon/zoom--out-area.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.sm', - '$type': 'dimension', - '$value': '12px', + id: 'icon.zoom--out-area', + $type: 'link', + $value: '/icon/zoom--out-area.svg', }, - 'spacing.md': { - '_original': { - '$value': '16px', + 'icon.zoom--reset': { + _original: { + $value: '/icon/zoom--reset.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.md', - '$type': 'dimension', - '$value': '16px', + id: 'icon.zoom--reset', + $type: 'link', + $value: '/icon/zoom--reset.svg', }, - 'spacing.lg': { - '_original': { - '$value': '24px', + 'icon.zoom-pan': { + _original: { + $value: '/icon/zoom-pan.svg', }, - '_group': { - id: 'spacing', - '$extensions': { + _group: { + id: 'icon', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'link', }, - id: 'spacing.lg', - '$type': 'dimension', - '$value': '24px', + id: 'icon.zoom-pan', + $type: 'link', + $value: '/icon/zoom-pan.svg', }, - 'spacing.xl': { - '_original': { - '$value': '32px', + 'spacing.2xl': { + _original: { + $value: '40px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.xl', - '$type': 'dimension', - '$value': '32px', + id: 'spacing.2xl', + $type: 'dimension', + $value: '40px', }, - 'spacing.2xl': { - '_original': { - '$value': '40px', + 'spacing.2xs': { + _original: { + $value: '4px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.2xl', - '$type': 'dimension', - '$value': '40px', + id: 'spacing.2xs', + $type: 'dimension', + $value: '4px', }, 'spacing.3xl': { - '_original': { - '$value': '48px', + _original: { + $value: '48px', }, - '_group': { + _group: { id: 'spacing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, id: 'spacing.3xl', - '$type': 'dimension', - '$value': '48px', + $type: 'dimension', + $value: '48px', }, - 'spacing.layout.2xs': { - '_original': { - '$value': '16px', + 'spacing.3xs': { + _original: { + $value: '2px', }, - '_group': { - id: 'spacing.layout', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.layout.2xs', - '$type': 'dimension', - '$value': '16px', + id: 'spacing.3xs', + $type: 'dimension', + $value: '2px', }, - 'spacing.layout.xs': { - '_original': { - '$value': '24px', + 'spacing.4xs': { + _original: { + $value: '1px', }, - '_group': { - id: 'spacing.layout', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.layout.xs', - '$type': 'dimension', - '$value': '24px', + id: 'spacing.4xs', + $type: 'dimension', + $value: '1px', }, - 'spacing.layout.sm': { - '_original': { - '$value': '32px', + 'spacing.layout.2xl': { + _original: { + $value: '160px', }, - '_group': { + _group: { id: 'spacing.layout', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.layout.sm', - '$type': 'dimension', - '$value': '32px', + id: 'spacing.layout.2xl', + $type: 'dimension', + $value: '160px', }, - 'spacing.layout.md': { - '_original': { - '$value': '48px', + 'spacing.layout.2xs': { + _original: { + $value: '16px', }, - '_group': { + _group: { id: 'spacing.layout', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.layout.md', - '$type': 'dimension', - '$value': '48px', + id: 'spacing.layout.2xs', + $type: 'dimension', + $value: '16px', }, 'spacing.layout.lg': { - '_original': { - '$value': '64px', + _original: { + $value: '64px', }, - '_group': { + _group: { id: 'spacing.layout', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, id: 'spacing.layout.lg', - '$type': 'dimension', - '$value': '64px', + $type: 'dimension', + $value: '64px', }, - 'spacing.layout.xl': { - '_original': { - '$value': '96px', + 'spacing.layout.md': { + _original: { + $value: '48px', }, - '_group': { + _group: { id: 'spacing.layout', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'dimension', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'spacing.layout.xl', - '$type': 'dimension', - '$value': '96px', + id: 'spacing.layout.md', + $type: 'dimension', + $value: '48px', }, - 'spacing.layout.2xl': { - '_original': { - '$value': '160px', + 'spacing.layout.sm': { + _original: { + $value: '32px', }, - '_group': { + _group: { id: 'spacing.layout', - '$extensions': { - requiredModes: [], - }, - '$name': 'IBM Carbon', - '$type': 'dimension', - }, - id: 'spacing.layout.2xl', - '$type': 'dimension', - '$value': '160px', - }, - 'easing.easeIn': { - '_original': { - '$value': [0.25, 0, 1, 1], - }, - '_group': { - id: 'easing', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.easeIn', - '$type': 'cubicBezier', - '$value': [0.25, 0, 1, 1], + id: 'spacing.layout.sm', + $type: 'dimension', + $value: '32px', }, - 'easing.easeOut': { - '_original': { - '$value': [0, 0, 0.25, 1], + 'spacing.layout.xl': { + _original: { + $value: '96px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing.layout', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.easeOut', - '$type': 'cubicBezier', - '$value': [0, 0, 0.25, 1], + id: 'spacing.layout.xl', + $type: 'dimension', + $value: '96px', }, - 'easing.standard': { - '_original': { - '$value': [0.5, 0, 0.1, 1], + 'spacing.layout.xs': { + _original: { + $value: '24px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing.layout', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.standard', - '$type': 'cubicBezier', - '$value': [0.5, 0, 0.1, 1], + id: 'spacing.layout.xs', + $type: 'dimension', + $value: '24px', }, - 'easing.standard--expressive': { - '_original': { - '$value': [0.4, 0.14, 0.3, 1], + 'spacing.lg': { + _original: { + $value: '24px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.standard--expressive', - '$type': 'cubicBezier', - '$value': [0.4, 0.14, 0.3, 1], + id: 'spacing.lg', + $type: 'dimension', + $value: '24px', }, - 'easing.entrance': { - '_original': { - '$value': [0, 0, 0.38, 0.9], + 'spacing.md': { + _original: { + $value: '16px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.entrance', - '$type': 'cubicBezier', - '$value': [0, 0, 0.38, 0.9], + id: 'spacing.md', + $type: 'dimension', + $value: '16px', }, - 'easing.entrance--expressive': { - '_original': { - '$value': [0, 0, 0.3, 1], + 'spacing.sm': { + _original: { + $value: '12px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.entrance--expressive', - '$type': 'cubicBezier', - '$value': [0, 0, 0.3, 1], + id: 'spacing.sm', + $type: 'dimension', + $value: '12px', }, - 'easing.exit': { - '_original': { - '$value': [0.2, 0, 1, 0.9], + 'spacing.xl': { + _original: { + $value: '32px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.exit', - '$type': 'cubicBezier', - '$value': [0.2, 0, 1, 0.9], + id: 'spacing.xl', + $type: 'dimension', + $value: '32px', }, - 'easing.exit--expressive': { - '_original': { - '$value': [0.4, 0.14, 1, 1], + 'spacing.xs': { + _original: { + $value: '8px', }, - '_group': { - id: 'easing', - '$extensions': { + _group: { + id: 'spacing', + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'cubicBezier', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'dimension', }, - id: 'easing.exit--expressive', - '$type': 'cubicBezier', - '$value': [0.4, 0.14, 1, 1], + id: 'spacing.xs', + $type: 'dimension', + $value: '8px', }, 'transition.base': { - '_original': { - '$value': '250ms', + _original: { + $value: '250ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.base', - '$type': 'duration', - '$value': '250ms', + $type: 'duration', + $value: '250ms', }, 'transition.expansion': { - '_original': { - '$value': '300ms', + _original: { + $value: '300ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.expansion', - '$type': 'duration', - '$value': '300ms', + $type: 'duration', + $value: '300ms', }, 'transition.fast01': { - '_original': { - '$value': '70ms', + _original: { + $value: '70ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.fast01', - '$type': 'duration', - '$value': '70ms', + $type: 'duration', + $value: '70ms', }, 'transition.fast02': { - '_original': { - '$value': '110ms', + _original: { + $value: '110ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.fast02', - '$type': 'duration', - '$value': '110ms', + $type: 'duration', + $value: '110ms', }, 'transition.moderate01': { - '_original': { - '$value': '150ms', + _original: { + $value: '150ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.moderate01', - '$type': 'duration', - '$value': '150ms', + $type: 'duration', + $value: '150ms', }, 'transition.moderate02': { - '_original': { - '$value': '240ms', + _original: { + $value: '240ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.moderate02', - '$type': 'duration', - '$value': '240ms', + $type: 'duration', + $value: '240ms', }, 'transition.slow01': { - '_original': { - '$value': '400ms', + _original: { + $value: '400ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.slow01', - '$type': 'duration', - '$value': '400ms', + $type: 'duration', + $value: '400ms', }, 'transition.slow02': { - '_original': { - '$value': '720ms', + _original: { + $value: '720ms', }, - '_group': { + _group: { id: 'transition', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'IBM Carbon', - '$type': 'duration', + $schema: '../../packages/core/tokens-schema.json', + $name: 'IBM Carbon', + $type: 'duration', }, id: 'transition.slow02', - '$type': 'duration', - '$value': '720ms', + $type: 'duration', + $value: '720ms', }, }; diff --git a/examples/ibm/tokens/index.scss b/examples/ibm/tokens/index.scss index 610cb2ad..e4ac184d 100644 --- a/examples/ibm/tokens/index.scss +++ b/examples/ibm/tokens/index.scss @@ -20,360 +20,360 @@ $__token-values: ( "color.blue10": ( default: (#edf5ff), ), - "color.blue20": ( - default: (#d0e2ff), - ), - "color.blue30": ( - default: (#a6c8ff), - ), - "color.blue40": ( - default: (#78a9ff), - ), - "color.blue50": ( - default: (#4589ff), - ), - "color.blue60": ( - default: (#0f62fe), - ), - "color.blue70": ( - default: (#0043ce), - ), - "color.blue80": ( - default: (#002d9c), - ), - "color.blue90": ( - default: (#001d6c), - ), - "color.blue100": ( - default: (#001141), - ), "color.blue10Hover": ( default: (#dbebff), ), + "color.blue20": ( + default: (#d0e2ff), + ), "color.blue20Hover": ( default: (#b8d3ff), ), + "color.blue30": ( + default: (#a6c8ff), + ), "color.blue30Hover": ( default: (#8ab6ff), ), + "color.blue40": ( + default: (#78a9ff), + ), "color.blue40Hover": ( default: (#5c97ff), ), + "color.blue50": ( + default: (#4589ff), + ), "color.blue50Hover": ( default: (#1f70ff), ), + "color.blue60": ( + default: (#0f62fe), + ), "color.blue60Hover": ( default: (#0050e6), ), + "color.blue70": ( + default: (#0043ce), + ), "color.blue70Hover": ( default: (#0053ff), ), + "color.blue80": ( + default: (#002d9c), + ), "color.blue80Hover": ( default: (#0039c7), ), + "color.blue90": ( + default: (#001d6c), + ), "color.blue90Hover": ( default: (#00258a), ), + "color.blue100": ( + default: (#001141), + ), "color.blue100Hover": ( default: (#001f75), ), "color.coolGray10": ( default: (#f2f4f8), ), - "color.coolGray20": ( - default: (#dde1e6), - ), - "color.coolGray30": ( - default: (#c1c7cd), - ), - "color.coolGray40": ( - default: (#a2a9b0), - ), - "color.coolGray50": ( - default: (#878d96), - ), - "color.coolGray60": ( - default: (#697077), - ), - "color.coolGray70": ( - default: (#4d5358), - ), - "color.coolGray80": ( - default: (#343a3f), - ), - "color.coolGray90": ( - default: (#21272a), - ), - "color.coolGray100": ( - default: (#121619), - ), "color.coolGray10Hover": ( default: (#e4e9f1), ), + "color.coolGray20": ( + default: (#dde1e6), + ), "color.coolGray20Hover": ( default: (#cdd3da), ), + "color.coolGray30": ( + default: (#c1c7cd), + ), "color.coolGray30Hover": ( default: (#adb5bd), ), + "color.coolGray40": ( + default: (#a2a9b0), + ), "color.coolGray40Hover": ( default: (#9199a1), ), + "color.coolGray50": ( + default: (#878d96), + ), "color.coolGray50Hover": ( default: (#757b85), ), + "color.coolGray60": ( + default: (#697077), + ), "color.coolGray60Hover": ( default: (#585e64), ), + "color.coolGray70": ( + default: (#4d5358), + ), "color.coolGray70Hover": ( default: (#5d646a), ), + "color.coolGray80": ( + default: (#343a3f), + ), "color.coolGray80Hover": ( default: (#434a51), ), + "color.coolGray90": ( + default: (#21272a), + ), "color.coolGray90Hover": ( default: (#2b3236), ), + "color.coolGray100": ( + default: (#121619), + ), "color.coolGray100Hover": ( default: (#222a2f), ), "color.cyan10": ( default: (#e5f6ff), ), - "color.cyan20": ( - default: (#bae6ff), - ), - "color.cyan30": ( - default: (#82cfff), - ), - "color.cyan40": ( - default: (#33b1ff), - ), - "color.cyan50": ( - default: (#1192e8), - ), - "color.cyan60": ( - default: (#0072c3), - ), - "color.cyan70": ( - default: (#00539a), - ), - "color.cyan80": ( - default: (#003a6d), - ), - "color.cyan90": ( - default: (#012749), - ), - "color.cyan100": ( - default: (#061727), - ), "color.cyan10Hover": ( default: (#cceeff), ), + "color.cyan20": ( + default: (#bae6ff), + ), "color.cyan20Hover": ( default: (#99daff), ), + "color.cyan30": ( + default: (#82cfff), + ), "color.cyan30Hover": ( default: (#57beff), ), + "color.cyan40": ( + default: (#33b1ff), + ), "color.cyan40Hover": ( default: (#059fff), ), + "color.cyan50": ( + default: (#1192e8), + ), "color.cyan50Hover": ( default: (#0f7ec8), ), + "color.cyan60": ( + default: (#0072c3), + ), "color.cyan60Hover": ( default: (#005fa3), ), + "color.cyan70": ( + default: (#00539a), + ), "color.cyan70Hover": ( default: (#0066bd), ), + "color.cyan80": ( + default: (#003a6d), + ), "color.cyan80Hover": ( default: (#00498a), ), + "color.cyan90": ( + default: (#012749), + ), "color.cyan90Hover": ( default: (#013360), ), + "color.cyan100": ( + default: (#061727), + ), "color.cyan100Hover": ( default: (#0b2947), ), "color.gray10": ( default: (#f4f4f4), ), - "color.gray20": ( - default: (#e0e0e0), - ), - "color.gray30": ( - default: (#c6c6c6), - ), - "color.gray40": ( - default: (#a8a8a8), - ), - "color.gray50": ( - default: (#8d8d8d), - ), - "color.gray60": ( - default: (#6f6f6f), - ), - "color.gray70": ( - default: (#525252), - ), - "color.gray80": ( - default: (#393939), - ), - "color.gray90": ( - default: (#262626), - ), - "color.gray100": ( - default: (#161616), - ), "color.gray10Hover": ( default: (#e8e8e8), ), + "color.gray20": ( + default: (#e0e0e0), + ), "color.gray20Hover": ( default: (#d1d1d1), ), + "color.gray30": ( + default: (#c6c6c6), + ), "color.gray30Hover": ( default: (#b5b5b5), ), + "color.gray40": ( + default: (#a8a8a8), + ), "color.gray40Hover": ( default: (#999999), ), + "color.gray50": ( + default: (#8d8d8d), + ), "color.gray50Hover": ( default: (#7a7a7a), ), + "color.gray60": ( + default: (#6f6f6f), + ), "color.gray60Hover": ( default: (#5e5e5e), ), + "color.gray70": ( + default: (#525252), + ), "color.gray70Hover": ( default: (#636363), ), + "color.gray80": ( + default: (#393939), + ), "color.gray80Hover": ( default: (#474747), ), + "color.gray90": ( + default: (#262626), + ), "color.gray90Hover": ( default: (#333333), ), + "color.gray100": ( + default: (#161616), + ), "color.gray100Hover": ( default: (#292929), ), "color.green10": ( default: (#defbe6), ), + "color.green10Hover": ( + default: (#b6f6c8), + ), "color.green20": ( default: (#a7f0ba), ), + "color.green20Hover": ( + default: (#74e792), + ), "color.green30": ( default: (#6fdc8c), ), + "color.green30Hover": ( + default: (#36ce5e), + ), "color.green40": ( default: (#42be65), ), + "color.green40Hover": ( + default: (#3bab5a), + ), "color.green50": ( default: (#24a148), ), + "color.green50Hover": ( + default: (#208e3f), + ), "color.green60": ( default: (#198038), ), + "color.green60Hover": ( + default: (#166f31), + ), "color.green70": ( default: (#0e6027), ), + "color.green70Hover": ( + default: (#11742f), + ), "color.green80": ( default: (#044317), ), + "color.green80Hover": ( + default: (#05521c), + ), "color.green90": ( default: (#022d0d), ), + "color.green90Hover": ( + default: (#033b11), + ), "color.green100": ( default: (#071908), ), - "color.green10Hover": ( - default: (#b6f6c8), + "color.green100Hover": ( + default: (#0d300f), ), - "color.green20Hover": ( - default: (#74e792), + "color.magenta10": ( + default: (#fff0f7), ), - "color.green30Hover": ( - default: (#36ce5e), - ), - "color.green40Hover": ( - default: (#3bab5a), - ), - "color.green50Hover": ( - default: (#208e3f), - ), - "color.green60Hover": ( - default: (#166f31), - ), - "color.green70Hover": ( - default: (#11742f), - ), - "color.green80Hover": ( - default: (#05521c), - ), - "color.green90Hover": ( - default: (#033b11), - ), - "color.green100Hover": ( - default: (#0d300f), - ), - "color.magenta10": ( - default: (#fff0f7), + "color.magenta10Hover": ( + default: (#ffe0ef), ), "color.magenta20": ( default: (#ffd6e8), ), - "color.magenta30": ( - default: (#ffafd2), - ), - "color.magenta40": ( - default: (#ff7eb6), - ), - "color.magenta50": ( - default: (#ee5396), - ), - "color.magenta60": ( - default: (#d02670), - ), - "color.magenta70": ( - default: (#9f1853), - ), - "color.magenta80": ( - default: (#740937), - ), - "color.magenta90": ( - default: (#510224), - ), - "color.magenta100": ( - default: (#2a0a18), - ), - "color.magenta10Hover": ( - default: (#ffe0ef), - ), "color.magenta20Hover": ( default: (#ffbdda), ), + "color.magenta30": ( + default: (#ffafd2), + ), "color.magenta30Hover": ( default: (#ff94c3), ), + "color.magenta40": ( + default: (#ff7eb6), + ), "color.magenta40Hover": ( default: (#ff57a0), ), + "color.magenta50": ( + default: (#ee5396), + ), "color.magenta50Hover": ( default: (#e3176f), ), + "color.magenta60": ( + default: (#d02670), + ), "color.magenta60Hover": ( default: (#b0215f), ), + "color.magenta70": ( + default: (#9f1853), + ), "color.magenta70Hover": ( default: (#bf1d63), ), + "color.magenta80": ( + default: (#740937), + ), "color.magenta80Hover": ( default: (#8e0b43), ), + "color.magenta90": ( + default: (#510224), + ), "color.magenta90Hover": ( default: (#68032e), ), + "color.magenta100": ( + default: (#2a0a18), + ), "color.magenta100Hover": ( default: (#53142f), ), @@ -383,300 +383,300 @@ $__token-values: ( "color.orange10": ( default: (#fff2e8), ), - "color.orange20": ( - default: (#ffd9be), - ), - "color.orange30": ( - default: (#ffb784), - ), - "color.orange40": ( - default: (#ff832b), - ), - "color.orange50": ( - default: (#eb6200), - ), - "color.orange60": ( - default: (#ba4e00), - ), - "color.orange70": ( - default: (#8a3800), - ), - "color.orange80": ( - default: (#5e2900), - ), - "color.orange90": ( - default: (#3e1a00), - ), - "color.orange100": ( - default: (#231000), - ), "color.orange10Hover": ( default: (#ffe2cc), ), + "color.orange20": ( + default: (#ffd9be), + ), "color.orange20Hover": ( default: (#ffc69e), ), + "color.orange30": ( + default: (#ffb784), + ), "color.orange30Hover": ( default: (#ff9d57), ), + "color.orange40": ( + default: (#ff832b), + ), "color.orange40Hover": ( default: (#fa6800), ), + "color.orange50": ( + default: (#eb6200), + ), "color.orange50Hover": ( default: (#cc5500), ), + "color.orange60": ( + default: (#ba4e00), + ), "color.orange60Hover": ( default: (#9e4200), ), + "color.orange70": ( + default: (#8a3800), + ), "color.orange70Hover": ( default: (#a84400), ), + "color.orange80": ( + default: (#5e2900), + ), "color.orange80Hover": ( default: (#753300), ), + "color.orange90": ( + default: (#3e1a00), + ), "color.orange90Hover": ( default: (#522200), ), + "color.orange100": ( + default: (#231000), + ), "color.orange100Hover": ( default: (#421e00), ), "color.purple10": ( default: (#f6f2ff), ), - "color.purple20": ( - default: (#e8daff), - ), - "color.purple30": ( - default: (#d4bbff), - ), - "color.purple40": ( - default: (#be95ff), - ), - "color.purple50": ( - default: (#a56eff), - ), - "color.purple60": ( - default: (#8a3ffc), - ), - "color.purple70": ( - default: (#6929c4), - ), - "color.purple80": ( - default: (#491d8b), - ), - "color.purple90": ( - default: (#31135e), - ), - "color.purple100": ( - default: (#1c0f30), - ), "color.purple10Hover": ( default: (#ede5ff), ), + "color.purple20": ( + default: (#e8daff), + ), "color.purple20Hover": ( default: (#dcc7ff), ), + "color.purple30": ( + default: (#d4bbff), + ), "color.purple30Hover": ( default: (#c5a3ff), ), + "color.purple40": ( + default: (#be95ff), + ), "color.purple40Hover": ( default: (#ae7aff), ), + "color.purple50": ( + default: (#a56eff), + ), "color.purple50Hover": ( default: (#9352ff), ), + "color.purple60": ( + default: (#8a3ffc), + ), "color.purple60Hover": ( default: (#7822fb), ), + "color.purple70": ( + default: (#6929c4), + ), "color.purple70Hover": ( default: (#7c3dd6), ), + "color.purple80": ( + default: (#491d8b), + ), "color.purple80Hover": ( default: (#5b24ad), ), + "color.purple90": ( + default: (#31135e), + ), "color.purple90Hover": ( default: (#40197b), ), + "color.purple100": ( + default: (#1c0f30), + ), "color.purple100Hover": ( default: (#341c59), ), "color.red10": ( default: (#fff1f1), ), - "color.red20": ( - default: (#ffd7d9), - ), - "color.red30": ( - default: (#ffb3b8), - ), - "color.red40": ( - default: (#ff8389), - ), - "color.red50": ( - default: (#fa4d56), - ), - "color.red60": ( - default: (#da1e28), - ), - "color.red70": ( - default: (#a2191f), - ), - "color.red80": ( - default: (#750e13), - ), - "color.red90": ( - default: (#520408), - ), - "color.red100": ( - default: (#2d0709), - ), "color.red10Hover": ( default: (#ffe0e0), ), + "color.red20": ( + default: (#ffd7d9), + ), "color.red20Hover": ( default: (#ffc2c5), ), + "color.red30": ( + default: (#ffb3b8), + ), "color.red30Hover": ( default: (#ff99a0), ), + "color.red40": ( + default: (#ff8389), + ), "color.red40Hover": ( default: (#ff6168), ), + "color.red50": ( + default: (#fa4d56), + ), "color.red50Hover": ( default: (#ee0713), ), + "color.red60": ( + default: (#da1e28), + ), "color.red60Hover": ( default: (#b81922), ), + "color.red70": ( + default: (#a2191f), + ), "color.red70Hover": ( default: (#c21e25), ), + "color.red80": ( + default: (#750e13), + ), "color.red80Hover": ( default: (#921118), ), + "color.red90": ( + default: (#520408), + ), "color.red90Hover": ( default: (#66050a), ), + "color.red100": ( + default: (#2d0709), + ), "color.red100Hover": ( default: (#540d11), ), "color.teal10": ( default: (#d9fbfb), ), + "color.teal10Hover": ( + default: (#acf6f6), + ), "color.teal20": ( default: (#9ef0f0), ), + "color.teal20Hover": ( + default: (#57e5e5), + ), "color.teal30": ( default: (#3ddbd9), ), + "color.teal30Hover": ( + default: (#25cac8), + ), "color.teal40": ( default: (#08bdba), ), + "color.teal40Hover": ( + default: (#07aba9), + ), "color.teal50": ( default: (#009d9a), ), + "color.teal50Hover": ( + default: (#008a87), + ), "color.teal60": ( default: (#007d79), ), + "color.teal60Hover": ( + default: (#006b68), + ), "color.teal70": ( default: (#005d5d), ), - "color.teal80": ( - default: (#004144), - ), - "color.teal90": ( - default: (#022b30), - ), - "color.teal100": ( - default: (#081a1c), - ), - "color.teal10Hover": ( - default: (#acf6f6), - ), - "color.teal20Hover": ( - default: (#57e5e5), - ), - "color.teal30Hover": ( - default: (#25cac8), - ), - "color.teal40Hover": ( - default: (#07aba9), - ), - "color.teal50Hover": ( - default: (#008a87), - ), - "color.teal60Hover": ( - default: (#006b68), - ), "color.teal70Hover": ( default: (#007070), ), + "color.teal80": ( + default: (#004144), + ), "color.teal80Hover": ( default: (#005357), ), + "color.teal90": ( + default: (#022b30), + ), "color.teal90Hover": ( default: (#033940), ), + "color.teal100": ( + default: (#081a1c), + ), "color.teal100Hover": ( default: (#0f3034), ), "color.warmGray10": ( default: (#f7f3f2), ), - "color.warmGray20": ( - default: (#e5e0df), - ), - "color.warmGray30": ( - default: (#cac5c4), - ), - "color.warmGray40": ( - default: (#ada8a8), - ), - "color.warmGray50": ( - default: (#8f8b8b), - ), - "color.warmGray60": ( - default: (#726e6e), - ), - "color.warmGray70": ( - default: (#565151), - ), - "color.warmGray80": ( - default: (#3c3838), - ), - "color.warmGray90": ( - default: (#272525), - ), - "color.warmGray100": ( - default: (#171414), - ), "color.warmGray10Hover": ( default: (#f0e8e6), ), + "color.warmGray20": ( + default: (#e5e0df), + ), "color.warmGray20Hover": ( default: (#d8d0cf), ), + "color.warmGray30": ( + default: (#cac5c4), + ), "color.warmGray30Hover": ( default: (#b9b3b1), ), + "color.warmGray40": ( + default: (#ada8a8), + ), "color.warmGray40Hover": ( default: (#9c9696), ), + "color.warmGray50": ( + default: (#8f8b8b), + ), "color.warmGray50Hover": ( default: (#7f7b7b), ), + "color.warmGray60": ( + default: (#726e6e), + ), "color.warmGray60Hover": ( default: (#605d5d), ), + "color.warmGray70": ( + default: (#565151), + ), "color.warmGray70Hover": ( default: (#696363), ), + "color.warmGray80": ( + default: (#3c3838), + ), "color.warmGray80Hover": ( default: (#4c4848), ), + "color.warmGray90": ( + default: (#272525), + ), "color.warmGray90Hover": ( default: (#343232), ), + "color.warmGray100": ( + default: (#171414), + ), "color.warmGray100Hover": ( default: (#2c2626), ), @@ -695,139 +695,352 @@ $__token-values: ( "color.yellow10": ( default: (#fcf4d6), ), + "color.yellow10Hover": ( + default: (#f8e6a0), + ), "color.yellow20": ( default: (#fddc69), ), + "color.yellow20Hover": ( + default: (#fccd27), + ), "color.yellow30": ( default: (#f1c21b), ), + "color.yellow30Hover": ( + default: (#ddb00e), + ), "color.yellow40": ( default: (#d2a106), ), + "color.yellow40Hover": ( + default: (#bc9005), + ), "color.yellow50": ( default: (#b28600), ), + "color.yellow50Hover": ( + default: (#9e7700), + ), "color.yellow60": ( default: (#8e6a00), ), + "color.yellow60Hover": ( + default: (#755800), + ), "color.yellow70": ( default: (#684e00), ), + "color.yellow70Hover": ( + default: (#806000), + ), "color.yellow80": ( default: (#483700), ), + "color.yellow80Hover": ( + default: (#5c4600), + ), "color.yellow90": ( default: (#302400), ), + "color.yellow90Hover": ( + default: (#3d2e00), + ), "color.yellow100": ( default: (#1c1500), ), - "color.yellow10Hover": ( - default: (#f8e6a0), + "color.yellow100Hover": ( + default: (#332600), ), - "color.yellow20Hover": ( - default: (#fccd27), + "easing.easeIn": ( + default: (cubic-bezier(0.25, 0, 1, 1)), ), - "color.yellow30Hover": ( - default: (#ddb00e), + "easing.easeOut": ( + default: (cubic-bezier(0, 0, 0.25, 1)), ), - "color.yellow40Hover": ( - default: (#bc9005), + "easing.entrance": ( + default: (cubic-bezier(0, 0, 0.38, 0.9)), ), - "color.yellow50Hover": ( - default: (#9e7700), + "easing.entrance--expressive": ( + default: (cubic-bezier(0, 0, 0.3, 1)), ), - "color.yellow60Hover": ( - default: (#755800), + "easing.exit": ( + default: (cubic-bezier(0.2, 0, 1, 0.9)), ), - "color.yellow70Hover": ( - default: (#806000), + "easing.exit--expressive": ( + default: (cubic-bezier(0.4, 0.14, 1, 1)), ), - "color.yellow80Hover": ( - default: (#5c4600), + "easing.standard": ( + default: (cubic-bezier(0.5, 0, 0.1, 1)), ), - "color.yellow90Hover": ( - default: (#3d2e00), + "easing.standard--expressive": ( + default: (cubic-bezier(0.4, 0.14, 0.3, 1)), ), - "color.yellow100Hover": ( - default: (#332600), + "font.family.mono": ( + default: ("IBM Plex Mono", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace), ), - "icon.3D-Cursor": ( - default: (url('/icon/3D-Cursor.svg')), + "font.family.sans": ( + default: ("IBM Plex Sans", "Helvetica Neue", Arial, sans-serif), ), - "icon.3D-cursor--alt": ( - default: (url('/icon/3D-cursor--alt.svg')), + "font.family.sansCondensed": ( + default: ("IBM Plex Sans Condensed", "Helvetica Neue", Arial, sans-serif), ), - "icon.3D-curve--auto-colon": ( - default: (url('/icon/3D-curve--auto-colon.svg')), + "font.family.sansHebrew": ( + default: ("IBM Plex Sans Hebrew", "Helvetica Hebrew", "Arial Hebrew", sans-serif), ), - "icon.3D-curve--auto-vessels": ( - default: (url('/icon/3D-curve--auto-vessels.svg')), + "font.family.serif": ( + default: ("IBM Plex Serif", Georgia, Times, serif), ), - "icon.3D-curve--manual": ( - default: (url('/icon/3D-curve--manual.svg')), + "font.size.body01": ( + default: (0.875rem), ), - "icon.3D-iCa": ( - default: (url('/icon/3D-iCa.svg')), + "font.size.body02": ( + default: (1rem), ), - "icon.3D-MPR-Toggle": ( - default: (url('/icon/3D-MPR-Toggle.svg')), + "font.size.bodyCompact01": ( + default: (0.875rem), ), - "icon.3D-print-mesh": ( - default: (url('/icon/3D-print-mesh.svg')), + "font.size.bodyCompact02": ( + default: (1rem), ), - "icon.3D-software": ( - default: (url('/icon/3D-software.svg')), + "font.size.bodyLong01": ( + default: (0.875rem), ), - "icon.3rd-party-connected": ( - default: (url('/icon/3rd-party-connected.svg')), + "font.size.bodyLong02": ( + default: (1rem), ), - "icon.4K": ( - default: (url('/icon/4K.svg')), + "font.size.bodyShort01": ( + default: (0.875rem), ), - "icon.4K--filled": ( - default: (url('/icon/4K--filled.svg')), + "font.size.bodyShort02": ( + default: (1rem), ), - "icon.accessibility": ( - default: (url('/icon/accessibility.svg')), + "font.size.caption01": ( + default: (0.75rem), ), - "icon.accessibility--alt": ( - default: (url('/icon/accessibility--alt.svg')), + "font.size.caption02": ( + default: (0.875rem), ), - "icon.accessibility--color": ( - default: (url('/icon/accessibility--color.svg')), + "font.size.code01": ( + default: (0.75rem), ), - "icon.accessibility--color--filled": ( - default: (url('/icon/accessibility--color--filled.svg')), + "font.size.code02": ( + default: (0.875rem), ), - "icon.account": ( - default: (url('/icon/account.svg')), + "font.size.display01": ( + default: (2.625rem), ), - "icon.accumulation--ice": ( - default: (url('/icon/accumulation--ice.svg')), + "font.size.display02": ( + default: (2.625rem), ), - "icon.accumulation--precipitation": ( - default: (url('/icon/accumulation--precipitation.svg')), + "font.size.display03": ( + default: (2.625rem), ), - "icon.accumulation--rain": ( - default: (url('/icon/accumulation--rain.svg')), + "font.size.display04": ( + default: (2.625rem), ), - "icon.accumulation--snow": ( - default: (url('/icon/accumulation--snow.svg')), + "font.size.expressiveHeading01": ( + default: (0.875rem), ), - "icon.activity": ( - default: (url('/icon/activity.svg')), + "font.size.expressiveHeading02": ( + default: (1rem), ), - "icon.add": ( - default: (url('/icon/add.svg')), + "font.size.expressiveHeading03": ( + default: (1.25rem), ), - "icon.add--alt": ( - default: (url('/icon/add--alt.svg')), + "font.size.expressiveHeading04": ( + default: (1.75rem), ), - "icon.add--filled": ( - default: (url('/icon/add--filled.svg')), + "font.size.expressiveHeading05": ( + default: (2rem), ), - "icon.add-comment": ( + "font.size.expressiveHeading06": ( + default: (2rem), + ), + "font.size.expressiveParagraph01": ( + default: (1.5rem), + ), + "font.size.fluidDisplay01": ( + default: (2.625rem), + ), + "font.size.fluidDisplay02": ( + default: (2.625rem), + ), + "font.size.fluidDisplay03": ( + default: (2.625rem), + ), + "font.size.fluidDisplay04": ( + default: (2.625rem), + ), + "font.size.fluidHeading03": ( + default: (1.25rem), + ), + "font.size.fluidHeading04": ( + default: (1.75rem), + ), + "font.size.fluidHeading05": ( + default: (2rem), + ), + "font.size.fluidHeading06": ( + default: (2rem), + ), + "font.size.fluidParagraph01": ( + default: (1.5rem), + ), + "font.size.fluidQuotation01": ( + default: (1.25rem), + ), + "font.size.fluidQuotation02": ( + default: (2rem), + ), + "font.size.heading01": ( + default: (0.875rem), + ), + "font.size.heading02": ( + default: (1rem), + ), + "font.size.heading03": ( + default: (1.25rem), + ), + "font.size.heading04": ( + default: (1.75rem), + ), + "font.size.heading05": ( + default: (2rem), + ), + "font.size.heading06": ( + default: (2.625rem), + ), + "font.size.heading07": ( + default: (3.375rem), + ), + "font.size.headingCompact01": ( + default: (0.875rem), + ), + "font.size.headingCompact02": ( + default: (1rem), + ), + "font.size.helperText01": ( + default: (0.75rem), + ), + "font.size.helperText02": ( + default: (0.875rem), + ), + "font.size.label01": ( + default: (0.75rem), + ), + "font.size.label02": ( + default: (0.875rem), + ), + "font.size.legal01": ( + default: (0.75rem), + ), + "font.size.legal02": ( + default: (0.875rem), + ), + "font.size.productiveHeading01": ( + default: (0.875rem), + ), + "font.size.productiveHeading02": ( + default: (1rem), + ), + "font.size.productiveHeading03": ( + default: (1.25rem), + ), + "font.size.productiveHeading04": ( + default: (1.75rem), + ), + "font.size.productiveHeading05": ( + default: (2rem), + ), + "font.size.productiveHeading06": ( + default: (2.625rem), + ), + "font.size.productiveHeading07": ( + default: (3.375rem), + ), + "font.size.quotation01": ( + default: (1.25rem), + ), + "font.size.quotation02": ( + default: (2rem), + ), + "icon.3D-Cursor": ( + default: (url('/icon/3D-Cursor.svg')), + ), + "icon.3D-cursor--alt": ( + default: (url('/icon/3D-cursor--alt.svg')), + ), + "icon.3D-curve--auto-colon": ( + default: (url('/icon/3D-curve--auto-colon.svg')), + ), + "icon.3D-curve--auto-vessels": ( + default: (url('/icon/3D-curve--auto-vessels.svg')), + ), + "icon.3D-curve--manual": ( + default: (url('/icon/3D-curve--manual.svg')), + ), + "icon.3D-iCa": ( + default: (url('/icon/3D-iCa.svg')), + ), + "icon.3D-MPR-Toggle": ( + default: (url('/icon/3D-MPR-Toggle.svg')), + ), + "icon.3D-print-mesh": ( + default: (url('/icon/3D-print-mesh.svg')), + ), + "icon.3D-software": ( + default: (url('/icon/3D-software.svg')), + ), + "icon.3rd-party-connected": ( + default: (url('/icon/3rd-party-connected.svg')), + ), + "icon.4K": ( + default: (url('/icon/4K.svg')), + ), + "icon.4K--filled": ( + default: (url('/icon/4K--filled.svg')), + ), + "icon.accessibility": ( + default: (url('/icon/accessibility.svg')), + ), + "icon.accessibility--alt": ( + default: (url('/icon/accessibility--alt.svg')), + ), + "icon.accessibility--color": ( + default: (url('/icon/accessibility--color.svg')), + ), + "icon.accessibility--color--filled": ( + default: (url('/icon/accessibility--color--filled.svg')), + ), + "icon.account": ( + default: (url('/icon/account.svg')), + ), + "icon.accumulation--ice": ( + default: (url('/icon/accumulation--ice.svg')), + ), + "icon.accumulation--precipitation": ( + default: (url('/icon/accumulation--precipitation.svg')), + ), + "icon.accumulation--rain": ( + default: (url('/icon/accumulation--rain.svg')), + ), + "icon.accumulation--snow": ( + default: (url('/icon/accumulation--snow.svg')), + ), + "icon.activity": ( + default: (url('/icon/activity.svg')), + ), + "icon.add": ( + default: (url('/icon/add.svg')), + ), + "icon.add--alt": ( + default: (url('/icon/add--alt.svg')), + ), + "icon.add--filled": ( + default: (url('/icon/add--filled.svg')), + ), + "icon.add-comment": ( default: (url('/icon/add-comment.svg')), ), "icon.agriculture-analytics": ( @@ -2999,15 +3212,15 @@ $__token-values: ( "icon.forum": ( default: (url('/icon/forum.svg')), ), + "icon.forward--5": ( + default: (url('/icon/forward--5.svg')), + ), "icon.forward--10": ( default: (url('/icon/forward--10.svg')), ), "icon.forward--30": ( default: (url('/icon/forward--30.svg')), ), - "icon.forward--5": ( - default: (url('/icon/forward--5.svg')), - ), "icon.fragile": ( default: (url('/icon/fragile.svg')), ), @@ -4856,15 +5069,15 @@ $__token-values: ( "icon.review": ( default: (url('/icon/review.svg')), ), + "icon.rewind--5": ( + default: (url('/icon/rewind--5.svg')), + ), "icon.rewind--10": ( default: (url('/icon/rewind--10.svg')), ), "icon.rewind--30": ( default: (url('/icon/rewind--30.svg')), ), - "icon.rewind--5": ( - default: (url('/icon/rewind--5.svg')), - ), "icon.road": ( default: (url('/icon/road.svg')), ), @@ -6494,269 +6707,56 @@ $__token-values: ( "icon.zoom-pan": ( default: (url('/icon/zoom-pan.svg')), ), - "font.family.mono": ( - default: ("IBM Plex Mono", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace), - ), - "font.family.sans": ( - default: ("IBM Plex Sans", "Helvetica Neue", Arial, sans-serif), - ), - "font.family.sansCondensed": ( - default: ("IBM Plex Sans Condensed", "Helvetica Neue", Arial, sans-serif), - ), - "font.family.sansHebrew": ( - default: ("IBM Plex Sans Hebrew", "Helvetica Hebrew", "Arial Hebrew", sans-serif), - ), - "font.family.serif": ( - default: ("IBM Plex Serif", Georgia, Times, serif), - ), - "font.size.body01": ( - default: (0.875rem), - ), - "font.size.body02": ( - default: (1rem), - ), - "font.size.bodyCompact01": ( - default: (0.875rem), - ), - "font.size.bodyCompact02": ( - default: (1rem), - ), - "font.size.bodyLong01": ( - default: (0.875rem), - ), - "font.size.bodyLong02": ( - default: (1rem), - ), - "font.size.bodyShort01": ( - default: (0.875rem), - ), - "font.size.bodyShort02": ( - default: (1rem), - ), - "font.size.caption01": ( - default: (0.75rem), - ), - "font.size.caption02": ( - default: (0.875rem), - ), - "font.size.code01": ( - default: (0.75rem), - ), - "font.size.code02": ( - default: (0.875rem), - ), - "font.size.display01": ( - default: (2.625rem), - ), - "font.size.display02": ( - default: (2.625rem), - ), - "font.size.display03": ( - default: (2.625rem), - ), - "font.size.display04": ( - default: (2.625rem), - ), - "font.size.expressiveHeading01": ( - default: (0.875rem), - ), - "font.size.expressiveHeading02": ( - default: (1rem), - ), - "font.size.expressiveHeading03": ( - default: (1.25rem), - ), - "font.size.expressiveHeading04": ( - default: (1.75rem), - ), - "font.size.expressiveHeading05": ( - default: (2rem), - ), - "font.size.expressiveHeading06": ( - default: (2rem), - ), - "font.size.expressiveParagraph01": ( - default: (1.5rem), - ), - "font.size.fluidDisplay01": ( - default: (2.625rem), - ), - "font.size.fluidDisplay02": ( - default: (2.625rem), - ), - "font.size.fluidDisplay03": ( - default: (2.625rem), - ), - "font.size.fluidDisplay04": ( - default: (2.625rem), - ), - "font.size.fluidHeading03": ( - default: (1.25rem), - ), - "font.size.fluidHeading04": ( - default: (1.75rem), - ), - "font.size.fluidHeading05": ( - default: (2rem), - ), - "font.size.fluidHeading06": ( - default: (2rem), - ), - "font.size.fluidParagraph01": ( - default: (1.5rem), - ), - "font.size.fluidQuotation01": ( - default: (1.25rem), - ), - "font.size.fluidQuotation02": ( - default: (2rem), - ), - "font.size.heading01": ( - default: (0.875rem), - ), - "font.size.heading02": ( - default: (1rem), - ), - "font.size.heading03": ( - default: (1.25rem), - ), - "font.size.heading04": ( - default: (1.75rem), - ), - "font.size.heading05": ( - default: (2rem), - ), - "font.size.heading06": ( - default: (2.625rem), - ), - "font.size.heading07": ( - default: (3.375rem), - ), - "font.size.headingCompact01": ( - default: (0.875rem), - ), - "font.size.headingCompact02": ( - default: (1rem), - ), - "font.size.helperText01": ( - default: (0.75rem), - ), - "font.size.helperText02": ( - default: (0.875rem), - ), - "font.size.label01": ( - default: (0.75rem), - ), - "font.size.label02": ( - default: (0.875rem), - ), - "font.size.legal01": ( - default: (0.75rem), - ), - "font.size.legal02": ( - default: (0.875rem), - ), - "font.size.productiveHeading01": ( - default: (0.875rem), - ), - "font.size.productiveHeading02": ( - default: (1rem), - ), - "font.size.productiveHeading03": ( - default: (1.25rem), - ), - "font.size.productiveHeading04": ( - default: (1.75rem), - ), - "font.size.productiveHeading05": ( - default: (2rem), - ), - "font.size.productiveHeading06": ( - default: (2.625rem), - ), - "font.size.productiveHeading07": ( - default: (3.375rem), - ), - "font.size.quotation01": ( - default: (1.25rem), - ), - "font.size.quotation02": ( - default: (2rem), - ), - "spacing.4xs": ( - default: (1px), - ), - "spacing.3xs": ( - default: (2px), + "spacing.2xl": ( + default: (40px), ), "spacing.2xs": ( default: (4px), ), - "spacing.xs": ( - default: (8px), - ), - "spacing.sm": ( - default: (12px), - ), - "spacing.md": ( - default: (16px), - ), - "spacing.lg": ( - default: (24px), + "spacing.3xl": ( + default: (48px), ), - "spacing.xl": ( - default: (32px), + "spacing.3xs": ( + default: (2px), ), - "spacing.2xl": ( - default: (40px), + "spacing.4xs": ( + default: (1px), ), - "spacing.3xl": ( - default: (48px), + "spacing.layout.2xl": ( + default: (160px), ), "spacing.layout.2xs": ( default: (16px), ), - "spacing.layout.xs": ( - default: (24px), - ), - "spacing.layout.sm": ( - default: (32px), + "spacing.layout.lg": ( + default: (64px), ), "spacing.layout.md": ( default: (48px), ), - "spacing.layout.lg": ( - default: (64px), + "spacing.layout.sm": ( + default: (32px), ), "spacing.layout.xl": ( default: (96px), ), - "spacing.layout.2xl": ( - default: (160px), - ), - "easing.easeIn": ( - default: (cubic-bezier(0.25, 0, 1, 1)), - ), - "easing.easeOut": ( - default: (cubic-bezier(0, 0, 0.25, 1)), - ), - "easing.standard": ( - default: (cubic-bezier(0.5, 0, 0.1, 1)), + "spacing.layout.xs": ( + default: (24px), ), - "easing.standard--expressive": ( - default: (cubic-bezier(0.4, 0.14, 0.3, 1)), + "spacing.lg": ( + default: (24px), ), - "easing.entrance": ( - default: (cubic-bezier(0, 0, 0.38, 0.9)), + "spacing.md": ( + default: (16px), ), - "easing.entrance--expressive": ( - default: (cubic-bezier(0, 0, 0.3, 1)), + "spacing.sm": ( + default: (12px), ), - "easing.exit": ( - default: (cubic-bezier(0.2, 0, 1, 0.9)), + "spacing.xl": ( + default: (32px), ), - "easing.exit--expressive": ( - default: (cubic-bezier(0.4, 0.14, 1, 1)), + "spacing.xs": ( + default: (8px), ), "transition.base": ( default: (250ms), diff --git a/examples/ibm/tokens/tokens.css b/examples/ibm/tokens/tokens.css index e4be2837..73d1e298 100644 --- a/examples/ibm/tokens/tokens.css +++ b/examples/ibm/tokens/tokens.css @@ -9,250 +9,321 @@ --color-black100: #000000; --color-blackHover: #212121; --color-blue10: #edf5ff; - --color-blue20: #d0e2ff; - --color-blue30: #a6c8ff; - --color-blue40: #78a9ff; - --color-blue50: #4589ff; - --color-blue60: #0f62fe; - --color-blue70: #0043ce; - --color-blue80: #002d9c; - --color-blue90: #001d6c; - --color-blue100: #001141; --color-blue10Hover: #dbebff; + --color-blue20: #d0e2ff; --color-blue20Hover: #b8d3ff; + --color-blue30: #a6c8ff; --color-blue30Hover: #8ab6ff; + --color-blue40: #78a9ff; --color-blue40Hover: #5c97ff; + --color-blue50: #4589ff; --color-blue50Hover: #1f70ff; + --color-blue60: #0f62fe; --color-blue60Hover: #0050e6; + --color-blue70: #0043ce; --color-blue70Hover: #0053ff; + --color-blue80: #002d9c; --color-blue80Hover: #0039c7; + --color-blue90: #001d6c; --color-blue90Hover: #00258a; + --color-blue100: #001141; --color-blue100Hover: #001f75; --color-coolGray10: #f2f4f8; - --color-coolGray20: #dde1e6; - --color-coolGray30: #c1c7cd; - --color-coolGray40: #a2a9b0; - --color-coolGray50: #878d96; - --color-coolGray60: #697077; - --color-coolGray70: #4d5358; - --color-coolGray80: #343a3f; - --color-coolGray90: #21272a; - --color-coolGray100: #121619; --color-coolGray10Hover: #e4e9f1; + --color-coolGray20: #dde1e6; --color-coolGray20Hover: #cdd3da; + --color-coolGray30: #c1c7cd; --color-coolGray30Hover: #adb5bd; + --color-coolGray40: #a2a9b0; --color-coolGray40Hover: #9199a1; + --color-coolGray50: #878d96; --color-coolGray50Hover: #757b85; + --color-coolGray60: #697077; --color-coolGray60Hover: #585e64; + --color-coolGray70: #4d5358; --color-coolGray70Hover: #5d646a; + --color-coolGray80: #343a3f; --color-coolGray80Hover: #434a51; + --color-coolGray90: #21272a; --color-coolGray90Hover: #2b3236; + --color-coolGray100: #121619; --color-coolGray100Hover: #222a2f; --color-cyan10: #e5f6ff; - --color-cyan20: #bae6ff; - --color-cyan30: #82cfff; - --color-cyan40: #33b1ff; - --color-cyan50: #1192e8; - --color-cyan60: #0072c3; - --color-cyan70: #00539a; - --color-cyan80: #003a6d; - --color-cyan90: #012749; - --color-cyan100: #061727; --color-cyan10Hover: #cceeff; + --color-cyan20: #bae6ff; --color-cyan20Hover: #99daff; + --color-cyan30: #82cfff; --color-cyan30Hover: #57beff; + --color-cyan40: #33b1ff; --color-cyan40Hover: #059fff; + --color-cyan50: #1192e8; --color-cyan50Hover: #0f7ec8; + --color-cyan60: #0072c3; --color-cyan60Hover: #005fa3; + --color-cyan70: #00539a; --color-cyan70Hover: #0066bd; + --color-cyan80: #003a6d; --color-cyan80Hover: #00498a; + --color-cyan90: #012749; --color-cyan90Hover: #013360; + --color-cyan100: #061727; --color-cyan100Hover: #0b2947; --color-gray10: #f4f4f4; - --color-gray20: #e0e0e0; - --color-gray30: #c6c6c6; - --color-gray40: #a8a8a8; - --color-gray50: #8d8d8d; - --color-gray60: #6f6f6f; - --color-gray70: #525252; - --color-gray80: #393939; - --color-gray90: #262626; - --color-gray100: #161616; --color-gray10Hover: #e8e8e8; + --color-gray20: #e0e0e0; --color-gray20Hover: #d1d1d1; + --color-gray30: #c6c6c6; --color-gray30Hover: #b5b5b5; + --color-gray40: #a8a8a8; --color-gray40Hover: #999999; + --color-gray50: #8d8d8d; --color-gray50Hover: #7a7a7a; + --color-gray60: #6f6f6f; --color-gray60Hover: #5e5e5e; + --color-gray70: #525252; --color-gray70Hover: #636363; + --color-gray80: #393939; --color-gray80Hover: #474747; + --color-gray90: #262626; --color-gray90Hover: #333333; + --color-gray100: #161616; --color-gray100Hover: #292929; --color-green10: #defbe6; - --color-green20: #a7f0ba; - --color-green30: #6fdc8c; - --color-green40: #42be65; - --color-green50: #24a148; - --color-green60: #198038; - --color-green70: #0e6027; - --color-green80: #044317; - --color-green90: #022d0d; - --color-green100: #071908; --color-green10Hover: #b6f6c8; + --color-green20: #a7f0ba; --color-green20Hover: #74e792; + --color-green30: #6fdc8c; --color-green30Hover: #36ce5e; + --color-green40: #42be65; --color-green40Hover: #3bab5a; + --color-green50: #24a148; --color-green50Hover: #208e3f; + --color-green60: #198038; --color-green60Hover: #166f31; + --color-green70: #0e6027; --color-green70Hover: #11742f; + --color-green80: #044317; --color-green80Hover: #05521c; + --color-green90: #022d0d; --color-green90Hover: #033b11; + --color-green100: #071908; --color-green100Hover: #0d300f; --color-magenta10: #fff0f7; - --color-magenta20: #ffd6e8; - --color-magenta30: #ffafd2; - --color-magenta40: #ff7eb6; - --color-magenta50: #ee5396; - --color-magenta60: #d02670; - --color-magenta70: #9f1853; - --color-magenta80: #740937; - --color-magenta90: #510224; - --color-magenta100: #2a0a18; --color-magenta10Hover: #ffe0ef; + --color-magenta20: #ffd6e8; --color-magenta20Hover: #ffbdda; + --color-magenta30: #ffafd2; --color-magenta30Hover: #ff94c3; + --color-magenta40: #ff7eb6; --color-magenta40Hover: #ff57a0; + --color-magenta50: #ee5396; --color-magenta50Hover: #e3176f; + --color-magenta60: #d02670; --color-magenta60Hover: #b0215f; + --color-magenta70: #9f1853; --color-magenta70Hover: #bf1d63; + --color-magenta80: #740937; --color-magenta80Hover: #8e0b43; + --color-magenta90: #510224; --color-magenta90Hover: #68032e; + --color-magenta100: #2a0a18; --color-magenta100Hover: #53142f; --color-orange: #ff832b; --color-orange10: #fff2e8; - --color-orange20: #ffd9be; - --color-orange30: #ffb784; - --color-orange40: #ff832b; - --color-orange50: #eb6200; - --color-orange60: #ba4e00; - --color-orange70: #8a3800; - --color-orange80: #5e2900; - --color-orange90: #3e1a00; - --color-orange100: #231000; --color-orange10Hover: #ffe2cc; + --color-orange20: #ffd9be; --color-orange20Hover: #ffc69e; + --color-orange30: #ffb784; --color-orange30Hover: #ff9d57; + --color-orange40: #ff832b; --color-orange40Hover: #fa6800; + --color-orange50: #eb6200; --color-orange50Hover: #cc5500; + --color-orange60: #ba4e00; --color-orange60Hover: #9e4200; + --color-orange70: #8a3800; --color-orange70Hover: #a84400; + --color-orange80: #5e2900; --color-orange80Hover: #753300; + --color-orange90: #3e1a00; --color-orange90Hover: #522200; + --color-orange100: #231000; --color-orange100Hover: #421e00; --color-purple10: #f6f2ff; - --color-purple20: #e8daff; - --color-purple30: #d4bbff; - --color-purple40: #be95ff; - --color-purple50: #a56eff; - --color-purple60: #8a3ffc; - --color-purple70: #6929c4; - --color-purple80: #491d8b; - --color-purple90: #31135e; - --color-purple100: #1c0f30; --color-purple10Hover: #ede5ff; + --color-purple20: #e8daff; --color-purple20Hover: #dcc7ff; + --color-purple30: #d4bbff; --color-purple30Hover: #c5a3ff; + --color-purple40: #be95ff; --color-purple40Hover: #ae7aff; + --color-purple50: #a56eff; --color-purple50Hover: #9352ff; + --color-purple60: #8a3ffc; --color-purple60Hover: #7822fb; + --color-purple70: #6929c4; --color-purple70Hover: #7c3dd6; + --color-purple80: #491d8b; --color-purple80Hover: #5b24ad; + --color-purple90: #31135e; --color-purple90Hover: #40197b; + --color-purple100: #1c0f30; --color-purple100Hover: #341c59; --color-red10: #fff1f1; - --color-red20: #ffd7d9; - --color-red30: #ffb3b8; - --color-red40: #ff8389; - --color-red50: #fa4d56; - --color-red60: #da1e28; - --color-red70: #a2191f; - --color-red80: #750e13; - --color-red90: #520408; - --color-red100: #2d0709; --color-red10Hover: #ffe0e0; + --color-red20: #ffd7d9; --color-red20Hover: #ffc2c5; + --color-red30: #ffb3b8; --color-red30Hover: #ff99a0; + --color-red40: #ff8389; --color-red40Hover: #ff6168; + --color-red50: #fa4d56; --color-red50Hover: #ee0713; + --color-red60: #da1e28; --color-red60Hover: #b81922; + --color-red70: #a2191f; --color-red70Hover: #c21e25; + --color-red80: #750e13; --color-red80Hover: #921118; + --color-red90: #520408; --color-red90Hover: #66050a; + --color-red100: #2d0709; --color-red100Hover: #540d11; --color-teal10: #d9fbfb; - --color-teal20: #9ef0f0; - --color-teal30: #3ddbd9; - --color-teal40: #08bdba; - --color-teal50: #009d9a; - --color-teal60: #007d79; - --color-teal70: #005d5d; - --color-teal80: #004144; - --color-teal90: #022b30; - --color-teal100: #081a1c; --color-teal10Hover: #acf6f6; + --color-teal20: #9ef0f0; --color-teal20Hover: #57e5e5; + --color-teal30: #3ddbd9; --color-teal30Hover: #25cac8; + --color-teal40: #08bdba; --color-teal40Hover: #07aba9; + --color-teal50: #009d9a; --color-teal50Hover: #008a87; + --color-teal60: #007d79; --color-teal60Hover: #006b68; + --color-teal70: #005d5d; --color-teal70Hover: #007070; + --color-teal80: #004144; --color-teal80Hover: #005357; + --color-teal90: #022b30; --color-teal90Hover: #033940; + --color-teal100: #081a1c; --color-teal100Hover: #0f3034; --color-warmGray10: #f7f3f2; - --color-warmGray20: #e5e0df; - --color-warmGray30: #cac5c4; - --color-warmGray40: #ada8a8; - --color-warmGray50: #8f8b8b; - --color-warmGray60: #726e6e; - --color-warmGray70: #565151; - --color-warmGray80: #3c3838; - --color-warmGray90: #272525; - --color-warmGray100: #171414; --color-warmGray10Hover: #f0e8e6; + --color-warmGray20: #e5e0df; --color-warmGray20Hover: #d8d0cf; + --color-warmGray30: #cac5c4; --color-warmGray30Hover: #b9b3b1; + --color-warmGray40: #ada8a8; --color-warmGray40Hover: #9c9696; + --color-warmGray50: #8f8b8b; --color-warmGray50Hover: #7f7b7b; + --color-warmGray60: #726e6e; --color-warmGray60Hover: #605d5d; + --color-warmGray70: #565151; --color-warmGray70Hover: #696363; + --color-warmGray80: #3c3838; --color-warmGray80Hover: #4c4848; + --color-warmGray90: #272525; --color-warmGray90Hover: #343232; + --color-warmGray100: #171414; --color-warmGray100Hover: #2c2626; --color-white: #ffffff; --color-white0: #ffffff; --color-whiteHover: #e8e8e8; --color-yellow: #f1c21b; --color-yellow10: #fcf4d6; - --color-yellow20: #fddc69; - --color-yellow30: #f1c21b; - --color-yellow40: #d2a106; - --color-yellow50: #b28600; - --color-yellow60: #8e6a00; - --color-yellow70: #684e00; - --color-yellow80: #483700; - --color-yellow90: #302400; - --color-yellow100: #1c1500; --color-yellow10Hover: #f8e6a0; + --color-yellow20: #fddc69; --color-yellow20Hover: #fccd27; + --color-yellow30: #f1c21b; --color-yellow30Hover: #ddb00e; + --color-yellow40: #d2a106; --color-yellow40Hover: #bc9005; + --color-yellow50: #b28600; --color-yellow50Hover: #9e7700; + --color-yellow60: #8e6a00; --color-yellow60Hover: #755800; + --color-yellow70: #684e00; --color-yellow70Hover: #806000; + --color-yellow80: #483700; --color-yellow80Hover: #5c4600; + --color-yellow90: #302400; --color-yellow90Hover: #3d2e00; + --color-yellow100: #1c1500; --color-yellow100Hover: #332600; + --easing-easeIn: cubic-bezier(0.25, 0, 1, 1); + --easing-easeOut: cubic-bezier(0, 0, 0.25, 1); + --easing-entrance: cubic-bezier(0, 0, 0.38, 0.9); + --easing-entrance--expressive: cubic-bezier(0, 0, 0.3, 1); + --easing-exit: cubic-bezier(0.2, 0, 1, 0.9); + --easing-exit--expressive: cubic-bezier(0.4, 0.14, 1, 1); + --easing-standard: cubic-bezier(0.5, 0, 0.1, 1); + --easing-standard--expressive: cubic-bezier(0.4, 0.14, 0.3, 1); + --font-family-mono: "IBM Plex Mono", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace; + --font-family-sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif; + --font-family-sansCondensed: "IBM Plex Sans Condensed", "Helvetica Neue", Arial, sans-serif; + --font-family-sansHebrew: "IBM Plex Sans Hebrew", "Helvetica Hebrew", "Arial Hebrew", sans-serif; + --font-family-serif: "IBM Plex Serif", Georgia, Times, serif; + --font-size-body01: 0.875rem; + --font-size-body02: 1rem; + --font-size-bodyCompact01: 0.875rem; + --font-size-bodyCompact02: 1rem; + --font-size-bodyLong01: 0.875rem; + --font-size-bodyLong02: 1rem; + --font-size-bodyShort01: 0.875rem; + --font-size-bodyShort02: 1rem; + --font-size-caption01: 0.75rem; + --font-size-caption02: 0.875rem; + --font-size-code01: 0.75rem; + --font-size-code02: 0.875rem; + --font-size-display01: 2.625rem; + --font-size-display02: 2.625rem; + --font-size-display03: 2.625rem; + --font-size-display04: 2.625rem; + --font-size-expressiveHeading01: 0.875rem; + --font-size-expressiveHeading02: 1rem; + --font-size-expressiveHeading03: 1.25rem; + --font-size-expressiveHeading04: 1.75rem; + --font-size-expressiveHeading05: 2rem; + --font-size-expressiveHeading06: 2rem; + --font-size-expressiveParagraph01: 1.5rem; + --font-size-fluidDisplay01: 2.625rem; + --font-size-fluidDisplay02: 2.625rem; + --font-size-fluidDisplay03: 2.625rem; + --font-size-fluidDisplay04: 2.625rem; + --font-size-fluidHeading03: 1.25rem; + --font-size-fluidHeading04: 1.75rem; + --font-size-fluidHeading05: 2rem; + --font-size-fluidHeading06: 2rem; + --font-size-fluidParagraph01: 1.5rem; + --font-size-fluidQuotation01: 1.25rem; + --font-size-fluidQuotation02: 2rem; + --font-size-heading01: 0.875rem; + --font-size-heading02: 1rem; + --font-size-heading03: 1.25rem; + --font-size-heading04: 1.75rem; + --font-size-heading05: 2rem; + --font-size-heading06: 2.625rem; + --font-size-heading07: 3.375rem; + --font-size-headingCompact01: 0.875rem; + --font-size-headingCompact02: 1rem; + --font-size-helperText01: 0.75rem; + --font-size-helperText02: 0.875rem; + --font-size-label01: 0.75rem; + --font-size-label02: 0.875rem; + --font-size-legal01: 0.75rem; + --font-size-legal02: 0.875rem; + --font-size-productiveHeading01: 0.875rem; + --font-size-productiveHeading02: 1rem; + --font-size-productiveHeading03: 1.25rem; + --font-size-productiveHeading04: 1.75rem; + --font-size-productiveHeading05: 2rem; + --font-size-productiveHeading06: 2.625rem; + --font-size-productiveHeading07: 3.375rem; + --font-size-quotation01: 1.25rem; + --font-size-quotation02: 2rem; --icon-3D-Cursor: url('/icon/3D-Cursor.svg'); --icon-3D-cursor--alt: url('/icon/3D-cursor--alt.svg'); --icon-3D-curve--auto-colon: url('/icon/3D-curve--auto-colon.svg'); @@ -1002,9 +1073,9 @@ --icon-forecast--lightning-30: url('/icon/forecast--lightning-30.svg'); --icon-fork: url('/icon/fork.svg'); --icon-forum: url('/icon/forum.svg'); + --icon-forward--5: url('/icon/forward--5.svg'); --icon-forward--10: url('/icon/forward--10.svg'); --icon-forward--30: url('/icon/forward--30.svg'); - --icon-forward--5: url('/icon/forward--5.svg'); --icon-fragile: url('/icon/fragile.svg'); --icon-friendship: url('/icon/friendship.svg'); --icon-fruit-bowl: url('/icon/fruit-bowl.svg'); @@ -1621,9 +1692,9 @@ --icon-result--old: url('/icon/result--old.svg'); --icon-retry--failed: url('/icon/retry--failed.svg'); --icon-review: url('/icon/review.svg'); + --icon-rewind--5: url('/icon/rewind--5.svg'); --icon-rewind--10: url('/icon/rewind--10.svg'); --icon-rewind--30: url('/icon/rewind--30.svg'); - --icon-rewind--5: url('/icon/rewind--5.svg'); --icon-road: url('/icon/road.svg'); --icon-road--weather: url('/icon/road--weather.svg'); --icon-roadmap: url('/icon/roadmap.svg'); @@ -2167,94 +2238,23 @@ --icon-zoom--out-area: url('/icon/zoom--out-area.svg'); --icon-zoom--reset: url('/icon/zoom--reset.svg'); --icon-zoom-pan: url('/icon/zoom-pan.svg'); - --font-family-mono: "IBM Plex Mono", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace; - --font-family-sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif; - --font-family-sansCondensed: "IBM Plex Sans Condensed", "Helvetica Neue", Arial, sans-serif; - --font-family-sansHebrew: "IBM Plex Sans Hebrew", "Helvetica Hebrew", "Arial Hebrew", sans-serif; - --font-family-serif: "IBM Plex Serif", Georgia, Times, serif; - --font-size-body01: 0.875rem; - --font-size-body02: 1rem; - --font-size-bodyCompact01: 0.875rem; - --font-size-bodyCompact02: 1rem; - --font-size-bodyLong01: 0.875rem; - --font-size-bodyLong02: 1rem; - --font-size-bodyShort01: 0.875rem; - --font-size-bodyShort02: 1rem; - --font-size-caption01: 0.75rem; - --font-size-caption02: 0.875rem; - --font-size-code01: 0.75rem; - --font-size-code02: 0.875rem; - --font-size-display01: 2.625rem; - --font-size-display02: 2.625rem; - --font-size-display03: 2.625rem; - --font-size-display04: 2.625rem; - --font-size-expressiveHeading01: 0.875rem; - --font-size-expressiveHeading02: 1rem; - --font-size-expressiveHeading03: 1.25rem; - --font-size-expressiveHeading04: 1.75rem; - --font-size-expressiveHeading05: 2rem; - --font-size-expressiveHeading06: 2rem; - --font-size-expressiveParagraph01: 1.5rem; - --font-size-fluidDisplay01: 2.625rem; - --font-size-fluidDisplay02: 2.625rem; - --font-size-fluidDisplay03: 2.625rem; - --font-size-fluidDisplay04: 2.625rem; - --font-size-fluidHeading03: 1.25rem; - --font-size-fluidHeading04: 1.75rem; - --font-size-fluidHeading05: 2rem; - --font-size-fluidHeading06: 2rem; - --font-size-fluidParagraph01: 1.5rem; - --font-size-fluidQuotation01: 1.25rem; - --font-size-fluidQuotation02: 2rem; - --font-size-heading01: 0.875rem; - --font-size-heading02: 1rem; - --font-size-heading03: 1.25rem; - --font-size-heading04: 1.75rem; - --font-size-heading05: 2rem; - --font-size-heading06: 2.625rem; - --font-size-heading07: 3.375rem; - --font-size-headingCompact01: 0.875rem; - --font-size-headingCompact02: 1rem; - --font-size-helperText01: 0.75rem; - --font-size-helperText02: 0.875rem; - --font-size-label01: 0.75rem; - --font-size-label02: 0.875rem; - --font-size-legal01: 0.75rem; - --font-size-legal02: 0.875rem; - --font-size-productiveHeading01: 0.875rem; - --font-size-productiveHeading02: 1rem; - --font-size-productiveHeading03: 1.25rem; - --font-size-productiveHeading04: 1.75rem; - --font-size-productiveHeading05: 2rem; - --font-size-productiveHeading06: 2.625rem; - --font-size-productiveHeading07: 3.375rem; - --font-size-quotation01: 1.25rem; - --font-size-quotation02: 2rem; - --spacing-4xs: 1px; - --spacing-3xs: 2px; - --spacing-2xs: 4px; - --spacing-xs: 8px; - --spacing-sm: 12px; - --spacing-md: 16px; - --spacing-lg: 24px; - --spacing-xl: 32px; --spacing-2xl: 40px; + --spacing-2xs: 4px; --spacing-3xl: 48px; + --spacing-3xs: 2px; + --spacing-4xs: 1px; + --spacing-layout-2xl: 160px; --spacing-layout-2xs: 16px; - --spacing-layout-xs: 24px; - --spacing-layout-sm: 32px; - --spacing-layout-md: 48px; --spacing-layout-lg: 64px; + --spacing-layout-md: 48px; + --spacing-layout-sm: 32px; --spacing-layout-xl: 96px; - --spacing-layout-2xl: 160px; - --easing-easeIn: cubic-bezier(0.25, 0, 1, 1); - --easing-easeOut: cubic-bezier(0, 0, 0.25, 1); - --easing-standard: cubic-bezier(0.5, 0, 0.1, 1); - --easing-standard--expressive: cubic-bezier(0.4, 0.14, 0.3, 1); - --easing-entrance: cubic-bezier(0, 0, 0.38, 0.9); - --easing-entrance--expressive: cubic-bezier(0, 0, 0.3, 1); - --easing-exit: cubic-bezier(0.2, 0, 1, 0.9); - --easing-exit--expressive: cubic-bezier(0.4, 0.14, 1, 1); + --spacing-layout-xs: 24px; + --spacing-lg: 24px; + --spacing-md: 16px; + --spacing-sm: 12px; + --spacing-xl: 32px; + --spacing-xs: 8px; --transition-base: 250ms; --transition-expansion: 300ms; --transition-fast01: 70ms; @@ -2269,251 +2269,251 @@ :root { --color-black: color(display-p3 0 0 0); --color-black100: color(display-p3 0 0 0); - --color-blackHover: color(display-p3 0.129412 0.129412 0.129412); - --color-blue10: color(display-p3 0.929412 0.960784 1); - --color-blue20: color(display-p3 0.815686 0.886275 1); - --color-blue30: color(display-p3 0.65098 0.784314 1); - --color-blue40: color(display-p3 0.470588 0.662745 1); - --color-blue50: color(display-p3 0.270588 0.537255 1); - --color-blue60: color(display-p3 0.058824 0.384314 0.996078); - --color-blue70: color(display-p3 0 0.262745 0.807843); - --color-blue80: color(display-p3 0 0.176471 0.611765); - --color-blue90: color(display-p3 0 0.113725 0.423529); - --color-blue100: color(display-p3 0 0.066667 0.254902); - --color-blue10Hover: color(display-p3 0.858824 0.921569 1); - --color-blue20Hover: color(display-p3 0.721569 0.827451 1); - --color-blue30Hover: color(display-p3 0.541176 0.713725 1); - --color-blue40Hover: color(display-p3 0.360784 0.592157 1); - --color-blue50Hover: color(display-p3 0.121569 0.439216 1); - --color-blue60Hover: color(display-p3 0 0.313725 0.901961); - --color-blue70Hover: color(display-p3 0 0.32549 1); - --color-blue80Hover: color(display-p3 0 0.223529 0.780392); - --color-blue90Hover: color(display-p3 0 0.145098 0.541176); - --color-blue100Hover: color(display-p3 0 0.121569 0.458824); - --color-coolGray10: color(display-p3 0.94902 0.956863 0.972549); - --color-coolGray20: color(display-p3 0.866667 0.882353 0.901961); - --color-coolGray30: color(display-p3 0.756863 0.780392 0.803922); - --color-coolGray40: color(display-p3 0.635294 0.662745 0.690196); - --color-coolGray50: color(display-p3 0.529412 0.552941 0.588235); - --color-coolGray60: color(display-p3 0.411765 0.439216 0.466667); - --color-coolGray70: color(display-p3 0.301961 0.32549 0.345098); - --color-coolGray80: color(display-p3 0.203922 0.227451 0.247059); - --color-coolGray90: color(display-p3 0.129412 0.152941 0.164706); - --color-coolGray100: color(display-p3 0.070588 0.086275 0.098039); - --color-coolGray10Hover: color(display-p3 0.894118 0.913725 0.945098); - --color-coolGray20Hover: color(display-p3 0.803922 0.827451 0.854902); - --color-coolGray30Hover: color(display-p3 0.678431 0.709804 0.741176); - --color-coolGray40Hover: color(display-p3 0.568627 0.6 0.631373); - --color-coolGray50Hover: color(display-p3 0.458824 0.482353 0.521569); - --color-coolGray60Hover: color(display-p3 0.345098 0.368627 0.392157); - --color-coolGray70Hover: color(display-p3 0.364706 0.392157 0.415686); - --color-coolGray80Hover: color(display-p3 0.262745 0.290196 0.317647); - --color-coolGray90Hover: color(display-p3 0.168627 0.196078 0.211765); - --color-coolGray100Hover: color(display-p3 0.133333 0.164706 0.184314); - --color-cyan10: color(display-p3 0.898039 0.964706 1); - --color-cyan20: color(display-p3 0.729412 0.901961 1); - --color-cyan30: color(display-p3 0.509804 0.811765 1); - --color-cyan40: color(display-p3 0.2 0.694118 1); - --color-cyan50: color(display-p3 0.066667 0.572549 0.909804); - --color-cyan60: color(display-p3 0 0.447059 0.764706); - --color-cyan70: color(display-p3 0 0.32549 0.603922); - --color-cyan80: color(display-p3 0 0.227451 0.427451); - --color-cyan90: color(display-p3 0.003922 0.152941 0.286275); - --color-cyan100: color(display-p3 0.023529 0.090196 0.152941); - --color-cyan10Hover: color(display-p3 0.8 0.933333 1); - --color-cyan20Hover: color(display-p3 0.6 0.854902 1); - --color-cyan30Hover: color(display-p3 0.341176 0.745098 1); - --color-cyan40Hover: color(display-p3 0.019608 0.623529 1); - --color-cyan50Hover: color(display-p3 0.058824 0.494118 0.784314); - --color-cyan60Hover: color(display-p3 0 0.372549 0.639216); - --color-cyan70Hover: color(display-p3 0 0.4 0.741176); - --color-cyan80Hover: color(display-p3 0 0.286275 0.541176); - --color-cyan90Hover: color(display-p3 0.003922 0.2 0.376471); - --color-cyan100Hover: color(display-p3 0.043137 0.160784 0.278431); - --color-gray10: color(display-p3 0.956863 0.956863 0.956863); - --color-gray20: color(display-p3 0.878431 0.878431 0.878431); - --color-gray30: color(display-p3 0.776471 0.776471 0.776471); - --color-gray40: color(display-p3 0.658824 0.658824 0.658824); - --color-gray50: color(display-p3 0.552941 0.552941 0.552941); - --color-gray60: color(display-p3 0.435294 0.435294 0.435294); - --color-gray70: color(display-p3 0.321569 0.321569 0.321569); - --color-gray80: color(display-p3 0.223529 0.223529 0.223529); - --color-gray90: color(display-p3 0.14902 0.14902 0.14902); - --color-gray100: color(display-p3 0.086275 0.086275 0.086275); - --color-gray10Hover: color(display-p3 0.909804 0.909804 0.909804); - --color-gray20Hover: color(display-p3 0.819608 0.819608 0.819608); - --color-gray30Hover: color(display-p3 0.709804 0.709804 0.709804); + --color-blackHover: color(display-p3 0.12941176470588237 0.12941176470588237 0.12941176470588237); + --color-blue10: color(display-p3 0.9294117647058824 0.9607843137254902 1); + --color-blue10Hover: color(display-p3 0.8588235294117647 0.9215686274509803 1); + --color-blue20: color(display-p3 0.8156862745098039 0.8862745098039215 1); + --color-blue20Hover: color(display-p3 0.7215686274509804 0.8274509803921568 1); + --color-blue30: color(display-p3 0.6509803921568628 0.7843137254901961 1); + --color-blue30Hover: color(display-p3 0.5411764705882353 0.7137254901960784 1); + --color-blue40: color(display-p3 0.47058823529411764 0.6627450980392157 1); + --color-blue40Hover: color(display-p3 0.3607843137254902 0.592156862745098 1); + --color-blue50: color(display-p3 0.27058823529411763 0.5372549019607843 1); + --color-blue50Hover: color(display-p3 0.12156862745098039 0.4392156862745098 1); + --color-blue60: color(display-p3 0.058823529411764705 0.3843137254901961 0.996078431372549); + --color-blue60Hover: color(display-p3 0 0.3137254901960784 0.9019607843137255); + --color-blue70: color(display-p3 0 0.2627450980392157 0.807843137254902); + --color-blue70Hover: color(display-p3 0 0.3254901960784314 1); + --color-blue80: color(display-p3 0 0.17647058823529413 0.611764705882353); + --color-blue80Hover: color(display-p3 0 0.2235294117647059 0.7803921568627451); + --color-blue90: color(display-p3 0 0.11372549019607843 0.4235294117647059); + --color-blue90Hover: color(display-p3 0 0.1450980392156863 0.5411764705882353); + --color-blue100: color(display-p3 0 0.06666666666666667 0.2549019607843137); + --color-blue100Hover: color(display-p3 0 0.12156862745098039 0.4588235294117647); + --color-coolGray10: color(display-p3 0.9490196078431372 0.9568627450980393 0.9725490196078431); + --color-coolGray10Hover: color(display-p3 0.8941176470588236 0.9137254901960784 0.9450980392156862); + --color-coolGray20: color(display-p3 0.8666666666666667 0.8823529411764706 0.9019607843137255); + --color-coolGray20Hover: color(display-p3 0.803921568627451 0.8274509803921568 0.8549019607843137); + --color-coolGray30: color(display-p3 0.7568627450980392 0.7803921568627451 0.803921568627451); + --color-coolGray30Hover: color(display-p3 0.6784313725490196 0.7098039215686275 0.7411764705882353); + --color-coolGray40: color(display-p3 0.6352941176470588 0.6627450980392157 0.6901960784313725); + --color-coolGray40Hover: color(display-p3 0.5686274509803921 0.6 0.6313725490196078); + --color-coolGray50: color(display-p3 0.5294117647058824 0.5529411764705883 0.5882352941176471); + --color-coolGray50Hover: color(display-p3 0.4588235294117647 0.4823529411764706 0.5215686274509804); + --color-coolGray60: color(display-p3 0.4117647058823529 0.4392156862745098 0.4666666666666667); + --color-coolGray60Hover: color(display-p3 0.34509803921568627 0.3686274509803922 0.39215686274509803); + --color-coolGray70: color(display-p3 0.30196078431372547 0.3254901960784314 0.34509803921568627); + --color-coolGray70Hover: color(display-p3 0.36470588235294116 0.39215686274509803 0.41568627450980394); + --color-coolGray80: color(display-p3 0.20392156862745098 0.22745098039215686 0.24705882352941178); + --color-coolGray80Hover: color(display-p3 0.2627450980392157 0.2901960784313726 0.3176470588235294); + --color-coolGray90: color(display-p3 0.12941176470588237 0.15294117647058825 0.16470588235294117); + --color-coolGray90Hover: color(display-p3 0.16862745098039217 0.19607843137254902 0.21176470588235294); + --color-coolGray100: color(display-p3 0.07058823529411765 0.08627450980392157 0.09803921568627451); + --color-coolGray100Hover: color(display-p3 0.13333333333333333 0.16470588235294117 0.1843137254901961); + --color-cyan10: color(display-p3 0.8980392156862745 0.9647058823529412 1); + --color-cyan10Hover: color(display-p3 0.8 0.9333333333333333 1); + --color-cyan20: color(display-p3 0.7294117647058823 0.9019607843137255 1); + --color-cyan20Hover: color(display-p3 0.6 0.8549019607843137 1); + --color-cyan30: color(display-p3 0.5098039215686274 0.8117647058823529 1); + --color-cyan30Hover: color(display-p3 0.3411764705882353 0.7450980392156863 1); + --color-cyan40: color(display-p3 0.2 0.6941176470588235 1); + --color-cyan40Hover: color(display-p3 0.0196078431372549 0.6235294117647059 1); + --color-cyan50: color(display-p3 0.06666666666666667 0.5725490196078431 0.9098039215686274); + --color-cyan50Hover: color(display-p3 0.058823529411764705 0.49411764705882355 0.7843137254901961); + --color-cyan60: color(display-p3 0 0.4470588235294118 0.7647058823529411); + --color-cyan60Hover: color(display-p3 0 0.37254901960784315 0.6392156862745098); + --color-cyan70: color(display-p3 0 0.3254901960784314 0.6039215686274509); + --color-cyan70Hover: color(display-p3 0 0.4 0.7411764705882353); + --color-cyan80: color(display-p3 0 0.22745098039215686 0.42745098039215684); + --color-cyan80Hover: color(display-p3 0 0.28627450980392155 0.5411764705882353); + --color-cyan90: color(display-p3 0.00392156862745098 0.15294117647058825 0.28627450980392155); + --color-cyan90Hover: color(display-p3 0.00392156862745098 0.2 0.3764705882352941); + --color-cyan100: color(display-p3 0.023529411764705882 0.09019607843137255 0.15294117647058825); + --color-cyan100Hover: color(display-p3 0.043137254901960784 0.1607843137254902 0.2784313725490196); + --color-gray10: color(display-p3 0.9568627450980393 0.9568627450980393 0.9568627450980393); + --color-gray10Hover: color(display-p3 0.9098039215686274 0.9098039215686274 0.9098039215686274); + --color-gray20: color(display-p3 0.8784313725490196 0.8784313725490196 0.8784313725490196); + --color-gray20Hover: color(display-p3 0.8196078431372549 0.8196078431372549 0.8196078431372549); + --color-gray30: color(display-p3 0.7764705882352941 0.7764705882352941 0.7764705882352941); + --color-gray30Hover: color(display-p3 0.7098039215686275 0.7098039215686275 0.7098039215686275); + --color-gray40: color(display-p3 0.6588235294117647 0.6588235294117647 0.6588235294117647); --color-gray40Hover: color(display-p3 0.6 0.6 0.6); - --color-gray50Hover: color(display-p3 0.478431 0.478431 0.478431); - --color-gray60Hover: color(display-p3 0.368627 0.368627 0.368627); - --color-gray70Hover: color(display-p3 0.388235 0.388235 0.388235); - --color-gray80Hover: color(display-p3 0.278431 0.278431 0.278431); + --color-gray50: color(display-p3 0.5529411764705883 0.5529411764705883 0.5529411764705883); + --color-gray50Hover: color(display-p3 0.47843137254901963 0.47843137254901963 0.47843137254901963); + --color-gray60: color(display-p3 0.43529411764705883 0.43529411764705883 0.43529411764705883); + --color-gray60Hover: color(display-p3 0.3686274509803922 0.3686274509803922 0.3686274509803922); + --color-gray70: color(display-p3 0.3215686274509804 0.3215686274509804 0.3215686274509804); + --color-gray70Hover: color(display-p3 0.38823529411764707 0.38823529411764707 0.38823529411764707); + --color-gray80: color(display-p3 0.2235294117647059 0.2235294117647059 0.2235294117647059); + --color-gray80Hover: color(display-p3 0.2784313725490196 0.2784313725490196 0.2784313725490196); + --color-gray90: color(display-p3 0.14901960784313725 0.14901960784313725 0.14901960784313725); --color-gray90Hover: color(display-p3 0.2 0.2 0.2); - --color-gray100Hover: color(display-p3 0.160784 0.160784 0.160784); - --color-green10: color(display-p3 0.870588 0.984314 0.901961); - --color-green20: color(display-p3 0.654902 0.941176 0.729412); - --color-green30: color(display-p3 0.435294 0.862745 0.54902); - --color-green40: color(display-p3 0.258824 0.745098 0.396078); - --color-green50: color(display-p3 0.141176 0.631373 0.282353); - --color-green60: color(display-p3 0.098039 0.501961 0.219608); - --color-green70: color(display-p3 0.054902 0.376471 0.152941); - --color-green80: color(display-p3 0.015686 0.262745 0.090196); - --color-green90: color(display-p3 0.007843 0.176471 0.05098); - --color-green100: color(display-p3 0.027451 0.098039 0.031373); - --color-green10Hover: color(display-p3 0.713725 0.964706 0.784314); - --color-green20Hover: color(display-p3 0.454902 0.905882 0.572549); - --color-green30Hover: color(display-p3 0.211765 0.807843 0.368627); - --color-green40Hover: color(display-p3 0.231373 0.670588 0.352941); - --color-green50Hover: color(display-p3 0.12549 0.556863 0.247059); - --color-green60Hover: color(display-p3 0.086275 0.435294 0.192157); - --color-green70Hover: color(display-p3 0.066667 0.454902 0.184314); - --color-green80Hover: color(display-p3 0.019608 0.321569 0.109804); - --color-green90Hover: color(display-p3 0.011765 0.231373 0.066667); - --color-green100Hover: color(display-p3 0.05098 0.188235 0.058824); - --color-magenta10: color(display-p3 1 0.941176 0.968627); - --color-magenta20: color(display-p3 1 0.839216 0.909804); - --color-magenta30: color(display-p3 1 0.686275 0.823529); - --color-magenta40: color(display-p3 1 0.494118 0.713725); - --color-magenta50: color(display-p3 0.933333 0.32549 0.588235); - --color-magenta60: color(display-p3 0.815686 0.14902 0.439216); - --color-magenta70: color(display-p3 0.623529 0.094118 0.32549); - --color-magenta80: color(display-p3 0.454902 0.035294 0.215686); - --color-magenta90: color(display-p3 0.317647 0.007843 0.141176); - --color-magenta100: color(display-p3 0.164706 0.039216 0.094118); - --color-magenta10Hover: color(display-p3 1 0.878431 0.937255); - --color-magenta20Hover: color(display-p3 1 0.741176 0.854902); - --color-magenta30Hover: color(display-p3 1 0.580392 0.764706); - --color-magenta40Hover: color(display-p3 1 0.341176 0.627451); - --color-magenta50Hover: color(display-p3 0.890196 0.090196 0.435294); - --color-magenta60Hover: color(display-p3 0.690196 0.129412 0.372549); - --color-magenta70Hover: color(display-p3 0.74902 0.113725 0.388235); - --color-magenta80Hover: color(display-p3 0.556863 0.043137 0.262745); - --color-magenta90Hover: color(display-p3 0.407843 0.011765 0.180392); - --color-magenta100Hover: color(display-p3 0.32549 0.078431 0.184314); - --color-orange: color(display-p3 1 0.513725 0.168627); - --color-orange10: color(display-p3 1 0.94902 0.909804); - --color-orange20: color(display-p3 1 0.85098 0.745098); - --color-orange30: color(display-p3 1 0.717647 0.517647); - --color-orange40: color(display-p3 1 0.513725 0.168627); - --color-orange50: color(display-p3 0.921569 0.384314 0); - --color-orange60: color(display-p3 0.729412 0.305882 0); - --color-orange70: color(display-p3 0.541176 0.219608 0); - --color-orange80: color(display-p3 0.368627 0.160784 0); - --color-orange90: color(display-p3 0.243137 0.101961 0); - --color-orange100: color(display-p3 0.137255 0.062745 0); - --color-orange10Hover: color(display-p3 1 0.886275 0.8); - --color-orange20Hover: color(display-p3 1 0.776471 0.619608); - --color-orange30Hover: color(display-p3 1 0.615686 0.341176); - --color-orange40Hover: color(display-p3 0.980392 0.407843 0); - --color-orange50Hover: color(display-p3 0.8 0.333333 0); - --color-orange60Hover: color(display-p3 0.619608 0.258824 0); - --color-orange70Hover: color(display-p3 0.658824 0.266667 0); - --color-orange80Hover: color(display-p3 0.458824 0.2 0); - --color-orange90Hover: color(display-p3 0.321569 0.133333 0); - --color-orange100Hover: color(display-p3 0.258824 0.117647 0); - --color-purple10: color(display-p3 0.964706 0.94902 1); - --color-purple20: color(display-p3 0.909804 0.854902 1); - --color-purple30: color(display-p3 0.831373 0.733333 1); - --color-purple40: color(display-p3 0.745098 0.584314 1); - --color-purple50: color(display-p3 0.647059 0.431373 1); - --color-purple60: color(display-p3 0.541176 0.247059 0.988235); - --color-purple70: color(display-p3 0.411765 0.160784 0.768627); - --color-purple80: color(display-p3 0.286275 0.113725 0.545098); - --color-purple90: color(display-p3 0.192157 0.07451 0.368627); - --color-purple100: color(display-p3 0.109804 0.058824 0.188235); - --color-purple10Hover: color(display-p3 0.929412 0.898039 1); - --color-purple20Hover: color(display-p3 0.862745 0.780392 1); - --color-purple30Hover: color(display-p3 0.772549 0.639216 1); - --color-purple40Hover: color(display-p3 0.682353 0.478431 1); - --color-purple50Hover: color(display-p3 0.576471 0.321569 1); - --color-purple60Hover: color(display-p3 0.470588 0.133333 0.984314); - --color-purple70Hover: color(display-p3 0.486275 0.239216 0.839216); - --color-purple80Hover: color(display-p3 0.356863 0.141176 0.678431); - --color-purple90Hover: color(display-p3 0.25098 0.098039 0.482353); - --color-purple100Hover: color(display-p3 0.203922 0.109804 0.34902); - --color-red10: color(display-p3 1 0.945098 0.945098); - --color-red20: color(display-p3 1 0.843137 0.85098); - --color-red30: color(display-p3 1 0.701961 0.721569); - --color-red40: color(display-p3 1 0.513725 0.537255); - --color-red50: color(display-p3 0.980392 0.301961 0.337255); - --color-red60: color(display-p3 0.854902 0.117647 0.156863); - --color-red70: color(display-p3 0.635294 0.098039 0.121569); - --color-red80: color(display-p3 0.458824 0.054902 0.07451); - --color-red90: color(display-p3 0.321569 0.015686 0.031373); - --color-red100: color(display-p3 0.176471 0.027451 0.035294); - --color-red10Hover: color(display-p3 1 0.878431 0.878431); - --color-red20Hover: color(display-p3 1 0.760784 0.772549); - --color-red30Hover: color(display-p3 1 0.6 0.627451); - --color-red40Hover: color(display-p3 1 0.380392 0.407843); - --color-red50Hover: color(display-p3 0.933333 0.027451 0.07451); - --color-red60Hover: color(display-p3 0.721569 0.098039 0.133333); - --color-red70Hover: color(display-p3 0.760784 0.117647 0.145098); - --color-red80Hover: color(display-p3 0.572549 0.066667 0.094118); - --color-red90Hover: color(display-p3 0.4 0.019608 0.039216); - --color-red100Hover: color(display-p3 0.329412 0.05098 0.066667); - --color-teal10: color(display-p3 0.85098 0.984314 0.984314); - --color-teal20: color(display-p3 0.619608 0.941176 0.941176); - --color-teal30: color(display-p3 0.239216 0.858824 0.85098); - --color-teal40: color(display-p3 0.031373 0.741176 0.729412); - --color-teal50: color(display-p3 0 0.615686 0.603922); - --color-teal60: color(display-p3 0 0.490196 0.47451); - --color-teal70: color(display-p3 0 0.364706 0.364706); - --color-teal80: color(display-p3 0 0.254902 0.266667); - --color-teal90: color(display-p3 0.007843 0.168627 0.188235); - --color-teal100: color(display-p3 0.031373 0.101961 0.109804); - --color-teal10Hover: color(display-p3 0.67451 0.964706 0.964706); - --color-teal20Hover: color(display-p3 0.341176 0.898039 0.898039); - --color-teal30Hover: color(display-p3 0.145098 0.792157 0.784314); - --color-teal40Hover: color(display-p3 0.027451 0.670588 0.662745); - --color-teal50Hover: color(display-p3 0 0.541176 0.529412); - --color-teal60Hover: color(display-p3 0 0.419608 0.407843); - --color-teal70Hover: color(display-p3 0 0.439216 0.439216); - --color-teal80Hover: color(display-p3 0 0.32549 0.341176); - --color-teal90Hover: color(display-p3 0.011765 0.223529 0.25098); - --color-teal100Hover: color(display-p3 0.058824 0.188235 0.203922); - --color-warmGray10: color(display-p3 0.968627 0.952941 0.94902); - --color-warmGray20: color(display-p3 0.898039 0.878431 0.87451); - --color-warmGray30: color(display-p3 0.792157 0.772549 0.768627); - --color-warmGray40: color(display-p3 0.678431 0.658824 0.658824); - --color-warmGray50: color(display-p3 0.560784 0.545098 0.545098); - --color-warmGray60: color(display-p3 0.447059 0.431373 0.431373); - --color-warmGray70: color(display-p3 0.337255 0.317647 0.317647); - --color-warmGray80: color(display-p3 0.235294 0.219608 0.219608); - --color-warmGray90: color(display-p3 0.152941 0.145098 0.145098); - --color-warmGray100: color(display-p3 0.090196 0.078431 0.078431); - --color-warmGray10Hover: color(display-p3 0.941176 0.909804 0.901961); - --color-warmGray20Hover: color(display-p3 0.847059 0.815686 0.811765); - --color-warmGray30Hover: color(display-p3 0.72549 0.701961 0.694118); - --color-warmGray40Hover: color(display-p3 0.611765 0.588235 0.588235); - --color-warmGray50Hover: color(display-p3 0.498039 0.482353 0.482353); - --color-warmGray60Hover: color(display-p3 0.376471 0.364706 0.364706); - --color-warmGray70Hover: color(display-p3 0.411765 0.388235 0.388235); - --color-warmGray80Hover: color(display-p3 0.298039 0.282353 0.282353); - --color-warmGray90Hover: color(display-p3 0.203922 0.196078 0.196078); - --color-warmGray100Hover: color(display-p3 0.172549 0.14902 0.14902); + --color-gray100: color(display-p3 0.08627450980392157 0.08627450980392157 0.08627450980392157); + --color-gray100Hover: color(display-p3 0.1607843137254902 0.1607843137254902 0.1607843137254902); + --color-green10: color(display-p3 0.8705882352941177 0.984313725490196 0.9019607843137255); + --color-green10Hover: color(display-p3 0.7137254901960784 0.9647058823529412 0.7843137254901961); + --color-green20: color(display-p3 0.6549019607843137 0.9411764705882353 0.7294117647058823); + --color-green20Hover: color(display-p3 0.4549019607843137 0.9058823529411765 0.5725490196078431); + --color-green30: color(display-p3 0.43529411764705883 0.8627450980392157 0.5490196078431373); + --color-green30Hover: color(display-p3 0.21176470588235294 0.807843137254902 0.3686274509803922); + --color-green40: color(display-p3 0.25882352941176473 0.7450980392156863 0.396078431372549); + --color-green40Hover: color(display-p3 0.23137254901960785 0.6705882352941176 0.35294117647058826); + --color-green50: color(display-p3 0.1411764705882353 0.6313725490196078 0.2823529411764706); + --color-green50Hover: color(display-p3 0.12549019607843137 0.5568627450980392 0.24705882352941178); + --color-green60: color(display-p3 0.09803921568627451 0.5019607843137255 0.2196078431372549); + --color-green60Hover: color(display-p3 0.08627450980392157 0.43529411764705883 0.19215686274509805); + --color-green70: color(display-p3 0.054901960784313725 0.3764705882352941 0.15294117647058825); + --color-green70Hover: color(display-p3 0.06666666666666667 0.4549019607843137 0.1843137254901961); + --color-green80: color(display-p3 0.01568627450980392 0.2627450980392157 0.09019607843137255); + --color-green80Hover: color(display-p3 0.0196078431372549 0.3215686274509804 0.10980392156862745); + --color-green90: color(display-p3 0.00784313725490196 0.17647058823529413 0.050980392156862744); + --color-green90Hover: color(display-p3 0.011764705882352941 0.23137254901960785 0.06666666666666667); + --color-green100: color(display-p3 0.027450980392156862 0.09803921568627451 0.03137254901960784); + --color-green100Hover: color(display-p3 0.050980392156862744 0.18823529411764706 0.058823529411764705); + --color-magenta10: color(display-p3 1 0.9411764705882353 0.9686274509803922); + --color-magenta10Hover: color(display-p3 1 0.8784313725490196 0.9372549019607843); + --color-magenta20: color(display-p3 1 0.8392156862745098 0.9098039215686274); + --color-magenta20Hover: color(display-p3 1 0.7411764705882353 0.8549019607843137); + --color-magenta30: color(display-p3 1 0.6862745098039216 0.8235294117647058); + --color-magenta30Hover: color(display-p3 1 0.5803921568627451 0.7647058823529411); + --color-magenta40: color(display-p3 1 0.49411764705882355 0.7137254901960784); + --color-magenta40Hover: color(display-p3 1 0.3411764705882353 0.6274509803921569); + --color-magenta50: color(display-p3 0.9333333333333333 0.3254901960784314 0.5882352941176471); + --color-magenta50Hover: color(display-p3 0.8901960784313725 0.09019607843137255 0.43529411764705883); + --color-magenta60: color(display-p3 0.8156862745098039 0.14901960784313725 0.4392156862745098); + --color-magenta60Hover: color(display-p3 0.6901960784313725 0.12941176470588237 0.37254901960784315); + --color-magenta70: color(display-p3 0.6235294117647059 0.09411764705882353 0.3254901960784314); + --color-magenta70Hover: color(display-p3 0.7490196078431373 0.11372549019607843 0.38823529411764707); + --color-magenta80: color(display-p3 0.4549019607843137 0.03529411764705882 0.21568627450980393); + --color-magenta80Hover: color(display-p3 0.5568627450980392 0.043137254901960784 0.2627450980392157); + --color-magenta90: color(display-p3 0.3176470588235294 0.00784313725490196 0.1411764705882353); + --color-magenta90Hover: color(display-p3 0.40784313725490196 0.011764705882352941 0.1803921568627451); + --color-magenta100: color(display-p3 0.16470588235294117 0.0392156862745098 0.09411764705882353); + --color-magenta100Hover: color(display-p3 0.3254901960784314 0.0784313725490196 0.1843137254901961); + --color-orange: color(display-p3 1 0.5137254901960784 0.16862745098039217); + --color-orange10: color(display-p3 1 0.9490196078431372 0.9098039215686274); + --color-orange10Hover: color(display-p3 1 0.8862745098039215 0.8); + --color-orange20: color(display-p3 1 0.8509803921568627 0.7450980392156863); + --color-orange20Hover: color(display-p3 1 0.7764705882352941 0.6196078431372549); + --color-orange30: color(display-p3 1 0.7176470588235294 0.5176470588235295); + --color-orange30Hover: color(display-p3 1 0.615686274509804 0.3411764705882353); + --color-orange40: color(display-p3 1 0.5137254901960784 0.16862745098039217); + --color-orange40Hover: color(display-p3 0.9803921568627451 0.40784313725490196 0); + --color-orange50: color(display-p3 0.9215686274509803 0.3843137254901961 0); + --color-orange50Hover: color(display-p3 0.8 0.3333333333333333 0); + --color-orange60: color(display-p3 0.7294117647058823 0.3058823529411765 0); + --color-orange60Hover: color(display-p3 0.6196078431372549 0.25882352941176473 0); + --color-orange70: color(display-p3 0.5411764705882353 0.2196078431372549 0); + --color-orange70Hover: color(display-p3 0.6588235294117647 0.26666666666666666 0); + --color-orange80: color(display-p3 0.3686274509803922 0.1607843137254902 0); + --color-orange80Hover: color(display-p3 0.4588235294117647 0.2 0); + --color-orange90: color(display-p3 0.24313725490196078 0.10196078431372549 0); + --color-orange90Hover: color(display-p3 0.3215686274509804 0.13333333333333333 0); + --color-orange100: color(display-p3 0.13725490196078433 0.06274509803921569 0); + --color-orange100Hover: color(display-p3 0.25882352941176473 0.11764705882352941 0); + --color-purple10: color(display-p3 0.9647058823529412 0.9490196078431372 1); + --color-purple10Hover: color(display-p3 0.9294117647058824 0.8980392156862745 1); + --color-purple20: color(display-p3 0.9098039215686274 0.8549019607843137 1); + --color-purple20Hover: color(display-p3 0.8627450980392157 0.7803921568627451 1); + --color-purple30: color(display-p3 0.8313725490196079 0.7333333333333333 1); + --color-purple30Hover: color(display-p3 0.7725490196078432 0.6392156862745098 1); + --color-purple40: color(display-p3 0.7450980392156863 0.5843137254901961 1); + --color-purple40Hover: color(display-p3 0.6823529411764706 0.47843137254901963 1); + --color-purple50: color(display-p3 0.6470588235294118 0.43137254901960786 1); + --color-purple50Hover: color(display-p3 0.5764705882352941 0.3215686274509804 1); + --color-purple60: color(display-p3 0.5411764705882353 0.24705882352941178 0.9882352941176471); + --color-purple60Hover: color(display-p3 0.47058823529411764 0.13333333333333333 0.984313725490196); + --color-purple70: color(display-p3 0.4117647058823529 0.1607843137254902 0.7686274509803922); + --color-purple70Hover: color(display-p3 0.48627450980392156 0.23921568627450981 0.8392156862745098); + --color-purple80: color(display-p3 0.28627450980392155 0.11372549019607843 0.5450980392156862); + --color-purple80Hover: color(display-p3 0.3568627450980392 0.1411764705882353 0.6784313725490196); + --color-purple90: color(display-p3 0.19215686274509805 0.07450980392156863 0.3686274509803922); + --color-purple90Hover: color(display-p3 0.25098039215686274 0.09803921568627451 0.4823529411764706); + --color-purple100: color(display-p3 0.10980392156862745 0.058823529411764705 0.18823529411764706); + --color-purple100Hover: color(display-p3 0.20392156862745098 0.10980392156862745 0.34901960784313724); + --color-red10: color(display-p3 1 0.9450980392156862 0.9450980392156862); + --color-red10Hover: color(display-p3 1 0.8784313725490196 0.8784313725490196); + --color-red20: color(display-p3 1 0.8431372549019608 0.8509803921568627); + --color-red20Hover: color(display-p3 1 0.7607843137254902 0.7725490196078432); + --color-red30: color(display-p3 1 0.7019607843137254 0.7215686274509804); + --color-red30Hover: color(display-p3 1 0.6 0.6274509803921569); + --color-red40: color(display-p3 1 0.5137254901960784 0.5372549019607843); + --color-red40Hover: color(display-p3 1 0.3803921568627451 0.40784313725490196); + --color-red50: color(display-p3 0.9803921568627451 0.30196078431372547 0.33725490196078434); + --color-red50Hover: color(display-p3 0.9333333333333333 0.027450980392156862 0.07450980392156863); + --color-red60: color(display-p3 0.8549019607843137 0.11764705882352941 0.1568627450980392); + --color-red60Hover: color(display-p3 0.7215686274509804 0.09803921568627451 0.13333333333333333); + --color-red70: color(display-p3 0.6352941176470588 0.09803921568627451 0.12156862745098039); + --color-red70Hover: color(display-p3 0.7607843137254902 0.11764705882352941 0.1450980392156863); + --color-red80: color(display-p3 0.4588235294117647 0.054901960784313725 0.07450980392156863); + --color-red80Hover: color(display-p3 0.5725490196078431 0.06666666666666667 0.09411764705882353); + --color-red90: color(display-p3 0.3215686274509804 0.01568627450980392 0.03137254901960784); + --color-red90Hover: color(display-p3 0.4 0.0196078431372549 0.0392156862745098); + --color-red100: color(display-p3 0.17647058823529413 0.027450980392156862 0.03529411764705882); + --color-red100Hover: color(display-p3 0.32941176470588235 0.050980392156862744 0.06666666666666667); + --color-teal10: color(display-p3 0.8509803921568627 0.984313725490196 0.984313725490196); + --color-teal10Hover: color(display-p3 0.6745098039215687 0.9647058823529412 0.9647058823529412); + --color-teal20: color(display-p3 0.6196078431372549 0.9411764705882353 0.9411764705882353); + --color-teal20Hover: color(display-p3 0.3411764705882353 0.8980392156862745 0.8980392156862745); + --color-teal30: color(display-p3 0.23921568627450981 0.8588235294117647 0.8509803921568627); + --color-teal30Hover: color(display-p3 0.1450980392156863 0.792156862745098 0.7843137254901961); + --color-teal40: color(display-p3 0.03137254901960784 0.7411764705882353 0.7294117647058823); + --color-teal40Hover: color(display-p3 0.027450980392156862 0.6705882352941176 0.6627450980392157); + --color-teal50: color(display-p3 0 0.615686274509804 0.6039215686274509); + --color-teal50Hover: color(display-p3 0 0.5411764705882353 0.5294117647058824); + --color-teal60: color(display-p3 0 0.49019607843137253 0.4745098039215686); + --color-teal60Hover: color(display-p3 0 0.4196078431372549 0.40784313725490196); + --color-teal70: color(display-p3 0 0.36470588235294116 0.36470588235294116); + --color-teal70Hover: color(display-p3 0 0.4392156862745098 0.4392156862745098); + --color-teal80: color(display-p3 0 0.2549019607843137 0.26666666666666666); + --color-teal80Hover: color(display-p3 0 0.3254901960784314 0.3411764705882353); + --color-teal90: color(display-p3 0.00784313725490196 0.16862745098039217 0.18823529411764706); + --color-teal90Hover: color(display-p3 0.011764705882352941 0.2235294117647059 0.25098039215686274); + --color-teal100: color(display-p3 0.03137254901960784 0.10196078431372549 0.10980392156862745); + --color-teal100Hover: color(display-p3 0.058823529411764705 0.18823529411764706 0.20392156862745098); + --color-warmGray10: color(display-p3 0.9686274509803922 0.9529411764705882 0.9490196078431372); + --color-warmGray10Hover: color(display-p3 0.9411764705882353 0.9098039215686274 0.9019607843137255); + --color-warmGray20: color(display-p3 0.8980392156862745 0.8784313725490196 0.8745098039215686); + --color-warmGray20Hover: color(display-p3 0.8470588235294118 0.8156862745098039 0.8117647058823529); + --color-warmGray30: color(display-p3 0.792156862745098 0.7725490196078432 0.7686274509803922); + --color-warmGray30Hover: color(display-p3 0.7254901960784313 0.7019607843137254 0.6941176470588235); + --color-warmGray40: color(display-p3 0.6784313725490196 0.6588235294117647 0.6588235294117647); + --color-warmGray40Hover: color(display-p3 0.611764705882353 0.5882352941176471 0.5882352941176471); + --color-warmGray50: color(display-p3 0.5607843137254902 0.5450980392156862 0.5450980392156862); + --color-warmGray50Hover: color(display-p3 0.4980392156862745 0.4823529411764706 0.4823529411764706); + --color-warmGray60: color(display-p3 0.4470588235294118 0.43137254901960786 0.43137254901960786); + --color-warmGray60Hover: color(display-p3 0.3764705882352941 0.36470588235294116 0.36470588235294116); + --color-warmGray70: color(display-p3 0.33725490196078434 0.3176470588235294 0.3176470588235294); + --color-warmGray70Hover: color(display-p3 0.4117647058823529 0.38823529411764707 0.38823529411764707); + --color-warmGray80: color(display-p3 0.23529411764705882 0.2196078431372549 0.2196078431372549); + --color-warmGray80Hover: color(display-p3 0.2980392156862745 0.2823529411764706 0.2823529411764706); + --color-warmGray90: color(display-p3 0.15294117647058825 0.1450980392156863 0.1450980392156863); + --color-warmGray90Hover: color(display-p3 0.20392156862745098 0.19607843137254902 0.19607843137254902); + --color-warmGray100: color(display-p3 0.09019607843137255 0.0784313725490196 0.0784313725490196); + --color-warmGray100Hover: color(display-p3 0.17254901960784313 0.14901960784313725 0.14901960784313725); --color-white: color(display-p3 1 1 1); --color-white0: color(display-p3 1 1 1); - --color-whiteHover: color(display-p3 0.909804 0.909804 0.909804); - --color-yellow: color(display-p3 0.945098 0.760784 0.105882); - --color-yellow10: color(display-p3 0.988235 0.956863 0.839216); - --color-yellow20: color(display-p3 0.992157 0.862745 0.411765); - --color-yellow30: color(display-p3 0.945098 0.760784 0.105882); - --color-yellow40: color(display-p3 0.823529 0.631373 0.023529); - --color-yellow50: color(display-p3 0.698039 0.52549 0); - --color-yellow60: color(display-p3 0.556863 0.415686 0); - --color-yellow70: color(display-p3 0.407843 0.305882 0); - --color-yellow80: color(display-p3 0.282353 0.215686 0); - --color-yellow90: color(display-p3 0.188235 0.141176 0); - --color-yellow100: color(display-p3 0.109804 0.082353 0); - --color-yellow10Hover: color(display-p3 0.972549 0.901961 0.627451); - --color-yellow20Hover: color(display-p3 0.988235 0.803922 0.152941); - --color-yellow30Hover: color(display-p3 0.866667 0.690196 0.054902); - --color-yellow40Hover: color(display-p3 0.737255 0.564706 0.019608); - --color-yellow50Hover: color(display-p3 0.619608 0.466667 0); - --color-yellow60Hover: color(display-p3 0.458824 0.345098 0); - --color-yellow70Hover: color(display-p3 0.501961 0.376471 0); - --color-yellow80Hover: color(display-p3 0.360784 0.27451 0); - --color-yellow90Hover: color(display-p3 0.239216 0.180392 0); - --color-yellow100Hover: color(display-p3 0.2 0.14902 0); + --color-whiteHover: color(display-p3 0.9098039215686274 0.9098039215686274 0.9098039215686274); + --color-yellow: color(display-p3 0.9450980392156862 0.7607843137254902 0.10588235294117647); + --color-yellow10: color(display-p3 0.9882352941176471 0.9568627450980393 0.8392156862745098); + --color-yellow10Hover: color(display-p3 0.9725490196078431 0.9019607843137255 0.6274509803921569); + --color-yellow20: color(display-p3 0.9921568627450981 0.8627450980392157 0.4117647058823529); + --color-yellow20Hover: color(display-p3 0.9882352941176471 0.803921568627451 0.15294117647058825); + --color-yellow30: color(display-p3 0.9450980392156862 0.7607843137254902 0.10588235294117647); + --color-yellow30Hover: color(display-p3 0.8666666666666667 0.6901960784313725 0.054901960784313725); + --color-yellow40: color(display-p3 0.8235294117647058 0.6313725490196078 0.023529411764705882); + --color-yellow40Hover: color(display-p3 0.7372549019607844 0.5647058823529412 0.0196078431372549); + --color-yellow50: color(display-p3 0.6980392156862745 0.5254901960784314 0); + --color-yellow50Hover: color(display-p3 0.6196078431372549 0.4666666666666667 0); + --color-yellow60: color(display-p3 0.5568627450980392 0.41568627450980394 0); + --color-yellow60Hover: color(display-p3 0.4588235294117647 0.34509803921568627 0); + --color-yellow70: color(display-p3 0.40784313725490196 0.3058823529411765 0); + --color-yellow70Hover: color(display-p3 0.5019607843137255 0.3764705882352941 0); + --color-yellow80: color(display-p3 0.2823529411764706 0.21568627450980393 0); + --color-yellow80Hover: color(display-p3 0.3607843137254902 0.27450980392156865 0); + --color-yellow90: color(display-p3 0.18823529411764706 0.1411764705882353 0); + --color-yellow90Hover: color(display-p3 0.23921568627450981 0.1803921568627451 0); + --color-yellow100: color(display-p3 0.10980392156862745 0.08235294117647059 0); + --color-yellow100Hover: color(display-p3 0.2 0.14901960784313725 0); } } diff --git a/examples/salesforce/tokens/index.d.ts b/examples/salesforce/tokens/index.d.ts index e018f6ba..d48007f5 100644 --- a/examples/salesforce/tokens/index.d.ts +++ b/examples/salesforce/tokens/index.d.ts @@ -14,161 +14,6 @@ import { } from '@cobalt-ui/core'; export declare const tokens: { - 'palette.blue10': ColorToken['$value']; - 'palette.blue15': ColorToken['$value']; - 'palette.blue20': ColorToken['$value']; - 'palette.blue30': ColorToken['$value']; - 'palette.blue40': ColorToken['$value']; - 'palette.blue50': ColorToken['$value']; - 'palette.blue60': ColorToken['$value']; - 'palette.blue65': ColorToken['$value']; - 'palette.blue70': ColorToken['$value']; - 'palette.blue80': ColorToken['$value']; - 'palette.blue90': ColorToken['$value']; - 'palette.blue95': ColorToken['$value']; - 'palette.cloudBlue10': ColorToken['$value']; - 'palette.cloudBlue15': ColorToken['$value']; - 'palette.cloudBlue20': ColorToken['$value']; - 'palette.cloudBlue30': ColorToken['$value']; - 'palette.cloudBlue40': ColorToken['$value']; - 'palette.cloudBlue50': ColorToken['$value']; - 'palette.cloudBlue60': ColorToken['$value']; - 'palette.cloudBlue65': ColorToken['$value']; - 'palette.cloudBlue70': ColorToken['$value']; - 'palette.cloudBlue80': ColorToken['$value']; - 'palette.cloudBlue90': ColorToken['$value']; - 'palette.cloudBlue95': ColorToken['$value']; - 'palette.green10': ColorToken['$value']; - 'palette.green15': ColorToken['$value']; - 'palette.green20': ColorToken['$value']; - 'palette.green30': ColorToken['$value']; - 'palette.green40': ColorToken['$value']; - 'palette.green50': ColorToken['$value']; - 'palette.green60': ColorToken['$value']; - 'palette.green65': ColorToken['$value']; - 'palette.green70': ColorToken['$value']; - 'palette.green80': ColorToken['$value']; - 'palette.green90': ColorToken['$value']; - 'palette.green95': ColorToken['$value']; - 'palette.hotOrange10': ColorToken['$value']; - 'palette.hotOrange15': ColorToken['$value']; - 'palette.hotOrange20': ColorToken['$value']; - 'palette.hotOrange30': ColorToken['$value']; - 'palette.hotOrange40': ColorToken['$value']; - 'palette.hotOrange50': ColorToken['$value']; - 'palette.hotOrange60': ColorToken['$value']; - 'palette.hotOrange65': ColorToken['$value']; - 'palette.hotOrange70': ColorToken['$value']; - 'palette.hotOrange80': ColorToken['$value']; - 'palette.hotOrange90': ColorToken['$value']; - 'palette.hotOrange95': ColorToken['$value']; - 'palette.indigo10': ColorToken['$value']; - 'palette.indigo15': ColorToken['$value']; - 'palette.indigo20': ColorToken['$value']; - 'palette.indigo30': ColorToken['$value']; - 'palette.indigo40': ColorToken['$value']; - 'palette.indigo50': ColorToken['$value']; - 'palette.indigo60': ColorToken['$value']; - 'palette.indigo65': ColorToken['$value']; - 'palette.indigo70': ColorToken['$value']; - 'palette.indigo80': ColorToken['$value']; - 'palette.indigo90': ColorToken['$value']; - 'palette.indigo95': ColorToken['$value']; - 'palette.neutral10': ColorToken['$value']; - 'palette.neutral20': ColorToken['$value']; - 'palette.neutral30': ColorToken['$value']; - 'palette.neutral40': ColorToken['$value']; - 'palette.neutral50': ColorToken['$value']; - 'palette.neutral60': ColorToken['$value']; - 'palette.neutral70': ColorToken['$value']; - 'palette.neutral80': ColorToken['$value']; - 'palette.neutral90': ColorToken['$value']; - 'palette.neutral95': ColorToken['$value']; - 'palette.neutral100': ColorToken['$value']; - 'palette.orange10': ColorToken['$value']; - 'palette.orange15': ColorToken['$value']; - 'palette.orange20': ColorToken['$value']; - 'palette.orange30': ColorToken['$value']; - 'palette.orange40': ColorToken['$value']; - 'palette.orange50': ColorToken['$value']; - 'palette.orange60': ColorToken['$value']; - 'palette.orange65': ColorToken['$value']; - 'palette.orange70': ColorToken['$value']; - 'palette.orange80': ColorToken['$value']; - 'palette.orange90': ColorToken['$value']; - 'palette.orange95': ColorToken['$value']; - 'palette.pink10': ColorToken['$value']; - 'palette.pink15': ColorToken['$value']; - 'palette.pink20': ColorToken['$value']; - 'palette.pink30': ColorToken['$value']; - 'palette.pink40': ColorToken['$value']; - 'palette.pink50': ColorToken['$value']; - 'palette.pink60': ColorToken['$value']; - 'palette.pink65': ColorToken['$value']; - 'palette.pink70': ColorToken['$value']; - 'palette.pink80': ColorToken['$value']; - 'palette.pink90': ColorToken['$value']; - 'palette.pink95': ColorToken['$value']; - 'palette.purple10': ColorToken['$value']; - 'palette.purple15': ColorToken['$value']; - 'palette.purple20': ColorToken['$value']; - 'palette.purple30': ColorToken['$value']; - 'palette.purple40': ColorToken['$value']; - 'palette.purple50': ColorToken['$value']; - 'palette.purple60': ColorToken['$value']; - 'palette.purple65': ColorToken['$value']; - 'palette.purple70': ColorToken['$value']; - 'palette.purple80': ColorToken['$value']; - 'palette.purple90': ColorToken['$value']; - 'palette.purple95': ColorToken['$value']; - 'palette.red10': ColorToken['$value']; - 'palette.red15': ColorToken['$value']; - 'palette.red20': ColorToken['$value']; - 'palette.red30': ColorToken['$value']; - 'palette.red40': ColorToken['$value']; - 'palette.red50': ColorToken['$value']; - 'palette.red60': ColorToken['$value']; - 'palette.red65': ColorToken['$value']; - 'palette.red70': ColorToken['$value']; - 'palette.red80': ColorToken['$value']; - 'palette.red90': ColorToken['$value']; - 'palette.red95': ColorToken['$value']; - 'palette.teal10': ColorToken['$value']; - 'palette.teal15': ColorToken['$value']; - 'palette.teal20': ColorToken['$value']; - 'palette.teal30': ColorToken['$value']; - 'palette.teal40': ColorToken['$value']; - 'palette.teal50': ColorToken['$value']; - 'palette.teal60': ColorToken['$value']; - 'palette.teal65': ColorToken['$value']; - 'palette.teal70': ColorToken['$value']; - 'palette.teal80': ColorToken['$value']; - 'palette.teal90': ColorToken['$value']; - 'palette.teal95': ColorToken['$value']; - 'palette.violet10': ColorToken['$value']; - 'palette.violet15': ColorToken['$value']; - 'palette.violet20': ColorToken['$value']; - 'palette.violet30': ColorToken['$value']; - 'palette.violet40': ColorToken['$value']; - 'palette.violet50': ColorToken['$value']; - 'palette.violet60': ColorToken['$value']; - 'palette.violet65': ColorToken['$value']; - 'palette.violet70': ColorToken['$value']; - 'palette.violet80': ColorToken['$value']; - 'palette.violet90': ColorToken['$value']; - 'palette.violet95': ColorToken['$value']; - 'palette.yellow10': ColorToken['$value']; - 'palette.yellow15': ColorToken['$value']; - 'palette.yellow20': ColorToken['$value']; - 'palette.yellow30': ColorToken['$value']; - 'palette.yellow40': ColorToken['$value']; - 'palette.yellow50': ColorToken['$value']; - 'palette.yellow60': ColorToken['$value']; - 'palette.yellow65': ColorToken['$value']; - 'palette.yellow70': ColorToken['$value']; - 'palette.yellow80': ColorToken['$value']; - 'palette.yellow90': ColorToken['$value']; - 'palette.yellow95': ColorToken['$value']; 'color.background': ColorToken['$value']; 'color.backgroundActionbarIconUtility': ColorToken['$value']; 'color.backgroundAlt': ColorToken['$value']; @@ -332,17 +177,12 @@ export declare const tokens: { 'color.textWarning': ColorToken['$value']; 'color.textWarningAlt': ColorToken['$value']; 'color.textWeak': ColorToken['$value']; - 'icon.size.xxxSmall': DimensionToken['$value']; - 'icon.size.xxSmall': DimensionToken['$value']; - 'icon.size.xSmall': DimensionToken['$value']; - 'icon.size.small': DimensionToken['$value']; - 'icon.size.medium': DimensionToken['$value']; - 'icon.size.large': DimensionToken['$value']; - 'icon.size.xLarge': DimensionToken['$value']; - 'icon.size.xxLarge': DimensionToken['$value']; 'font.family.base': FontFamilyToken['$value']; 'font.family.heading': FontFamilyToken['$value']; 'font.family.mono': FontFamilyToken['$value']; + 'font.lineHeight.heading': DimensionToken['$value']; + 'font.lineHeight.reset': DimensionToken['$value']; + 'font.lineHeight.text': DimensionToken['$value']; 'font.size.1': DimensionToken['$value']; 'font.size.2': DimensionToken['$value']; 'font.size.3': DimensionToken['$value']; @@ -354,176 +194,181 @@ export declare const tokens: { 'font.size.9': DimensionToken['$value']; 'font.size.10': DimensionToken['$value']; 'font.size.11': DimensionToken['$value']; - 'font.lineHeight.heading': DimensionToken['$value']; - 'font.lineHeight.text': DimensionToken['$value']; - 'font.lineHeight.reset': DimensionToken['$value']; - 'space.none': DimensionToken['$value']; - 'space.xxxSmall': DimensionToken['$value']; - 'space.xxSmall': DimensionToken['$value']; - 'space.xSmall': DimensionToken['$value']; - 'space.small': DimensionToken['$value']; - 'space.medium': DimensionToken['$value']; - 'space.large': DimensionToken['$value']; - 'space.xLarge': DimensionToken['$value']; - 'space.xxLarge': DimensionToken['$value']; -}; - -export declare const meta: { - 'palette.blue10': ParsedColorToken; - 'palette.blue15': ParsedColorToken; - 'palette.blue20': ParsedColorToken; - 'palette.blue30': ParsedColorToken; - 'palette.blue40': ParsedColorToken; - 'palette.blue50': ParsedColorToken; - 'palette.blue60': ParsedColorToken; - 'palette.blue65': ParsedColorToken; - 'palette.blue70': ParsedColorToken; - 'palette.blue80': ParsedColorToken; - 'palette.blue90': ParsedColorToken; - 'palette.blue95': ParsedColorToken; - 'palette.cloudBlue10': ParsedColorToken; - 'palette.cloudBlue15': ParsedColorToken; - 'palette.cloudBlue20': ParsedColorToken; - 'palette.cloudBlue30': ParsedColorToken; - 'palette.cloudBlue40': ParsedColorToken; - 'palette.cloudBlue50': ParsedColorToken; - 'palette.cloudBlue60': ParsedColorToken; - 'palette.cloudBlue65': ParsedColorToken; - 'palette.cloudBlue70': ParsedColorToken; - 'palette.cloudBlue80': ParsedColorToken; - 'palette.cloudBlue90': ParsedColorToken; - 'palette.cloudBlue95': ParsedColorToken; - 'palette.green10': ParsedColorToken; - 'palette.green15': ParsedColorToken; - 'palette.green20': ParsedColorToken; - 'palette.green30': ParsedColorToken; - 'palette.green40': ParsedColorToken; - 'palette.green50': ParsedColorToken; - 'palette.green60': ParsedColorToken; - 'palette.green65': ParsedColorToken; - 'palette.green70': ParsedColorToken; - 'palette.green80': ParsedColorToken; - 'palette.green90': ParsedColorToken; - 'palette.green95': ParsedColorToken; - 'palette.hotOrange10': ParsedColorToken; - 'palette.hotOrange15': ParsedColorToken; - 'palette.hotOrange20': ParsedColorToken; - 'palette.hotOrange30': ParsedColorToken; - 'palette.hotOrange40': ParsedColorToken; - 'palette.hotOrange50': ParsedColorToken; - 'palette.hotOrange60': ParsedColorToken; - 'palette.hotOrange65': ParsedColorToken; - 'palette.hotOrange70': ParsedColorToken; - 'palette.hotOrange80': ParsedColorToken; - 'palette.hotOrange90': ParsedColorToken; - 'palette.hotOrange95': ParsedColorToken; - 'palette.indigo10': ParsedColorToken; - 'palette.indigo15': ParsedColorToken; - 'palette.indigo20': ParsedColorToken; - 'palette.indigo30': ParsedColorToken; - 'palette.indigo40': ParsedColorToken; - 'palette.indigo50': ParsedColorToken; - 'palette.indigo60': ParsedColorToken; - 'palette.indigo65': ParsedColorToken; - 'palette.indigo70': ParsedColorToken; - 'palette.indigo80': ParsedColorToken; - 'palette.indigo90': ParsedColorToken; - 'palette.indigo95': ParsedColorToken; - 'palette.neutral10': ParsedColorToken; - 'palette.neutral20': ParsedColorToken; - 'palette.neutral30': ParsedColorToken; - 'palette.neutral40': ParsedColorToken; - 'palette.neutral50': ParsedColorToken; - 'palette.neutral60': ParsedColorToken; - 'palette.neutral70': ParsedColorToken; - 'palette.neutral80': ParsedColorToken; - 'palette.neutral90': ParsedColorToken; - 'palette.neutral95': ParsedColorToken; - 'palette.neutral100': ParsedColorToken; - 'palette.orange10': ParsedColorToken; - 'palette.orange15': ParsedColorToken; - 'palette.orange20': ParsedColorToken; - 'palette.orange30': ParsedColorToken; - 'palette.orange40': ParsedColorToken; - 'palette.orange50': ParsedColorToken; - 'palette.orange60': ParsedColorToken; - 'palette.orange65': ParsedColorToken; - 'palette.orange70': ParsedColorToken; - 'palette.orange80': ParsedColorToken; - 'palette.orange90': ParsedColorToken; - 'palette.orange95': ParsedColorToken; - 'palette.pink10': ParsedColorToken; - 'palette.pink15': ParsedColorToken; - 'palette.pink20': ParsedColorToken; - 'palette.pink30': ParsedColorToken; - 'palette.pink40': ParsedColorToken; - 'palette.pink50': ParsedColorToken; - 'palette.pink60': ParsedColorToken; - 'palette.pink65': ParsedColorToken; - 'palette.pink70': ParsedColorToken; - 'palette.pink80': ParsedColorToken; - 'palette.pink90': ParsedColorToken; - 'palette.pink95': ParsedColorToken; - 'palette.purple10': ParsedColorToken; - 'palette.purple15': ParsedColorToken; - 'palette.purple20': ParsedColorToken; - 'palette.purple30': ParsedColorToken; - 'palette.purple40': ParsedColorToken; - 'palette.purple50': ParsedColorToken; - 'palette.purple60': ParsedColorToken; - 'palette.purple65': ParsedColorToken; - 'palette.purple70': ParsedColorToken; - 'palette.purple80': ParsedColorToken; - 'palette.purple90': ParsedColorToken; - 'palette.purple95': ParsedColorToken; - 'palette.red10': ParsedColorToken; - 'palette.red15': ParsedColorToken; - 'palette.red20': ParsedColorToken; - 'palette.red30': ParsedColorToken; - 'palette.red40': ParsedColorToken; - 'palette.red50': ParsedColorToken; - 'palette.red60': ParsedColorToken; - 'palette.red65': ParsedColorToken; - 'palette.red70': ParsedColorToken; - 'palette.red80': ParsedColorToken; - 'palette.red90': ParsedColorToken; - 'palette.red95': ParsedColorToken; - 'palette.teal10': ParsedColorToken; - 'palette.teal15': ParsedColorToken; - 'palette.teal20': ParsedColorToken; - 'palette.teal30': ParsedColorToken; - 'palette.teal40': ParsedColorToken; - 'palette.teal50': ParsedColorToken; - 'palette.teal60': ParsedColorToken; - 'palette.teal65': ParsedColorToken; - 'palette.teal70': ParsedColorToken; - 'palette.teal80': ParsedColorToken; - 'palette.teal90': ParsedColorToken; - 'palette.teal95': ParsedColorToken; - 'palette.violet10': ParsedColorToken; - 'palette.violet15': ParsedColorToken; - 'palette.violet20': ParsedColorToken; - 'palette.violet30': ParsedColorToken; - 'palette.violet40': ParsedColorToken; - 'palette.violet50': ParsedColorToken; - 'palette.violet60': ParsedColorToken; - 'palette.violet65': ParsedColorToken; - 'palette.violet70': ParsedColorToken; - 'palette.violet80': ParsedColorToken; - 'palette.violet90': ParsedColorToken; - 'palette.violet95': ParsedColorToken; - 'palette.yellow10': ParsedColorToken; - 'palette.yellow15': ParsedColorToken; - 'palette.yellow20': ParsedColorToken; - 'palette.yellow30': ParsedColorToken; - 'palette.yellow40': ParsedColorToken; - 'palette.yellow50': ParsedColorToken; - 'palette.yellow60': ParsedColorToken; - 'palette.yellow65': ParsedColorToken; - 'palette.yellow70': ParsedColorToken; - 'palette.yellow80': ParsedColorToken; - 'palette.yellow90': ParsedColorToken; - 'palette.yellow95': ParsedColorToken; + 'icon.size.large': DimensionToken['$value']; + 'icon.size.medium': DimensionToken['$value']; + 'icon.size.small': DimensionToken['$value']; + 'icon.size.xLarge': DimensionToken['$value']; + 'icon.size.xSmall': DimensionToken['$value']; + 'icon.size.xxLarge': DimensionToken['$value']; + 'icon.size.xxSmall': DimensionToken['$value']; + 'icon.size.xxxSmall': DimensionToken['$value']; + 'palette.blue10': ColorToken['$value']; + 'palette.blue15': ColorToken['$value']; + 'palette.blue20': ColorToken['$value']; + 'palette.blue30': ColorToken['$value']; + 'palette.blue40': ColorToken['$value']; + 'palette.blue50': ColorToken['$value']; + 'palette.blue60': ColorToken['$value']; + 'palette.blue65': ColorToken['$value']; + 'palette.blue70': ColorToken['$value']; + 'palette.blue80': ColorToken['$value']; + 'palette.blue90': ColorToken['$value']; + 'palette.blue95': ColorToken['$value']; + 'palette.cloudBlue10': ColorToken['$value']; + 'palette.cloudBlue15': ColorToken['$value']; + 'palette.cloudBlue20': ColorToken['$value']; + 'palette.cloudBlue30': ColorToken['$value']; + 'palette.cloudBlue40': ColorToken['$value']; + 'palette.cloudBlue50': ColorToken['$value']; + 'palette.cloudBlue60': ColorToken['$value']; + 'palette.cloudBlue65': ColorToken['$value']; + 'palette.cloudBlue70': ColorToken['$value']; + 'palette.cloudBlue80': ColorToken['$value']; + 'palette.cloudBlue90': ColorToken['$value']; + 'palette.cloudBlue95': ColorToken['$value']; + 'palette.green10': ColorToken['$value']; + 'palette.green15': ColorToken['$value']; + 'palette.green20': ColorToken['$value']; + 'palette.green30': ColorToken['$value']; + 'palette.green40': ColorToken['$value']; + 'palette.green50': ColorToken['$value']; + 'palette.green60': ColorToken['$value']; + 'palette.green65': ColorToken['$value']; + 'palette.green70': ColorToken['$value']; + 'palette.green80': ColorToken['$value']; + 'palette.green90': ColorToken['$value']; + 'palette.green95': ColorToken['$value']; + 'palette.hotOrange10': ColorToken['$value']; + 'palette.hotOrange15': ColorToken['$value']; + 'palette.hotOrange20': ColorToken['$value']; + 'palette.hotOrange30': ColorToken['$value']; + 'palette.hotOrange40': ColorToken['$value']; + 'palette.hotOrange50': ColorToken['$value']; + 'palette.hotOrange60': ColorToken['$value']; + 'palette.hotOrange65': ColorToken['$value']; + 'palette.hotOrange70': ColorToken['$value']; + 'palette.hotOrange80': ColorToken['$value']; + 'palette.hotOrange90': ColorToken['$value']; + 'palette.hotOrange95': ColorToken['$value']; + 'palette.indigo10': ColorToken['$value']; + 'palette.indigo15': ColorToken['$value']; + 'palette.indigo20': ColorToken['$value']; + 'palette.indigo30': ColorToken['$value']; + 'palette.indigo40': ColorToken['$value']; + 'palette.indigo50': ColorToken['$value']; + 'palette.indigo60': ColorToken['$value']; + 'palette.indigo65': ColorToken['$value']; + 'palette.indigo70': ColorToken['$value']; + 'palette.indigo80': ColorToken['$value']; + 'palette.indigo90': ColorToken['$value']; + 'palette.indigo95': ColorToken['$value']; + 'palette.neutral10': ColorToken['$value']; + 'palette.neutral20': ColorToken['$value']; + 'palette.neutral30': ColorToken['$value']; + 'palette.neutral40': ColorToken['$value']; + 'palette.neutral50': ColorToken['$value']; + 'palette.neutral60': ColorToken['$value']; + 'palette.neutral70': ColorToken['$value']; + 'palette.neutral80': ColorToken['$value']; + 'palette.neutral90': ColorToken['$value']; + 'palette.neutral95': ColorToken['$value']; + 'palette.neutral100': ColorToken['$value']; + 'palette.orange10': ColorToken['$value']; + 'palette.orange15': ColorToken['$value']; + 'palette.orange20': ColorToken['$value']; + 'palette.orange30': ColorToken['$value']; + 'palette.orange40': ColorToken['$value']; + 'palette.orange50': ColorToken['$value']; + 'palette.orange60': ColorToken['$value']; + 'palette.orange65': ColorToken['$value']; + 'palette.orange70': ColorToken['$value']; + 'palette.orange80': ColorToken['$value']; + 'palette.orange90': ColorToken['$value']; + 'palette.orange95': ColorToken['$value']; + 'palette.pink10': ColorToken['$value']; + 'palette.pink15': ColorToken['$value']; + 'palette.pink20': ColorToken['$value']; + 'palette.pink30': ColorToken['$value']; + 'palette.pink40': ColorToken['$value']; + 'palette.pink50': ColorToken['$value']; + 'palette.pink60': ColorToken['$value']; + 'palette.pink65': ColorToken['$value']; + 'palette.pink70': ColorToken['$value']; + 'palette.pink80': ColorToken['$value']; + 'palette.pink90': ColorToken['$value']; + 'palette.pink95': ColorToken['$value']; + 'palette.purple10': ColorToken['$value']; + 'palette.purple15': ColorToken['$value']; + 'palette.purple20': ColorToken['$value']; + 'palette.purple30': ColorToken['$value']; + 'palette.purple40': ColorToken['$value']; + 'palette.purple50': ColorToken['$value']; + 'palette.purple60': ColorToken['$value']; + 'palette.purple65': ColorToken['$value']; + 'palette.purple70': ColorToken['$value']; + 'palette.purple80': ColorToken['$value']; + 'palette.purple90': ColorToken['$value']; + 'palette.purple95': ColorToken['$value']; + 'palette.red10': ColorToken['$value']; + 'palette.red15': ColorToken['$value']; + 'palette.red20': ColorToken['$value']; + 'palette.red30': ColorToken['$value']; + 'palette.red40': ColorToken['$value']; + 'palette.red50': ColorToken['$value']; + 'palette.red60': ColorToken['$value']; + 'palette.red65': ColorToken['$value']; + 'palette.red70': ColorToken['$value']; + 'palette.red80': ColorToken['$value']; + 'palette.red90': ColorToken['$value']; + 'palette.red95': ColorToken['$value']; + 'palette.teal10': ColorToken['$value']; + 'palette.teal15': ColorToken['$value']; + 'palette.teal20': ColorToken['$value']; + 'palette.teal30': ColorToken['$value']; + 'palette.teal40': ColorToken['$value']; + 'palette.teal50': ColorToken['$value']; + 'palette.teal60': ColorToken['$value']; + 'palette.teal65': ColorToken['$value']; + 'palette.teal70': ColorToken['$value']; + 'palette.teal80': ColorToken['$value']; + 'palette.teal90': ColorToken['$value']; + 'palette.teal95': ColorToken['$value']; + 'palette.violet10': ColorToken['$value']; + 'palette.violet15': ColorToken['$value']; + 'palette.violet20': ColorToken['$value']; + 'palette.violet30': ColorToken['$value']; + 'palette.violet40': ColorToken['$value']; + 'palette.violet50': ColorToken['$value']; + 'palette.violet60': ColorToken['$value']; + 'palette.violet65': ColorToken['$value']; + 'palette.violet70': ColorToken['$value']; + 'palette.violet80': ColorToken['$value']; + 'palette.violet90': ColorToken['$value']; + 'palette.violet95': ColorToken['$value']; + 'palette.yellow10': ColorToken['$value']; + 'palette.yellow15': ColorToken['$value']; + 'palette.yellow20': ColorToken['$value']; + 'palette.yellow30': ColorToken['$value']; + 'palette.yellow40': ColorToken['$value']; + 'palette.yellow50': ColorToken['$value']; + 'palette.yellow60': ColorToken['$value']; + 'palette.yellow65': ColorToken['$value']; + 'palette.yellow70': ColorToken['$value']; + 'palette.yellow80': ColorToken['$value']; + 'palette.yellow90': ColorToken['$value']; + 'palette.yellow95': ColorToken['$value']; + 'space.large': DimensionToken['$value']; + 'space.medium': DimensionToken['$value']; + 'space.none': DimensionToken['$value']; + 'space.small': DimensionToken['$value']; + 'space.xLarge': DimensionToken['$value']; + 'space.xSmall': DimensionToken['$value']; + 'space.xxLarge': DimensionToken['$value']; + 'space.xxSmall': DimensionToken['$value']; + 'space.xxxSmall': DimensionToken['$value']; +}; + +export declare const meta: { 'color.background': ParsedColorToken; 'color.backgroundActionbarIconUtility': ParsedColorToken; 'color.backgroundAlt': ParsedColorToken; @@ -687,17 +532,12 @@ export declare const meta: { 'color.textWarning': ParsedColorToken; 'color.textWarningAlt': ParsedColorToken; 'color.textWeak': ParsedColorToken; - 'icon.size.xxxSmall': ParsedDimensionToken; - 'icon.size.xxSmall': ParsedDimensionToken; - 'icon.size.xSmall': ParsedDimensionToken; - 'icon.size.small': ParsedDimensionToken; - 'icon.size.medium': ParsedDimensionToken; - 'icon.size.large': ParsedDimensionToken; - 'icon.size.xLarge': ParsedDimensionToken; - 'icon.size.xxLarge': ParsedDimensionToken; 'font.family.base': ParsedFontFamilyToken; 'font.family.heading': ParsedFontFamilyToken; 'font.family.mono': ParsedFontFamilyToken; + 'font.lineHeight.heading': ParsedDimensionToken; + 'font.lineHeight.reset': ParsedDimensionToken; + 'font.lineHeight.text': ParsedDimensionToken; 'font.size.1': ParsedDimensionToken; 'font.size.2': ParsedDimensionToken; 'font.size.3': ParsedDimensionToken; @@ -709,18 +549,178 @@ export declare const meta: { 'font.size.9': ParsedDimensionToken; 'font.size.10': ParsedDimensionToken; 'font.size.11': ParsedDimensionToken; - 'font.lineHeight.heading': ParsedDimensionToken; - 'font.lineHeight.text': ParsedDimensionToken; - 'font.lineHeight.reset': ParsedDimensionToken; + 'icon.size.large': ParsedDimensionToken; + 'icon.size.medium': ParsedDimensionToken; + 'icon.size.small': ParsedDimensionToken; + 'icon.size.xLarge': ParsedDimensionToken; + 'icon.size.xSmall': ParsedDimensionToken; + 'icon.size.xxLarge': ParsedDimensionToken; + 'icon.size.xxSmall': ParsedDimensionToken; + 'icon.size.xxxSmall': ParsedDimensionToken; + 'palette.blue10': ParsedColorToken; + 'palette.blue15': ParsedColorToken; + 'palette.blue20': ParsedColorToken; + 'palette.blue30': ParsedColorToken; + 'palette.blue40': ParsedColorToken; + 'palette.blue50': ParsedColorToken; + 'palette.blue60': ParsedColorToken; + 'palette.blue65': ParsedColorToken; + 'palette.blue70': ParsedColorToken; + 'palette.blue80': ParsedColorToken; + 'palette.blue90': ParsedColorToken; + 'palette.blue95': ParsedColorToken; + 'palette.cloudBlue10': ParsedColorToken; + 'palette.cloudBlue15': ParsedColorToken; + 'palette.cloudBlue20': ParsedColorToken; + 'palette.cloudBlue30': ParsedColorToken; + 'palette.cloudBlue40': ParsedColorToken; + 'palette.cloudBlue50': ParsedColorToken; + 'palette.cloudBlue60': ParsedColorToken; + 'palette.cloudBlue65': ParsedColorToken; + 'palette.cloudBlue70': ParsedColorToken; + 'palette.cloudBlue80': ParsedColorToken; + 'palette.cloudBlue90': ParsedColorToken; + 'palette.cloudBlue95': ParsedColorToken; + 'palette.green10': ParsedColorToken; + 'palette.green15': ParsedColorToken; + 'palette.green20': ParsedColorToken; + 'palette.green30': ParsedColorToken; + 'palette.green40': ParsedColorToken; + 'palette.green50': ParsedColorToken; + 'palette.green60': ParsedColorToken; + 'palette.green65': ParsedColorToken; + 'palette.green70': ParsedColorToken; + 'palette.green80': ParsedColorToken; + 'palette.green90': ParsedColorToken; + 'palette.green95': ParsedColorToken; + 'palette.hotOrange10': ParsedColorToken; + 'palette.hotOrange15': ParsedColorToken; + 'palette.hotOrange20': ParsedColorToken; + 'palette.hotOrange30': ParsedColorToken; + 'palette.hotOrange40': ParsedColorToken; + 'palette.hotOrange50': ParsedColorToken; + 'palette.hotOrange60': ParsedColorToken; + 'palette.hotOrange65': ParsedColorToken; + 'palette.hotOrange70': ParsedColorToken; + 'palette.hotOrange80': ParsedColorToken; + 'palette.hotOrange90': ParsedColorToken; + 'palette.hotOrange95': ParsedColorToken; + 'palette.indigo10': ParsedColorToken; + 'palette.indigo15': ParsedColorToken; + 'palette.indigo20': ParsedColorToken; + 'palette.indigo30': ParsedColorToken; + 'palette.indigo40': ParsedColorToken; + 'palette.indigo50': ParsedColorToken; + 'palette.indigo60': ParsedColorToken; + 'palette.indigo65': ParsedColorToken; + 'palette.indigo70': ParsedColorToken; + 'palette.indigo80': ParsedColorToken; + 'palette.indigo90': ParsedColorToken; + 'palette.indigo95': ParsedColorToken; + 'palette.neutral10': ParsedColorToken; + 'palette.neutral20': ParsedColorToken; + 'palette.neutral30': ParsedColorToken; + 'palette.neutral40': ParsedColorToken; + 'palette.neutral50': ParsedColorToken; + 'palette.neutral60': ParsedColorToken; + 'palette.neutral70': ParsedColorToken; + 'palette.neutral80': ParsedColorToken; + 'palette.neutral90': ParsedColorToken; + 'palette.neutral95': ParsedColorToken; + 'palette.neutral100': ParsedColorToken; + 'palette.orange10': ParsedColorToken; + 'palette.orange15': ParsedColorToken; + 'palette.orange20': ParsedColorToken; + 'palette.orange30': ParsedColorToken; + 'palette.orange40': ParsedColorToken; + 'palette.orange50': ParsedColorToken; + 'palette.orange60': ParsedColorToken; + 'palette.orange65': ParsedColorToken; + 'palette.orange70': ParsedColorToken; + 'palette.orange80': ParsedColorToken; + 'palette.orange90': ParsedColorToken; + 'palette.orange95': ParsedColorToken; + 'palette.pink10': ParsedColorToken; + 'palette.pink15': ParsedColorToken; + 'palette.pink20': ParsedColorToken; + 'palette.pink30': ParsedColorToken; + 'palette.pink40': ParsedColorToken; + 'palette.pink50': ParsedColorToken; + 'palette.pink60': ParsedColorToken; + 'palette.pink65': ParsedColorToken; + 'palette.pink70': ParsedColorToken; + 'palette.pink80': ParsedColorToken; + 'palette.pink90': ParsedColorToken; + 'palette.pink95': ParsedColorToken; + 'palette.purple10': ParsedColorToken; + 'palette.purple15': ParsedColorToken; + 'palette.purple20': ParsedColorToken; + 'palette.purple30': ParsedColorToken; + 'palette.purple40': ParsedColorToken; + 'palette.purple50': ParsedColorToken; + 'palette.purple60': ParsedColorToken; + 'palette.purple65': ParsedColorToken; + 'palette.purple70': ParsedColorToken; + 'palette.purple80': ParsedColorToken; + 'palette.purple90': ParsedColorToken; + 'palette.purple95': ParsedColorToken; + 'palette.red10': ParsedColorToken; + 'palette.red15': ParsedColorToken; + 'palette.red20': ParsedColorToken; + 'palette.red30': ParsedColorToken; + 'palette.red40': ParsedColorToken; + 'palette.red50': ParsedColorToken; + 'palette.red60': ParsedColorToken; + 'palette.red65': ParsedColorToken; + 'palette.red70': ParsedColorToken; + 'palette.red80': ParsedColorToken; + 'palette.red90': ParsedColorToken; + 'palette.red95': ParsedColorToken; + 'palette.teal10': ParsedColorToken; + 'palette.teal15': ParsedColorToken; + 'palette.teal20': ParsedColorToken; + 'palette.teal30': ParsedColorToken; + 'palette.teal40': ParsedColorToken; + 'palette.teal50': ParsedColorToken; + 'palette.teal60': ParsedColorToken; + 'palette.teal65': ParsedColorToken; + 'palette.teal70': ParsedColorToken; + 'palette.teal80': ParsedColorToken; + 'palette.teal90': ParsedColorToken; + 'palette.teal95': ParsedColorToken; + 'palette.violet10': ParsedColorToken; + 'palette.violet15': ParsedColorToken; + 'palette.violet20': ParsedColorToken; + 'palette.violet30': ParsedColorToken; + 'palette.violet40': ParsedColorToken; + 'palette.violet50': ParsedColorToken; + 'palette.violet60': ParsedColorToken; + 'palette.violet65': ParsedColorToken; + 'palette.violet70': ParsedColorToken; + 'palette.violet80': ParsedColorToken; + 'palette.violet90': ParsedColorToken; + 'palette.violet95': ParsedColorToken; + 'palette.yellow10': ParsedColorToken; + 'palette.yellow15': ParsedColorToken; + 'palette.yellow20': ParsedColorToken; + 'palette.yellow30': ParsedColorToken; + 'palette.yellow40': ParsedColorToken; + 'palette.yellow50': ParsedColorToken; + 'palette.yellow60': ParsedColorToken; + 'palette.yellow65': ParsedColorToken; + 'palette.yellow70': ParsedColorToken; + 'palette.yellow80': ParsedColorToken; + 'palette.yellow90': ParsedColorToken; + 'palette.yellow95': ParsedColorToken; + 'space.large': ParsedDimensionToken; + 'space.medium': ParsedDimensionToken; 'space.none': ParsedDimensionToken; - 'space.xxxSmall': ParsedDimensionToken; - 'space.xxSmall': ParsedDimensionToken; - 'space.xSmall': ParsedDimensionToken; 'space.small': ParsedDimensionToken; - 'space.medium': ParsedDimensionToken; - 'space.large': ParsedDimensionToken; 'space.xLarge': ParsedDimensionToken; + 'space.xSmall': ParsedDimensionToken; 'space.xxLarge': ParsedDimensionToken; + 'space.xxSmall': ParsedDimensionToken; + 'space.xxxSmall': ParsedDimensionToken; }; export declare const modes: Record; diff --git a/examples/salesforce/tokens/index.js b/examples/salesforce/tokens/index.js index efc7a128..017661b0 100644 --- a/examples/salesforce/tokens/index.js +++ b/examples/salesforce/tokens/index.js @@ -5,161 +5,6 @@ */ export const tokens = { - 'palette.blue10': '#001639', - 'palette.blue15': '#03234d', - 'palette.blue20': '#032d60', - 'palette.blue30': '#014486', - 'palette.blue40': '#0b5cab', - 'palette.blue50': '#0176d3', - 'palette.blue60': '#1b96ff', - 'palette.blue65': '#57a3fd', - 'palette.blue70': '#78b0fd', - 'palette.blue80': '#aacbff', - 'palette.blue90': '#d8e6fe', - 'palette.blue95': '#eef4ff', - 'palette.cloudBlue10': '#001a28', - 'palette.cloudBlue15': '#0a2636', - 'palette.cloudBlue20': '#023248', - 'palette.cloudBlue30': '#084968', - 'palette.cloudBlue40': '#05628a', - 'palette.cloudBlue50': '#107cad', - 'palette.cloudBlue60': '#0d9dda', - 'palette.cloudBlue65': '#08abed', - 'palette.cloudBlue70': '#1ab9ff', - 'palette.cloudBlue80': '#90d0fe', - 'palette.cloudBlue90': '#cfe9fe', - 'palette.cloudBlue95': '#eaf5fe', - 'palette.green10': '#071b12', - 'palette.green15': '#0c2912', - 'palette.green20': '#0e3522', - 'palette.green30': '#194e31', - 'palette.green40': '#22683e', - 'palette.green50': '#2e844a', - 'palette.green60': '#3ba755', - 'palette.green65': '#41b658', - 'palette.green70': '#45c65a', - 'palette.green80': '#91db8b', - 'palette.green90': '#cdefc4', - 'palette.green95': '#ebf7e6', - 'palette.hotOrange10': '#281202', - 'palette.hotOrange15': '#421604', - 'palette.hotOrange20': '#541d01', - 'palette.hotOrange30': '#7e2600', - 'palette.hotOrange40': '#aa3001', - 'palette.hotOrange50': '#d83a00', - 'palette.hotOrange60': '#ff5d2d', - 'palette.hotOrange65': '#ff784f', - 'palette.hotOrange70': '#ff906e', - 'palette.hotOrange80': '#feb9a5', - 'palette.hotOrange90': '#ffded5', - 'palette.hotOrange95': '#fef1ed', - 'palette.indigo10': '#200647', - 'palette.indigo15': '#1f0974', - 'palette.indigo20': '#260f8f', - 'palette.indigo30': '#2f2cb7', - 'palette.indigo40': '#3a49da', - 'palette.indigo50': '#5867e8', - 'palette.indigo60': '#7f8ced', - 'palette.indigo65': '#8e9bef', - 'palette.indigo70': '#9ea9f1', - 'palette.indigo80': '#bec7f6', - 'palette.indigo90': '#e0e5f8', - 'palette.indigo95': '#f1f3fb', - 'palette.neutral10': '#181818', - 'palette.neutral20': '#2e2e2e', - 'palette.neutral30': '#444444', - 'palette.neutral40': '#5c5c5c', - 'palette.neutral50': '#747474', - 'palette.neutral60': '#939393', - 'palette.neutral70': '#aeaeae', - 'palette.neutral80': '#c9c9c9', - 'palette.neutral90': '#e5e5e5', - 'palette.neutral95': '#f3f3f3', - 'palette.neutral100': '#ffffff', - 'palette.orange10': '#201600', - 'palette.orange15': '#371e03', - 'palette.orange20': '#3e2b02', - 'palette.orange30': '#5f3e02', - 'palette.orange40': '#825101', - 'palette.orange50': '#a96404', - 'palette.orange60': '#dd7a01', - 'palette.orange65': '#f38303', - 'palette.orange70': '#fe9339', - 'palette.orange80': '#ffba90', - 'palette.orange90': '#fedfd0', - 'palette.orange95': '#fff1ea', - 'palette.pink10': '#370114', - 'palette.pink15': '#4b0620', - 'palette.pink20': '#61022a', - 'palette.pink30': '#8a033e', - 'palette.pink40': '#b60554', - 'palette.pink50': '#e3066a', - 'palette.pink60': '#ff538a', - 'palette.pink65': '#fe7298', - 'palette.pink70': '#fe8aa7', - 'palette.pink80': '#fdb6c5', - 'palette.pink90': '#fddde3', - 'palette.pink95': '#fef0f3', - 'palette.purple10': '#240643', - 'palette.purple15': '#300b60', - 'palette.purple20': '#401075', - 'palette.purple30': '#5a1ba9', - 'palette.purple40': '#7526e3', - 'palette.purple50': '#9050e9', - 'palette.purple60': '#ad7bee', - 'palette.purple65': '#b78def', - 'palette.purple70': '#c29ef1', - 'palette.purple80': '#d78ff5', - 'palette.purple90': '#ece1f9', - 'palette.purple95': '#f6f2fb', - 'palette.red10': '#300c01', - 'palette.red15': '#4a0c04', - 'palette.red20': '#640103', - 'palette.red30': '#8e030f', - 'palette.red40': '#ba0517', - 'palette.red50': '#ea001e', - 'palette.red60': '#fe5c4c', - 'palette.red65': '#fe7765', - 'palette.red70': '#fe8f7d', - 'palette.red80': '#feb8ab', - 'palette.red90': '#feded8', - 'palette.red95': '#fef1ee', - 'palette.teal10': '#071b12', - 'palette.teal15': '#072825', - 'palette.teal20': '#023434', - 'palette.teal30': '#024d4c', - 'palette.teal40': '#056764', - 'palette.teal50': '#0b827c', - 'palette.teal60': '#06a59a', - 'palette.teal65': '#03b4a7', - 'palette.teal70': '#01c3b3', - 'palette.teal80': '#04e1cb', - 'palette.teal90': '#acf3e4', - 'palette.teal95': '#def9f3', - 'palette.violet10': '#2e0039', - 'palette.violet15': '#3d0157', - 'palette.violet20': '#520066', - 'palette.violet30': '#730394', - 'palette.violet40': '#9602c7', - 'palette.violet50': '#ba01ff', - 'palette.violet60': '#cb65ff', - 'palette.violet65': '#d17dfe', - 'palette.violet70': '#d892fe', - 'palette.violet80': '#e5b9fe', - 'palette.violet90': '#f2defe', - 'palette.violet95': '#f9f0ff', - 'palette.yellow10': '#281202', - 'palette.yellow15': '#2e2204', - 'palette.yellow20': '#4f2100', - 'palette.yellow30': '#6f3400', - 'palette.yellow40': '#8c4b02', - 'palette.yellow50': '#a86403', - 'palette.yellow60': '#ca8501', - 'palette.yellow65': '#d79304', - 'palette.yellow70': '#e4a201', - 'palette.yellow80': '#fcc003', - 'palette.yellow90': '#f9e3b6', - 'palette.yellow95': '#fbf3e0', 'color.background': '#f3f2f2', 'color.backgroundActionbarIconUtility': '#706e6b', 'color.backgroundAlt': '#ffffff', @@ -323,17 +168,12 @@ export const tokens = { 'color.textWarning': '#fe9339', 'color.textWarningAlt': '#8c4b02', 'color.textWeak': '#514f4d', - 'icon.size.xxxSmall': '3rem', - 'icon.size.xxSmall': '6rem', - 'icon.size.xSmall': '12rem', - 'icon.size.small': '15rem', - 'icon.size.medium': '20rem', - 'icon.size.large': '25rem', - 'icon.size.xLarge': '40rem', - 'icon.size.xxLarge': '60rem', 'font.family.base': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], 'font.family.heading': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], 'font.family.mono': ['Consolas', 'Menlo', 'Monaco', 'Courier', 'monospace'], + 'font.lineHeight.heading': '1.25em', + 'font.lineHeight.reset': '1em', + 'font.lineHeight.text': '1.5em', 'font.size.1': '0.625rem', 'font.size.2': '0.75rem', 'font.size.3': '0.8125rem', @@ -345,5652 +185,5812 @@ export const tokens = { 'font.size.9': '1.75rem', 'font.size.10': '2rem', 'font.size.11': '2.625rem', - 'font.lineHeight.heading': '1.25em', - 'font.lineHeight.text': '1.5em', - 'font.lineHeight.reset': '1em', + 'icon.size.large': '25rem', + 'icon.size.medium': '20rem', + 'icon.size.small': '15rem', + 'icon.size.xLarge': '40rem', + 'icon.size.xSmall': '12rem', + 'icon.size.xxLarge': '60rem', + 'icon.size.xxSmall': '6rem', + 'icon.size.xxxSmall': '3rem', + 'palette.blue10': '#001639', + 'palette.blue15': '#03234d', + 'palette.blue20': '#032d60', + 'palette.blue30': '#014486', + 'palette.blue40': '#0b5cab', + 'palette.blue50': '#0176d3', + 'palette.blue60': '#1b96ff', + 'palette.blue65': '#57a3fd', + 'palette.blue70': '#78b0fd', + 'palette.blue80': '#aacbff', + 'palette.blue90': '#d8e6fe', + 'palette.blue95': '#eef4ff', + 'palette.cloudBlue10': '#001a28', + 'palette.cloudBlue15': '#0a2636', + 'palette.cloudBlue20': '#023248', + 'palette.cloudBlue30': '#084968', + 'palette.cloudBlue40': '#05628a', + 'palette.cloudBlue50': '#107cad', + 'palette.cloudBlue60': '#0d9dda', + 'palette.cloudBlue65': '#08abed', + 'palette.cloudBlue70': '#1ab9ff', + 'palette.cloudBlue80': '#90d0fe', + 'palette.cloudBlue90': '#cfe9fe', + 'palette.cloudBlue95': '#eaf5fe', + 'palette.green10': '#071b12', + 'palette.green15': '#0c2912', + 'palette.green20': '#0e3522', + 'palette.green30': '#194e31', + 'palette.green40': '#22683e', + 'palette.green50': '#2e844a', + 'palette.green60': '#3ba755', + 'palette.green65': '#41b658', + 'palette.green70': '#45c65a', + 'palette.green80': '#91db8b', + 'palette.green90': '#cdefc4', + 'palette.green95': '#ebf7e6', + 'palette.hotOrange10': '#281202', + 'palette.hotOrange15': '#421604', + 'palette.hotOrange20': '#541d01', + 'palette.hotOrange30': '#7e2600', + 'palette.hotOrange40': '#aa3001', + 'palette.hotOrange50': '#d83a00', + 'palette.hotOrange60': '#ff5d2d', + 'palette.hotOrange65': '#ff784f', + 'palette.hotOrange70': '#ff906e', + 'palette.hotOrange80': '#feb9a5', + 'palette.hotOrange90': '#ffded5', + 'palette.hotOrange95': '#fef1ed', + 'palette.indigo10': '#200647', + 'palette.indigo15': '#1f0974', + 'palette.indigo20': '#260f8f', + 'palette.indigo30': '#2f2cb7', + 'palette.indigo40': '#3a49da', + 'palette.indigo50': '#5867e8', + 'palette.indigo60': '#7f8ced', + 'palette.indigo65': '#8e9bef', + 'palette.indigo70': '#9ea9f1', + 'palette.indigo80': '#bec7f6', + 'palette.indigo90': '#e0e5f8', + 'palette.indigo95': '#f1f3fb', + 'palette.neutral10': '#181818', + 'palette.neutral20': '#2e2e2e', + 'palette.neutral30': '#444444', + 'palette.neutral40': '#5c5c5c', + 'palette.neutral50': '#747474', + 'palette.neutral60': '#939393', + 'palette.neutral70': '#aeaeae', + 'palette.neutral80': '#c9c9c9', + 'palette.neutral90': '#e5e5e5', + 'palette.neutral95': '#f3f3f3', + 'palette.neutral100': '#ffffff', + 'palette.orange10': '#201600', + 'palette.orange15': '#371e03', + 'palette.orange20': '#3e2b02', + 'palette.orange30': '#5f3e02', + 'palette.orange40': '#825101', + 'palette.orange50': '#a96404', + 'palette.orange60': '#dd7a01', + 'palette.orange65': '#f38303', + 'palette.orange70': '#fe9339', + 'palette.orange80': '#ffba90', + 'palette.orange90': '#fedfd0', + 'palette.orange95': '#fff1ea', + 'palette.pink10': '#370114', + 'palette.pink15': '#4b0620', + 'palette.pink20': '#61022a', + 'palette.pink30': '#8a033e', + 'palette.pink40': '#b60554', + 'palette.pink50': '#e3066a', + 'palette.pink60': '#ff538a', + 'palette.pink65': '#fe7298', + 'palette.pink70': '#fe8aa7', + 'palette.pink80': '#fdb6c5', + 'palette.pink90': '#fddde3', + 'palette.pink95': '#fef0f3', + 'palette.purple10': '#240643', + 'palette.purple15': '#300b60', + 'palette.purple20': '#401075', + 'palette.purple30': '#5a1ba9', + 'palette.purple40': '#7526e3', + 'palette.purple50': '#9050e9', + 'palette.purple60': '#ad7bee', + 'palette.purple65': '#b78def', + 'palette.purple70': '#c29ef1', + 'palette.purple80': '#d78ff5', + 'palette.purple90': '#ece1f9', + 'palette.purple95': '#f6f2fb', + 'palette.red10': '#300c01', + 'palette.red15': '#4a0c04', + 'palette.red20': '#640103', + 'palette.red30': '#8e030f', + 'palette.red40': '#ba0517', + 'palette.red50': '#ea001e', + 'palette.red60': '#fe5c4c', + 'palette.red65': '#fe7765', + 'palette.red70': '#fe8f7d', + 'palette.red80': '#feb8ab', + 'palette.red90': '#feded8', + 'palette.red95': '#fef1ee', + 'palette.teal10': '#071b12', + 'palette.teal15': '#072825', + 'palette.teal20': '#023434', + 'palette.teal30': '#024d4c', + 'palette.teal40': '#056764', + 'palette.teal50': '#0b827c', + 'palette.teal60': '#06a59a', + 'palette.teal65': '#03b4a7', + 'palette.teal70': '#01c3b3', + 'palette.teal80': '#04e1cb', + 'palette.teal90': '#acf3e4', + 'palette.teal95': '#def9f3', + 'palette.violet10': '#2e0039', + 'palette.violet15': '#3d0157', + 'palette.violet20': '#520066', + 'palette.violet30': '#730394', + 'palette.violet40': '#9602c7', + 'palette.violet50': '#ba01ff', + 'palette.violet60': '#cb65ff', + 'palette.violet65': '#d17dfe', + 'palette.violet70': '#d892fe', + 'palette.violet80': '#e5b9fe', + 'palette.violet90': '#f2defe', + 'palette.violet95': '#f9f0ff', + 'palette.yellow10': '#281202', + 'palette.yellow15': '#2e2204', + 'palette.yellow20': '#4f2100', + 'palette.yellow30': '#6f3400', + 'palette.yellow40': '#8c4b02', + 'palette.yellow50': '#a86403', + 'palette.yellow60': '#ca8501', + 'palette.yellow65': '#d79304', + 'palette.yellow70': '#e4a201', + 'palette.yellow80': '#fcc003', + 'palette.yellow90': '#f9e3b6', + 'palette.yellow95': '#fbf3e0', + 'space.large': '1.5rem', + 'space.medium': '1rem', 'space.none': '0', - 'space.xxxSmall': '0.125rem', - 'space.xxSmall': '0.25rem', - 'space.xSmall': '0.5rem', 'space.small': '0.75rem', - 'space.medium': '1rem', - 'space.large': '1.5rem', 'space.xLarge': '2rem', + 'space.xSmall': '0.5rem', 'space.xxLarge': '3rem', + 'space.xxSmall': '0.25rem', + 'space.xxxSmall': '0.125rem', }; export const meta = { - 'palette.blue10': { - '_original': { - '$value': '#001639', + 'color.background': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue10', - '$type': 'color', - '$value': '#001639', + id: 'color.background', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.blue15': { - '_original': { - '$value': '#03234d', + 'color.backgroundActionbarIconUtility': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue15', - '$type': 'color', - '$value': '#03234d', + id: 'color.backgroundActionbarIconUtility', + $type: 'color', + $value: '#706e6b', }, - 'palette.blue20': { - '_original': { - '$value': '#032d60', + 'color.backgroundAlt': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue20', - '$type': 'color', - '$value': '#032d60', + id: 'color.backgroundAlt', + $type: 'color', + $value: '#ffffff', }, - 'palette.blue30': { - '_original': { - '$value': '#014486', + 'color.backgroundAlt2': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue30', - '$type': 'color', - '$value': '#014486', + id: 'color.backgroundAlt2', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.blue40': { - '_original': { - '$value': '#0b5cab', + 'color.backgroundAltInverse': { + _original: { + $value: '{palette.blue20}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue40', - '$type': 'color', - '$value': '#0b5cab', + id: 'color.backgroundAltInverse', + $type: 'color', + $value: '#032d60', }, - 'palette.blue50': { - '_original': { - '$value': '#0176d3', + 'color.backgroundAnchor': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue50', - '$type': 'color', - '$value': '#0176d3', + id: 'color.backgroundAnchor', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.blue60': { - '_original': { - '$value': '#1b96ff', + 'color.backgroundBackdrop': { + _original: { + $value: '#ffffffbf', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue60', - '$type': 'color', - '$value': '#1b96ff', + id: 'color.backgroundBackdrop', + $type: 'color', + $value: '#ffffffbf', }, - 'palette.blue65': { - '_original': { - '$value': '#57a3fd', + 'color.backgroundBackdropTint': { + _original: { + $value: '{color.gray2}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue65', - '$type': 'color', - '$value': '#57a3fd', + id: 'color.backgroundBackdropTint', + $type: 'color', + $value: '#fafaf9', }, - 'palette.blue70': { - '_original': { - '$value': '#78b0fd', + 'color.backgroundBrowser': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue70', - '$type': 'color', - '$value': '#78b0fd', + id: 'color.backgroundBrowser', + $type: 'color', + $value: '#706e6b', }, - 'palette.blue80': { - '_original': { - '$value': '#aacbff', + 'color.backgroundCustomer': { + _original: { + $value: '{palette.orange70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue80', - '$type': 'color', - '$value': '#aacbff', + id: 'color.backgroundCustomer', + $type: 'color', + $value: '#fe9339', }, - 'palette.blue90': { - '_original': { - '$value': '#d8e6fe', + 'color.backgroundDark': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue90', - '$type': 'color', - '$value': '#d8e6fe', + id: 'color.backgroundDark', + $type: 'color', + $value: '#ecebea', }, - 'palette.blue95': { - '_original': { - '$value': '#eef4ff', + 'color.backgroundDestructive': { + _original: { + $value: '{palette.red40}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.blue95', - '$type': 'color', - '$value': '#eef4ff', + id: 'color.backgroundDestructive', + $type: 'color', + $value: '#ba0517', }, - 'palette.cloudBlue10': { - '_original': { - '$value': '#001a28', + 'color.backgroundDestructiveActive': { + _original: { + $value: '{palette.red30}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue10', - '$type': 'color', - '$value': '#001a28', + id: 'color.backgroundDestructiveActive', + $type: 'color', + $value: '#8e030f', }, - 'palette.cloudBlue15': { - '_original': { - '$value': '#0a2636', + 'color.backgroundDestructiveHover': { + _original: { + $value: '{palette.red40}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue15', - '$type': 'color', - '$value': '#0a2636', + id: 'color.backgroundDestructiveHover', + $type: 'color', + $value: '#ba0517', }, - 'palette.cloudBlue20': { - '_original': { - '$value': '#023248', + 'color.backgroundError': { + _original: { + $value: '{palette.red60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue20', - '$type': 'color', - '$value': '#023248', + id: 'color.backgroundError', + $type: 'color', + $value: '#fe5c4c', }, - 'palette.cloudBlue30': { - '_original': { - '$value': '#084968', + 'color.backgroundErrorDark': { + _original: { + $value: '{palette.red40}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue30', - '$type': 'color', - '$value': '#084968', + id: 'color.backgroundErrorDark', + $type: 'color', + $value: '#ba0517', }, - 'palette.cloudBlue40': { - '_original': { - '$value': '#05628a', + 'color.backgroundHighlight': { + _original: { + $value: '#faffbd', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue40', - '$type': 'color', - '$value': '#05628a', + id: 'color.backgroundHighlight', + $type: 'color', + $value: '#faffbd', }, - 'palette.cloudBlue50': { - '_original': { - '$value': '#107cad', + 'color.backgroundHighlightSearch': { + _original: { + $value: '#fff03f', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue50', - '$type': 'color', - '$value': '#107cad', + id: 'color.backgroundHighlightSearch', + $type: 'color', + $value: '#fff03f', }, - 'palette.cloudBlue60': { - '_original': { - '$value': '#0d9dda', + 'color.backgroundImageOverlay': { + _original: { + $value: '#00000099', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue60', - '$type': 'color', - '$value': '#0d9dda', + id: 'color.backgroundImageOverlay', + $type: 'color', + $value: '#00000099', }, - 'palette.cloudBlue65': { - '_original': { - '$value': '#08abed', + 'color.backgroundInfo': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue65', - '$type': 'color', - '$value': '#08abed', + id: 'color.backgroundInfo', + $type: 'color', + $value: '#706e6b', }, - 'palette.cloudBlue70': { - '_original': { - '$value': '#1ab9ff', + 'color.backgroundInputCheckboxDisabled': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue70', - '$type': 'color', - '$value': '#1ab9ff', + id: 'color.backgroundInputCheckboxDisabled', + $type: 'color', + $value: '#dddbda', }, - 'palette.cloudBlue80': { - '_original': { - '$value': '#90d0fe', + 'color.backgroundInputDisabled': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue80', - '$type': 'color', - '$value': '#90d0fe', + id: 'color.backgroundInputDisabled', + $type: 'color', + $value: '#ecebea', }, - 'palette.cloudBlue90': { - '_original': { - '$value': '#cfe9fe', + 'color.backgroundInverse': { + _original: { + $value: '{palette.blue10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue90', - '$type': 'color', - '$value': '#cfe9fe', + id: 'color.backgroundInverse', + $type: 'color', + $value: '#001639', }, - 'palette.cloudBlue95': { - '_original': { - '$value': '#eaf5fe', + 'color.backgroundInverseLight': { + _original: { + $value: '{palette.blue20}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.cloudBlue95', - '$type': 'color', - '$value': '#eaf5fe', + id: 'color.backgroundInverseLight', + $type: 'color', + $value: '#032d60', }, - 'palette.green10': { - '_original': { - '$value': '#071b12', + 'color.backgroundLight': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green10', - '$type': 'color', - '$value': '#071b12', + id: 'color.backgroundLight', + $type: 'color', + $value: '#ffffff', }, - 'palette.green15': { - '_original': { - '$value': '#0c2912', + 'color.backgroundNotificationNew': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green15', - '$type': 'color', - '$value': '#0c2912', + id: 'color.backgroundNotificationNew', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.green20': { - '_original': { - '$value': '#0e3522', + 'color.backgroundOffline': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green20', - '$type': 'color', - '$value': '#0e3522', + id: 'color.backgroundOffline', + $type: 'color', + $value: '#514f4d', }, - 'palette.green30': { - '_original': { - '$value': '#194e31', + 'color.backgroundPayload': { + _original: { + $value: '{color.gray2}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green30', - '$type': 'color', - '$value': '#194e31', + id: 'color.backgroundPayload', + $type: 'color', + $value: '#fafaf9', }, - 'palette.green40': { - '_original': { - '$value': '#22683e', + 'color.backgroundPost': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green40', - '$type': 'color', - '$value': '#22683e', + id: 'color.backgroundPost', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.green50': { - '_original': { - '$value': '#2e844a', + 'color.backgroundPrimary': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green50', - '$type': 'color', - '$value': '#2e844a', + id: 'color.backgroundPrimary', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.green60': { - '_original': { - '$value': '#3ba755', + 'color.backgroundRowActive': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green60', - '$type': 'color', - '$value': '#3ba755', + id: 'color.backgroundRowActive', + $type: 'color', + $value: '#ecebea', }, - 'palette.green65': { - '_original': { - '$value': '#41b658', + 'color.backgroundRowHover': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green65', - '$type': 'color', - '$value': '#41b658', + id: 'color.backgroundRowHover', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.green70': { - '_original': { - '$value': '#45c65a', + 'color.backgroundRowNew': { + _original: { + $value: '#cdefc4', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green70', - '$type': 'color', - '$value': '#45c65a', + id: 'color.backgroundRowNew', + $type: 'color', + $value: '#cdefc4', }, - 'palette.green80': { - '_original': { - '$value': '#91db8b', + 'color.backgroundRowSelected': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green80', - '$type': 'color', - '$value': '#91db8b', + id: 'color.backgroundRowSelected', + $type: 'color', + $value: '#ecebea', }, - 'palette.green90': { - '_original': { - '$value': '#cdefc4', + 'color.backgroundScrollbar': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green90', - '$type': 'color', - '$value': '#cdefc4', + id: 'color.backgroundScrollbar', + $type: 'color', + $value: '#ecebea', }, - 'palette.green95': { - '_original': { - '$value': '#ebf7e6', + 'color.backgroundScrollbarTrack': { + _original: { + $value: '{color.gray6}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.green95', - '$type': 'color', - '$value': '#ebf7e6', + id: 'color.backgroundScrollbarTrack', + $type: 'color', + $value: '#c9c7c5', }, - 'palette.hotOrange10': { - '_original': { - '$value': '#281202', + 'color.backgroundSecondary': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange10', - '$type': 'color', - '$value': '#281202', + id: 'color.backgroundSecondary', + $type: 'color', + $value: '#ffffff', }, - 'palette.hotOrange15': { - '_original': { - '$value': '#421604', + 'color.backgroundSelection': { + _original: { + $value: '{palette.blue90}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange15', - '$type': 'color', - '$value': '#421604', + id: 'color.backgroundSelection', + $type: 'color', + $value: '#d8e6fe', }, - 'palette.hotOrange20': { - '_original': { - '$value': '#541d01', + 'color.backgroundShade': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange20', - '$type': 'color', - '$value': '#541d01', + id: 'color.backgroundShade', + $type: 'color', + $value: '#ecebea', }, - 'palette.hotOrange30': { - '_original': { - '$value': '#7e2600', + 'color.backgroundShadeDark': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange30', - '$type': 'color', - '$value': '#7e2600', + id: 'color.backgroundShadeDark', + $type: 'color', + $value: '#dddbda', }, - 'palette.hotOrange40': { - '_original': { - '$value': '#aa3001', + 'color.backgroundSpinnerDot': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange40', - '$type': 'color', - '$value': '#aa3001', + id: 'color.backgroundSpinnerDot', + $type: 'color', + $value: '#b0adab', }, - 'palette.hotOrange50': { - '_original': { - '$value': '#d83a00', + 'color.backgroundStencil': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange50', - '$type': 'color', - '$value': '#d83a00', + id: 'color.backgroundStencil', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.hotOrange60': { - '_original': { - '$value': '#ff5d2d', + 'color.backgroundStencilAlt': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange60', - '$type': 'color', - '$value': '#ff5d2d', + id: 'color.backgroundStencilAlt', + $type: 'color', + $value: '#ecebea', }, - 'palette.hotOrange65': { - '_original': { - '$value': '#ff784f', + 'color.backgroundSuccess': { + _original: { + $value: '#45c65a', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange65', - '$type': 'color', - '$value': '#ff784f', + id: 'color.backgroundSuccess', + $type: 'color', + $value: '#45c65a', }, - 'palette.hotOrange70': { - '_original': { - '$value': '#ff906e', + 'color.backgroundSuccessDark': { + _original: { + $value: '#2e844a', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange70', - '$type': 'color', - '$value': '#ff906e', + id: 'color.backgroundSuccessDark', + $type: 'color', + $value: '#2e844a', }, - 'palette.hotOrange80': { - '_original': { - '$value': '#feb9a5', + 'color.backgroundSuccessDarker': { + _original: { + $value: '#194e31', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange80', - '$type': 'color', - '$value': '#feb9a5', + id: 'color.backgroundSuccessDarker', + $type: 'color', + $value: '#194e31', }, - 'palette.hotOrange90': { - '_original': { - '$value': '#ffded5', + 'color.backgroundTempModal': { + _original: { + $value: '{color.gray8}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange90', - '$type': 'color', - '$value': '#ffded5', + id: 'color.backgroundTempModal', + $type: 'color', + $value: '#969492', }, - 'palette.hotOrange95': { - '_original': { - '$value': '#fef1ed', + 'color.backgroundTempModalTint': { + _original: { + $value: '#08070799', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.hotOrange95', - '$type': 'color', - '$value': '#fef1ed', + id: 'color.backgroundTempModalTint', + $type: 'color', + $value: '#08070799', }, - 'palette.indigo10': { - '_original': { - '$value': '#200647', + 'color.backgroundToast': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo10', - '$type': 'color', - '$value': '#200647', + id: 'color.backgroundToast', + $type: 'color', + $value: '#706e6b', }, - 'palette.indigo15': { - '_original': { - '$value': '#1f0974', + 'color.backgroundToggle': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo15', - '$type': 'color', - '$value': '#1f0974', + id: 'color.backgroundToggle', + $type: 'color', + $value: '#b0adab', }, - 'palette.indigo20': { - '_original': { - '$value': '#260f8f', + 'color.backgroundToggleDisabled': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo20', - '$type': 'color', - '$value': '#260f8f', + id: 'color.backgroundToggleDisabled', + $type: 'color', + $value: '#b0adab', }, - 'palette.indigo30': { - '_original': { - '$value': '#2f2cb7', + 'color.backgroundToggleHover': { + _original: { + $value: '{color.gray8}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo30', - '$type': 'color', - '$value': '#2f2cb7', + id: 'color.backgroundToggleHover', + $type: 'color', + $value: '#969492', }, - 'palette.indigo40': { - '_original': { - '$value': '#3a49da', + 'color.backgroundUtilityBarHover': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo40', - '$type': 'color', - '$value': '#3a49da', + id: 'color.backgroundUtilityBarHover', + $type: 'color', + $value: '#ecebea', }, - 'palette.indigo50': { - '_original': { - '$value': '#5867e8', + 'color.backgroundWarning': { + _original: { + $value: '{palette.orange70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo50', - '$type': 'color', - '$value': '#5867e8', + id: 'color.backgroundWarning', + $type: 'color', + $value: '#fe9339', }, - 'palette.indigo60': { - '_original': { - '$value': '#7f8ced', + 'color.backgroundWarningDark': { + _original: { + $value: '{palette.orange70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo60', - '$type': 'color', - '$value': '#7f8ced', + id: 'color.backgroundWarningDark', + $type: 'color', + $value: '#fe9339', }, - 'palette.indigo65': { - '_original': { - '$value': '#8e9bef', + 'color.border': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo65', - '$type': 'color', - '$value': '#8e9bef', + id: 'color.border', + $type: 'color', + $value: '#dddbda', }, - 'palette.indigo70': { - '_original': { - '$value': '#9ea9f1', + 'color.borderBrand': { + _original: { + $value: '{palette.blue60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo70', - '$type': 'color', - '$value': '#9ea9f1', + id: 'color.borderBrand', + $type: 'color', + $value: '#1b96ff', }, - 'palette.indigo80': { - '_original': { - '$value': '#bec7f6', + 'color.borderBrandDark': { + _original: { + $value: '{palette.blue30}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo80', - '$type': 'color', - '$value': '#bec7f6', + id: 'color.borderBrandDark', + $type: 'color', + $value: '#014486', }, - 'palette.indigo90': { - '_original': { - '$value': '#e0e5f8', + 'color.borderButtonDefault': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo90', - '$type': 'color', - '$value': '#e0e5f8', + id: 'color.borderButtonDefault', + $type: 'color', + $value: '#dddbda', }, - 'palette.indigo95': { - '_original': { - '$value': '#f1f3fb', + 'color.borderButtonFocusInverse': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.indigo95', - '$type': 'color', - '$value': '#f1f3fb', + id: 'color.borderButtonFocusInverse', + $type: 'color', + $value: '#ecebea', }, - 'palette.neutral10': { - '_original': { - '$value': '#181818', + 'color.borderCustomer': { + _original: { + $value: '{palette.orange70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral10', - '$type': 'color', - '$value': '#181818', + id: 'color.borderCustomer', + $type: 'color', + $value: '#fe9339', }, - 'palette.neutral20': { - '_original': { - '$value': '#2e2e2e', + 'color.borderDestructive': { + _original: { + $value: '{palette.red50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral20', - '$type': 'color', - '$value': '#2e2e2e', + id: 'color.borderDestructive', + $type: 'color', + $value: '#ea001e', }, - 'palette.neutral30': { - '_original': { - '$value': '#444444', + 'color.borderDestructiveActive': { + _original: { + $value: '{palette.red30}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral30', - '$type': 'color', - '$value': '#444444', + id: 'color.borderDestructiveActive', + $type: 'color', + $value: '#8e030f', }, - 'palette.neutral40': { - '_original': { - '$value': '#5c5c5c', + 'color.borderDestructiveHover': { + _original: { + $value: '{palette.red40}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral40', - '$type': 'color', - '$value': '#5c5c5c', + id: 'color.borderDestructiveHover', + $type: 'color', + $value: '#ba0517', }, - 'palette.neutral50': { - '_original': { - '$value': '#747474', + 'color.borderError': { + _original: { + $value: '{palette.red50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral50', - '$type': 'color', - '$value': '#747474', + id: 'color.borderError', + $type: 'color', + $value: '#ea001e', }, - 'palette.neutral60': { - '_original': { - '$value': '#939393', + 'color.borderErrorAlt': { + _original: { + $value: '{palette.red70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral60', - '$type': 'color', - '$value': '#939393', + id: 'color.borderErrorAlt', + $type: 'color', + $value: '#fe8f7d', }, - 'palette.neutral70': { - '_original': { - '$value': '#aeaeae', + 'color.borderErrorDark': { + _original: { + $value: '{palette.red70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral70', - '$type': 'color', - '$value': '#aeaeae', + id: 'color.borderErrorDark', + $type: 'color', + $value: '#fe8f7d', }, - 'palette.neutral80': { - '_original': { - '$value': '#c9c9c9', + 'color.borderInfo': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral80', - '$type': 'color', - '$value': '#c9c9c9', + id: 'color.borderInfo', + $type: 'color', + $value: '#706e6b', }, - 'palette.neutral90': { - '_original': { - '$value': '#e5e5e5', + 'color.borderInput': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral90', - '$type': 'color', - '$value': '#e5e5e5', + id: 'color.borderInput', + $type: 'color', + $value: '#dddbda', }, - 'palette.neutral95': { - '_original': { - '$value': '#f3f3f3', + 'color.borderInputDisabled': { + _original: { + $value: '{color.gray6}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral95', - '$type': 'color', - '$value': '#f3f3f3', + id: 'color.borderInputDisabled', + $type: 'color', + $value: '#c9c7c5', }, - 'palette.neutral100': { - '_original': { - '$value': '#ffffff', + 'color.borderInverse': { + _original: { + $value: '{palette.blue10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.neutral100', - '$type': 'color', - '$value': '#ffffff', + id: 'color.borderInverse', + $type: 'color', + $value: '#001639', }, - 'palette.orange10': { - '_original': { - '$value': '#201600', + 'color.borderLinkFocusInverse': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange10', - '$type': 'color', - '$value': '#201600', + id: 'color.borderLinkFocusInverse', + $type: 'color', + $value: '#ecebea', }, - 'palette.orange15': { - '_original': { - '$value': '#371e03', + 'color.borderOffline': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange15', - '$type': 'color', - '$value': '#371e03', + id: 'color.borderOffline', + $type: 'color', + $value: '#514f4d', }, - 'palette.orange20': { - '_original': { - '$value': '#3e2b02', + 'color.borderPrimary': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange20', - '$type': 'color', - '$value': '#3e2b02', + id: 'color.borderPrimary', + $type: 'color', + $value: '#dddbda', }, - 'palette.orange30': { - '_original': { - '$value': '#5f3e02', + 'color.borderReminder': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange30', - '$type': 'color', - '$value': '#5f3e02', + id: 'color.borderReminder', + $type: 'color', + $value: '#ecebea', }, - 'palette.orange40': { - '_original': { - '$value': '#825101', + 'color.borderRowSelected': { + _original: { + $value: '{palette.blue50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange40', - '$type': 'color', - '$value': '#825101', + id: 'color.borderRowSelected', + $type: 'color', + $value: '#0176d3', }, - 'palette.orange50': { - '_original': { - '$value': '#a96404', + 'color.borderRowSelectedHover': { + _original: { + $value: '{palette.blue60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange50', - '$type': 'color', - '$value': '#a96404', + id: 'color.borderRowSelectedHover', + $type: 'color', + $value: '#1b96ff', }, - 'palette.orange60': { - '_original': { - '$value': '#dd7a01', + 'color.borderSelection': { + _original: { + $value: '{palette.blue50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange60', - '$type': 'color', - '$value': '#dd7a01', + id: 'color.borderSelection', + $type: 'color', + $value: '#0176d3', }, - 'palette.orange65': { - '_original': { - '$value': '#f38303', + 'color.borderSelectionActive': { + _original: { + $value: '{color.gray2}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange65', - '$type': 'color', - '$value': '#f38303', + id: 'color.borderSelectionActive', + $type: 'color', + $value: '#fafaf9', }, - 'palette.orange70': { - '_original': { - '$value': '#fe9339', + 'color.borderSelectionHover': { + _original: { + $value: '{palette.blue60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange70', - '$type': 'color', - '$value': '#fe9339', + id: 'color.borderSelectionHover', + $type: 'color', + $value: '#1b96ff', }, - 'palette.orange80': { - '_original': { - '$value': '#ffba90', + 'color.borderSeparator': { + _original: { + $value: '{color.gray2}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange80', - '$type': 'color', - '$value': '#ffba90', + id: 'color.borderSeparator', + $type: 'color', + $value: '#fafaf9', }, - 'palette.orange90': { - '_original': { - '$value': '#fedfd0', + 'color.borderSeparatorAlt': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange90', - '$type': 'color', - '$value': '#fedfd0', + id: 'color.borderSeparatorAlt', + $type: 'color', + $value: '#dddbda', }, - 'palette.orange95': { - '_original': { - '$value': '#fff1ea', + 'color.borderSeparatorAlt2': { + _original: { + $value: '{color.gray6}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.orange95', - '$type': 'color', - '$value': '#fff1ea', + id: 'color.borderSeparatorAlt2', + $type: 'color', + $value: '#c9c7c5', }, - 'palette.pink10': { - '_original': { - '$value': '#370114', + 'color.borderSeparatorInverse': { + _original: { + $value: '{palette.blue20}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink10', - '$type': 'color', - '$value': '#370114', + id: 'color.borderSeparatorInverse', + $type: 'color', + $value: '#032d60', }, - 'palette.pink15': { - '_original': { - '$value': '#4b0620', + 'color.borderSuccess': { + _original: { + $value: '#91db8b', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink15', - '$type': 'color', - '$value': '#4b0620', + id: 'color.borderSuccess', + $type: 'color', + $value: '#91db8b', }, - 'palette.pink20': { - '_original': { - '$value': '#61022a', + 'color.borderSuccessDark': { + _original: { + $value: '#2e844a', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink20', - '$type': 'color', - '$value': '#61022a', + id: 'color.borderSuccessDark', + $type: 'color', + $value: '#2e844a', }, - 'palette.pink30': { - '_original': { - '$value': '#8a033e', + 'color.borderWarning': { + _original: { + $value: '{palette.orange70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink30', - '$type': 'color', - '$value': '#8a033e', + id: 'color.borderWarning', + $type: 'color', + $value: '#fe9339', }, - 'palette.pink40': { - '_original': { - '$value': '#b60554', + 'color.brand': { + _original: { + $value: '{palette.blue60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink40', - '$type': 'color', - '$value': '#b60554', + id: 'color.brand', + $type: 'color', + $value: '#1b96ff', }, - 'palette.pink50': { - '_original': { - '$value': '#e3066a', + 'color.brandDark': { + _original: { + $value: '{palette.blue50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink50', - '$type': 'color', - '$value': '#e3066a', + id: 'color.brandDark', + $type: 'color', + $value: '#0176d3', }, - 'palette.pink60': { - '_original': { - '$value': '#ff538a', + 'color.brandDarker': { + _original: { + $value: '{palette.blue30}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink60', - '$type': 'color', - '$value': '#ff538a', + id: 'color.brandDarker', + $type: 'color', + $value: '#014486', }, - 'palette.pink65': { - '_original': { - '$value': '#fe7298', + 'color.contrastPrimary': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink65', - '$type': 'color', - '$value': '#fe7298', + id: 'color.contrastPrimary', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.pink70': { - '_original': { - '$value': '#fe8aa7', + 'color.contrastSecondary': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink70', - '$type': 'color', - '$value': '#fe8aa7', + id: 'color.contrastSecondary', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.pink80': { - '_original': { - '$value': '#fdb6c5', + 'color.gray1': { + _original: { + $value: '#ffffff', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink80', - '$type': 'color', - '$value': '#fdb6c5', + id: 'color.gray1', + $type: 'color', + $value: '#ffffff', }, - 'palette.pink90': { - '_original': { - '$value': '#fddde3', + 'color.gray2': { + _original: { + $value: '#fafaf9', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink90', - '$type': 'color', - '$value': '#fddde3', + id: 'color.gray2', + $type: 'color', + $value: '#fafaf9', }, - 'palette.pink95': { - '_original': { - '$value': '#fef0f3', + 'color.gray3': { + _original: { + $value: '#f3f2f2', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.pink95', - '$type': 'color', - '$value': '#fef0f3', + id: 'color.gray3', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.purple10': { - '_original': { - '$value': '#240643', + 'color.gray4': { + _original: { + $value: '#ecebea', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple10', - '$type': 'color', - '$value': '#240643', + id: 'color.gray4', + $type: 'color', + $value: '#ecebea', }, - 'palette.purple15': { - '_original': { - '$value': '#300b60', + 'color.gray5': { + _original: { + $value: '#dddbda', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple15', - '$type': 'color', - '$value': '#300b60', + id: 'color.gray5', + $type: 'color', + $value: '#dddbda', }, - 'palette.purple20': { - '_original': { - '$value': '#401075', + 'color.gray6': { + _original: { + $value: '#c9c7c5', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple20', - '$type': 'color', - '$value': '#401075', + id: 'color.gray6', + $type: 'color', + $value: '#c9c7c5', }, - 'palette.purple30': { - '_original': { - '$value': '#5a1ba9', + 'color.gray7': { + _original: { + $value: '#b0adab', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple30', - '$type': 'color', - '$value': '#5a1ba9', + id: 'color.gray7', + $type: 'color', + $value: '#b0adab', }, - 'palette.purple40': { - '_original': { - '$value': '#7526e3', + 'color.gray8': { + _original: { + $value: '#969492', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple40', - '$type': 'color', - '$value': '#7526e3', + id: 'color.gray8', + $type: 'color', + $value: '#969492', }, - 'palette.purple50': { - '_original': { - '$value': '#9050e9', + 'color.gray9': { + _original: { + $value: '#706e6b', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple50', - '$type': 'color', - '$value': '#9050e9', + id: 'color.gray9', + $type: 'color', + $value: '#706e6b', }, - 'palette.purple60': { - '_original': { - '$value': '#ad7bee', + 'color.gray10': { + _original: { + $value: '#514f4d', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple60', - '$type': 'color', - '$value': '#ad7bee', + id: 'color.gray10', + $type: 'color', + $value: '#514f4d', }, - 'palette.purple65': { - '_original': { - '$value': '#b78def', + 'color.gray11': { + _original: { + $value: '#3e3e3c', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple65', - '$type': 'color', - '$value': '#b78def', + id: 'color.gray11', + $type: 'color', + $value: '#3e3e3c', }, - 'palette.purple70': { - '_original': { - '$value': '#c29ef1', + 'color.gray12': { + _original: { + $value: '#2b2826', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple70', - '$type': 'color', - '$value': '#c29ef1', + id: 'color.gray12', + $type: 'color', + $value: '#2b2826', }, - 'palette.purple80': { - '_original': { - '$value': '#d78ff5', + 'color.gray13': { + _original: { + $value: '#080707', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple80', - '$type': 'color', - '$value': '#d78ff5', + id: 'color.gray13', + $type: 'color', + $value: '#080707', }, - 'palette.purple90': { - '_original': { - '$value': '#ece1f9', + 'color.pickerSliderThumbColorBackground': { + _original: { + $value: '{color.gray3}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple90', - '$type': 'color', - '$value': '#ece1f9', + id: 'color.pickerSliderThumbColorBackground', + $type: 'color', + $value: '#f3f2f2', }, - 'palette.purple95': { - '_original': { - '$value': '#f6f2fb', + 'color.strokeBrand': { + _original: { + $value: '{palette.blue50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.purple95', - '$type': 'color', - '$value': '#f6f2fb', + id: 'color.strokeBrand', + $type: 'color', + $value: '#0176d3', }, - 'palette.red10': { - '_original': { - '$value': '#300c01', + 'color.strokeBrandActive': { + _original: { + $value: '{palette.blue20}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red10', - '$type': 'color', - '$value': '#300c01', + id: 'color.strokeBrandActive', + $type: 'color', + $value: '#032d60', }, - 'palette.red15': { - '_original': { - '$value': '#4a0c04', + 'color.strokeBrandHover': { + _original: { + $value: '{palette.blue50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red15', - '$type': 'color', - '$value': '#4a0c04', + id: 'color.strokeBrandHover', + $type: 'color', + $value: '#0176d3', }, - 'palette.red20': { - '_original': { - '$value': '#640103', + 'color.strokeDisabled': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red20', - '$type': 'color', - '$value': '#640103', + id: 'color.strokeDisabled', + $type: 'color', + $value: '#ecebea', }, - 'palette.red30': { - '_original': { - '$value': '#8e030f', + 'color.strokeHeaderButton': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red30', - '$type': 'color', - '$value': '#8e030f', + id: 'color.strokeHeaderButton', + $type: 'color', + $value: '#b0adab', }, - 'palette.red40': { - '_original': { - '$value': '#ba0517', + 'color.textActionLabel': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red40', - '$type': 'color', - '$value': '#ba0517', + id: 'color.textActionLabel', + $type: 'color', + $value: '#514f4d', }, - 'palette.red50': { - '_original': { - '$value': '#ea001e', + 'color.textActionLabelActive': { + _original: { + $value: '{color.gray13}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red50', - '$type': 'color', - '$value': '#ea001e', + id: 'color.textActionLabelActive', + $type: 'color', + $value: '#080707', }, - 'palette.red60': { - '_original': { - '$value': '#fe5c4c', + 'color.textBrand': { + _original: { + $value: '{palette.blue60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red60', - '$type': 'color', - '$value': '#fe5c4c', + id: 'color.textBrand', + $type: 'color', + $value: '#1b96ff', }, - 'palette.red65': { - '_original': { - '$value': '#fe7765', + 'color.textBrandPrimary': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red65', - '$type': 'color', - '$value': '#fe7765', + id: 'color.textBrandPrimary', + $type: 'color', + $value: '#ffffff', }, - 'palette.red70': { - '_original': { - '$value': '#fe8f7d', + 'color.textButtonDefaultDisabled': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red70', - '$type': 'color', - '$value': '#fe8f7d', + id: 'color.textButtonDefaultDisabled', + $type: 'color', + $value: '#dddbda', }, - 'palette.red80': { - '_original': { - '$value': '#feb8ab', + 'color.textButtonDefaultHint': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red80', - '$type': 'color', - '$value': '#feb8ab', + id: 'color.textButtonDefaultHint', + $type: 'color', + $value: '#b0adab', }, - 'palette.red90': { - '_original': { - '$value': '#feded8', + 'color.textButtonInverse': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red90', - '$type': 'color', - '$value': '#feded8', + id: 'color.textButtonInverse', + $type: 'color', + $value: '#ecebea', }, - 'palette.red95': { - '_original': { - '$value': '#fef1ee', + 'color.textCustomer': { + _original: { + $value: '{palette.orange70}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.red95', - '$type': 'color', - '$value': '#fef1ee', + id: 'color.textCustomer', + $type: 'color', + $value: '#fe9339', }, - 'palette.teal10': { - '_original': { - '$value': '#071b12', + 'color.textDefault': { + _original: { + $value: '{color.gray13}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal10', - '$type': 'color', - '$value': '#071b12', + id: 'color.textDefault', + $type: 'color', + $value: '#080707', }, - 'palette.teal15': { - '_original': { - '$value': '#072825', + 'color.textDestructive': { + _original: { + $value: '{palette.red50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal15', - '$type': 'color', - '$value': '#072825', + id: 'color.textDestructive', + $type: 'color', + $value: '#ea001e', }, - 'palette.teal20': { - '_original': { - '$value': '#023434', + 'color.textDestructiveHover': { + _original: { + $value: '{palette.red40}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal20', - '$type': 'color', - '$value': '#023434', + id: 'color.textDestructiveHover', + $type: 'color', + $value: '#ba0517', }, - 'palette.teal30': { - '_original': { - '$value': '#024d4c', + 'color.textError': { + _original: { + $value: '{palette.red50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal30', - '$type': 'color', - '$value': '#024d4c', + id: 'color.textError', + $type: 'color', + $value: '#ea001e', }, - 'palette.teal40': { - '_original': { - '$value': '#056764', + 'color.textIconDefault': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal40', - '$type': 'color', - '$value': '#056764', + id: 'color.textIconDefault', + $type: 'color', + $value: '#706e6b', }, - 'palette.teal50': { - '_original': { - '$value': '#0b827c', + 'color.textIconDefaultDisabled': { + _original: { + $value: '{color.gray5}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal50', - '$type': 'color', - '$value': '#0b827c', + id: 'color.textIconDefaultDisabled', + $type: 'color', + $value: '#dddbda', }, - 'palette.teal60': { - '_original': { - '$value': '#06a59a', + 'color.textIconDefaultHint': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal60', - '$type': 'color', - '$value': '#06a59a', + id: 'color.textIconDefaultHint', + $type: 'color', + $value: '#b0adab', }, - 'palette.teal65': { - '_original': { - '$value': '#03b4a7', + 'color.textIconDefaultHintBorderless': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal65', - '$type': 'color', - '$value': '#03b4a7', + id: 'color.textIconDefaultHintBorderless', + $type: 'color', + $value: '#ecebea', }, - 'palette.teal70': { - '_original': { - '$value': '#01c3b3', + 'color.textIconInverse': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal70', - '$type': 'color', - '$value': '#01c3b3', + id: 'color.textIconInverse', + $type: 'color', + $value: '#ffffff', }, - 'palette.teal80': { - '_original': { - '$value': '#04e1cb', + 'color.textIconInverseActive': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal80', - '$type': 'color', - '$value': '#04e1cb', + id: 'color.textIconInverseActive', + $type: 'color', + $value: '#ffffff', }, - 'palette.teal90': { - '_original': { - '$value': '#acf3e4', + 'color.textIconInverseHover': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal90', - '$type': 'color', - '$value': '#acf3e4', + id: 'color.textIconInverseHover', + $type: 'color', + $value: '#ffffff', }, - 'palette.teal95': { - '_original': { - '$value': '#def9f3', + 'color.textIconUtility': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.teal95', - '$type': 'color', - '$value': '#def9f3', + id: 'color.textIconUtility', + $type: 'color', + $value: '#b0adab', }, - 'palette.violet10': { - '_original': { - '$value': '#2e0039', + 'color.textInputDisabled': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet10', - '$type': 'color', - '$value': '#2e0039', + id: 'color.textInputDisabled', + $type: 'color', + $value: '#514f4d', }, - 'palette.violet15': { - '_original': { - '$value': '#3d0157', + 'color.textInputIcon': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet15', - '$type': 'color', - '$value': '#3d0157', + id: 'color.textInputIcon', + $type: 'color', + $value: '#b0adab', }, - 'palette.violet20': { - '_original': { - '$value': '#520066', + 'color.textInverse': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet20', - '$type': 'color', - '$value': '#520066', + id: 'color.textInverse', + $type: 'color', + $value: '#ffffff', }, - 'palette.violet30': { - '_original': { - '$value': '#730394', + 'color.textInverseActive': { + _original: { + $value: '{palette.blue60}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet30', - '$type': 'color', - '$value': '#730394', + id: 'color.textInverseActive', + $type: 'color', + $value: '#1b96ff', }, - 'palette.violet40': { - '_original': { - '$value': '#9602c7', + 'color.textInverseHover': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet40', - '$type': 'color', - '$value': '#9602c7', + id: 'color.textInverseHover', + $type: 'color', + $value: '#b0adab', }, - 'palette.violet50': { - '_original': { - '$value': '#ba01ff', + 'color.textInverseWeak': { + _original: { + $value: '{color.gray7}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet50', - '$type': 'color', - '$value': '#ba01ff', + id: 'color.textInverseWeak', + $type: 'color', + $value: '#b0adab', }, - 'palette.violet60': { - '_original': { - '$value': '#cb65ff', + 'color.textLabel': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet60', - '$type': 'color', - '$value': '#cb65ff', + id: 'color.textLabel', + $type: 'color', + $value: '#514f4d', }, - 'palette.violet65': { - '_original': { - '$value': '#d17dfe', + 'color.textLink': { + _original: { + $value: '{palette.blue50}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet65', - '$type': 'color', - '$value': '#d17dfe', + id: 'color.textLink', + $type: 'color', + $value: '#0176d3', }, - 'palette.violet70': { - '_original': { - '$value': '#d892fe', + 'color.textLinkActive': { + _original: { + $value: '{palette.blue20}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet70', - '$type': 'color', - '$value': '#d892fe', + id: 'color.textLinkActive', + $type: 'color', + $value: '#032d60', }, - 'palette.violet80': { - '_original': { - '$value': '#e5b9fe', + 'color.textLinkDisabled': { + _original: { + $value: '{palette.blue20}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet80', - '$type': 'color', - '$value': '#e5b9fe', + id: 'color.textLinkDisabled', + $type: 'color', + $value: '#032d60', }, - 'palette.violet90': { - '_original': { - '$value': '#f2defe', + 'color.textLinkFocus': { + _original: { + $value: '{palette.blue30}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet90', - '$type': 'color', - '$value': '#f2defe', + id: 'color.textLinkFocus', + $type: 'color', + $value: '#014486', }, - 'palette.violet95': { - '_original': { - '$value': '#f9f0ff', + 'color.textLinkHover': { + _original: { + $value: '{palette.blue30}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.violet95', - '$type': 'color', - '$value': '#f9f0ff', + id: 'color.textLinkHover', + $type: 'color', + $value: '#014486', }, - 'palette.yellow10': { - '_original': { - '$value': '#281202', + 'color.textLinkInverse': { + _original: { + $value: '{palette.neutral100}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow10', - '$type': 'color', - '$value': '#281202', + id: 'color.textLinkInverse', + $type: 'color', + $value: '#ffffff', }, - 'palette.yellow15': { - '_original': { - '$value': '#2e2204', + 'color.textLinkInverseActive': { + _original: { + $value: '#ffffff80', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow15', - '$type': 'color', - '$value': '#2e2204', + id: 'color.textLinkInverseActive', + $type: 'color', + $value: '#ffffff80', }, - 'palette.yellow20': { - '_original': { - '$value': '#4f2100', + 'color.textLinkInverseDisabled': { + _original: { + $value: '#ffffff26', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow20', - '$type': 'color', - '$value': '#4f2100', + id: 'color.textLinkInverseDisabled', + $type: 'color', + $value: '#ffffff26', }, - 'palette.yellow30': { - '_original': { - '$value': '#6f3400', + 'color.textLinkInverseHover': { + _original: { + $value: '#ffffffbf', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow30', - '$type': 'color', - '$value': '#6f3400', + id: 'color.textLinkInverseHover', + $type: 'color', + $value: '#ffffffbf', }, - 'palette.yellow40': { - '_original': { - '$value': '#8c4b02', + 'color.textModalButton': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow40', - '$type': 'color', - '$value': '#8c4b02', + id: 'color.textModalButton', + $type: 'color', + $value: '#514f4d', }, - 'palette.yellow50': { - '_original': { - '$value': '#a86403', + 'color.textPlaceholder': { + _original: { + $value: '{color.gray9}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow50', - '$type': 'color', - '$value': '#a86403', + id: 'color.textPlaceholder', + $type: 'color', + $value: '#706e6b', }, - 'palette.yellow60': { - '_original': { - '$value': '#ca8501', + 'color.textPlaceholderInverse': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow60', - '$type': 'color', - '$value': '#ca8501', + id: 'color.textPlaceholderInverse', + $type: 'color', + $value: '#ecebea', }, - 'palette.yellow65': { - '_original': { - '$value': '#d79304', + 'color.textRequired': { + _original: { + $value: '#ea001e', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow65', - '$type': 'color', - '$value': '#d79304', + id: 'color.textRequired', + $type: 'color', + $value: '#ea001e', }, - 'palette.yellow70': { - '_original': { - '$value': '#e4a201', + 'color.textSecondary': { + _original: { + $value: '{color.gray10}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow70', - '$type': 'color', - '$value': '#e4a201', + id: 'color.textSecondary', + $type: 'color', + $value: '#514f4d', }, - 'palette.yellow80': { - '_original': { - '$value': '#fcc003', + 'color.textStageLeft': { + _original: { + $value: '{color.gray4}', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow80', - '$type': 'color', - '$value': '#fcc003', + id: 'color.textStageLeft', + $type: 'color', + $value: '#ecebea', }, - 'palette.yellow90': { - '_original': { - '$value': '#f9e3b6', + 'color.textSuccess': { + _original: { + $value: '#2e844a', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow90', - '$type': 'color', - '$value': '#f9e3b6', + id: 'color.textSuccess', + $type: 'color', + $value: '#2e844a', }, - 'palette.yellow95': { - '_original': { - '$value': '#fbf3e0', + 'color.textSuccessInverse': { + _original: { + $value: '#45c65a', }, - '_group': { - id: 'palette', - '$extensions': { + _group: { + id: 'color', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'palette.yellow95', - '$type': 'color', - '$value': '#fbf3e0', + id: 'color.textSuccessInverse', + $type: 'color', + $value: '#45c65a', }, - 'color.background': { - '_original': { - '$value': '{color.gray3}', + 'color.textTabLabel': { + _original: { + $value: '#2b2826', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.background', - '$type': 'color', - '$value': '#f3f2f2', + id: 'color.textTabLabel', + $type: 'color', + $value: '#2b2826', }, - 'color.backgroundActionbarIconUtility': { - '_original': { - '$value': '{color.gray9}', + 'color.textTabLabelDisabled': { + _original: { + $value: '{color.gray4}', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundActionbarIconUtility', - '$type': 'color', - '$value': '#706e6b', + id: 'color.textTabLabelDisabled', + $type: 'color', + $value: '#ecebea', }, - 'color.backgroundAlt': { - '_original': { - '$value': '{palette.neutral100}', + 'color.textTertiary': { + _original: { + $value: '{color.gray8}', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundAlt', - '$type': 'color', - '$value': '#ffffff', + id: 'color.textTertiary', + $type: 'color', + $value: '#969492', }, - 'color.backgroundAlt2': { - '_original': { - '$value': '{color.gray3}', + 'color.textToast': { + _original: { + $value: '{color.gray4}', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundAlt2', - '$type': 'color', - '$value': '#f3f2f2', + id: 'color.textToast', + $type: 'color', + $value: '#ecebea', }, - 'color.backgroundAltInverse': { - '_original': { - '$value': '{palette.blue20}', + 'color.textToggleDisabled': { + _original: { + $value: '{color.gray5}', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundAltInverse', - '$type': 'color', - '$value': '#032d60', + id: 'color.textToggleDisabled', + $type: 'color', + $value: '#dddbda', }, - 'color.backgroundAnchor': { - '_original': { - '$value': '{color.gray3}', + 'color.textWarning': { + _original: { + $value: '{palette.orange70}', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundAnchor', - '$type': 'color', - '$value': '#f3f2f2', + id: 'color.textWarning', + $type: 'color', + $value: '#fe9339', }, - 'color.backgroundBackdrop': { - '_original': { - '$value': '#ffffffbf', + 'color.textWarningAlt': { + _original: { + $value: '#8c4b02', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundBackdrop', - '$type': 'color', - '$value': '#ffffffbf', + id: 'color.textWarningAlt', + $type: 'color', + $value: '#8c4b02', }, - 'color.backgroundBackdropTint': { - '_original': { - '$value': '{color.gray2}', + 'color.textWeak': { + _original: { + $value: '{color.gray10}', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundBackdropTint', - '$type': 'color', - '$value': '#fafaf9', + id: 'color.textWeak', + $type: 'color', + $value: '#514f4d', }, - 'color.backgroundBrowser': { - '_original': { - '$value': '{color.gray9}', + 'font.family.base': { + _original: { + $value: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'fontFamily', }, - id: 'color.backgroundBrowser', - '$type': 'color', - '$value': '#706e6b', + id: 'font.family.base', + $type: 'fontFamily', + $value: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], }, - 'color.backgroundCustomer': { - '_original': { - '$value': '{palette.orange70}', + 'font.family.heading': { + _original: { + $value: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'fontFamily', }, - id: 'color.backgroundCustomer', - '$type': 'color', - '$value': '#fe9339', + id: 'font.family.heading', + $type: 'fontFamily', + $value: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], }, - 'color.backgroundDark': { - '_original': { - '$value': '{color.gray4}', + 'font.family.mono': { + _original: { + $value: ['Consolas', 'Menlo', 'Monaco', 'Courier', 'monospace'], }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.family', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'fontFamily', }, - id: 'color.backgroundDark', - '$type': 'color', - '$value': '#ecebea', + id: 'font.family.mono', + $type: 'fontFamily', + $value: ['Consolas', 'Menlo', 'Monaco', 'Courier', 'monospace'], }, - 'color.backgroundDestructive': { - '_original': { - '$value': '{palette.red40}', + 'font.lineHeight.heading': { + _original: { + $value: '1.25em', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.lineHeight', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundDestructive', - '$type': 'color', - '$value': '#ba0517', + id: 'font.lineHeight.heading', + $type: 'dimension', + $value: '1.25em', }, - 'color.backgroundDestructiveActive': { - '_original': { - '$value': '{palette.red30}', + 'font.lineHeight.reset': { + _original: { + $value: '1em', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.lineHeight', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundDestructiveActive', - '$type': 'color', - '$value': '#8e030f', + id: 'font.lineHeight.reset', + $type: 'dimension', + $value: '1em', }, - 'color.backgroundDestructiveHover': { - '_original': { - '$value': '{palette.red40}', + 'font.lineHeight.text': { + _original: { + $value: '1.5em', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.lineHeight', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundDestructiveHover', - '$type': 'color', - '$value': '#ba0517', + id: 'font.lineHeight.text', + $type: 'dimension', + $value: '1.5em', }, - 'color.backgroundError': { - '_original': { - '$value': '{palette.red60}', + 'font.size.1': { + _original: { + $value: '0.625rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundError', - '$type': 'color', - '$value': '#fe5c4c', + id: 'font.size.1', + $type: 'dimension', + $value: '0.625rem', }, - 'color.backgroundErrorDark': { - '_original': { - '$value': '{palette.red40}', + 'font.size.2': { + _original: { + $value: '0.75rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundErrorDark', - '$type': 'color', - '$value': '#ba0517', + id: 'font.size.2', + $type: 'dimension', + $value: '0.75rem', }, - 'color.backgroundHighlight': { - '_original': { - '$value': '#faffbd', + 'font.size.3': { + _original: { + $value: '0.8125rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundHighlight', - '$type': 'color', - '$value': '#faffbd', + id: 'font.size.3', + $type: 'dimension', + $value: '0.8125rem', }, - 'color.backgroundHighlightSearch': { - '_original': { - '$value': '#fff03f', + 'font.size.4': { + _original: { + $value: '0.875rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundHighlightSearch', - '$type': 'color', - '$value': '#fff03f', + id: 'font.size.4', + $type: 'dimension', + $value: '0.875rem', }, - 'color.backgroundImageOverlay': { - '_original': { - '$value': '#00000099', + 'font.size.5': { + _original: { + $value: '1rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundImageOverlay', - '$type': 'color', - '$value': '#00000099', + id: 'font.size.5', + $type: 'dimension', + $value: '1rem', }, - 'color.backgroundInfo': { - '_original': { - '$value': '{color.gray9}', + 'font.size.6': { + _original: { + $value: '1.125rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundInfo', - '$type': 'color', - '$value': '#706e6b', + id: 'font.size.6', + $type: 'dimension', + $value: '1.125rem', }, - 'color.backgroundInputCheckboxDisabled': { - '_original': { - '$value': '{color.gray5}', + 'font.size.7': { + _original: { + $value: '1.25rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundInputCheckboxDisabled', - '$type': 'color', - '$value': '#dddbda', + id: 'font.size.7', + $type: 'dimension', + $value: '1.25rem', }, - 'color.backgroundInputDisabled': { - '_original': { - '$value': '{color.gray4}', + 'font.size.8': { + _original: { + $value: '1.5rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundInputDisabled', - '$type': 'color', - '$value': '#ecebea', + id: 'font.size.8', + $type: 'dimension', + $value: '1.5rem', }, - 'color.backgroundInverse': { - '_original': { - '$value': '{palette.blue10}', + 'font.size.9': { + _original: { + $value: '1.75rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundInverse', - '$type': 'color', - '$value': '#001639', + id: 'font.size.9', + $type: 'dimension', + $value: '1.75rem', }, - 'color.backgroundInverseLight': { - '_original': { - '$value': '{palette.blue20}', + 'font.size.10': { + _original: { + $value: '2rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundInverseLight', - '$type': 'color', - '$value': '#032d60', + id: 'font.size.10', + $type: 'dimension', + $value: '2rem', }, - 'color.backgroundLight': { - '_original': { - '$value': '{palette.neutral100}', + 'font.size.11': { + _original: { + $value: '2.625rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'font.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundLight', - '$type': 'color', - '$value': '#ffffff', + id: 'font.size.11', + $type: 'dimension', + $value: '2.625rem', }, - 'color.backgroundNotificationNew': { - '_original': { - '$value': '{color.gray3}', + 'icon.size.large': { + _original: { + $value: '25rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundNotificationNew', - '$type': 'color', - '$value': '#f3f2f2', + id: 'icon.size.large', + $type: 'dimension', + $value: '25rem', }, - 'color.backgroundOffline': { - '_original': { - '$value': '{color.gray10}', + 'icon.size.medium': { + _original: { + $value: '20rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundOffline', - '$type': 'color', - '$value': '#514f4d', + id: 'icon.size.medium', + $type: 'dimension', + $value: '20rem', }, - 'color.backgroundPayload': { - '_original': { - '$value': '{color.gray2}', + 'icon.size.small': { + _original: { + $value: '15rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundPayload', - '$type': 'color', - '$value': '#fafaf9', + id: 'icon.size.small', + $type: 'dimension', + $value: '15rem', }, - 'color.backgroundPost': { - '_original': { - '$value': '{color.gray3}', + 'icon.size.xLarge': { + _original: { + $value: '40rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundPost', - '$type': 'color', - '$value': '#f3f2f2', + id: 'icon.size.xLarge', + $type: 'dimension', + $value: '40rem', }, - 'color.backgroundPrimary': { - '_original': { - '$value': '{color.gray3}', + 'icon.size.xSmall': { + _original: { + $value: '12rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundPrimary', - '$type': 'color', - '$value': '#f3f2f2', + id: 'icon.size.xSmall', + $type: 'dimension', + $value: '12rem', }, - 'color.backgroundRowActive': { - '_original': { - '$value': '{color.gray4}', + 'icon.size.xxLarge': { + _original: { + $value: '60rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundRowActive', - '$type': 'color', - '$value': '#ecebea', + id: 'icon.size.xxLarge', + $type: 'dimension', + $value: '60rem', }, - 'color.backgroundRowHover': { - '_original': { - '$value': '{color.gray3}', + 'icon.size.xxSmall': { + _original: { + $value: '6rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundRowHover', - '$type': 'color', - '$value': '#f3f2f2', + id: 'icon.size.xxSmall', + $type: 'dimension', + $value: '6rem', }, - 'color.backgroundRowNew': { - '_original': { - '$value': '#cdefc4', + 'icon.size.xxxSmall': { + _original: { + $value: '3rem', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'icon.size', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'color.backgroundRowNew', - '$type': 'color', - '$value': '#cdefc4', + id: 'icon.size.xxxSmall', + $type: 'dimension', + $value: '3rem', }, - 'color.backgroundRowSelected': { - '_original': { - '$value': '{color.gray4}', + 'palette.blue10': { + _original: { + $value: '#001639', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundRowSelected', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.blue10', + $type: 'color', + $value: '#001639', }, - 'color.backgroundScrollbar': { - '_original': { - '$value': '{color.gray4}', + 'palette.blue15': { + _original: { + $value: '#03234d', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundScrollbar', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.blue15', + $type: 'color', + $value: '#03234d', }, - 'color.backgroundScrollbarTrack': { - '_original': { - '$value': '{color.gray6}', + 'palette.blue20': { + _original: { + $value: '#032d60', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundScrollbarTrack', - '$type': 'color', - '$value': '#c9c7c5', + id: 'palette.blue20', + $type: 'color', + $value: '#032d60', }, - 'color.backgroundSecondary': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.blue30': { + _original: { + $value: '#014486', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundSecondary', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.blue30', + $type: 'color', + $value: '#014486', }, - 'color.backgroundSelection': { - '_original': { - '$value': '{palette.blue90}', + 'palette.blue40': { + _original: { + $value: '#0b5cab', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundSelection', - '$type': 'color', - '$value': '#d8e6fe', + id: 'palette.blue40', + $type: 'color', + $value: '#0b5cab', }, - 'color.backgroundShade': { - '_original': { - '$value': '{color.gray4}', + 'palette.blue50': { + _original: { + $value: '#0176d3', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundShade', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.blue50', + $type: 'color', + $value: '#0176d3', }, - 'color.backgroundShadeDark': { - '_original': { - '$value': '{color.gray5}', + 'palette.blue60': { + _original: { + $value: '#1b96ff', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundShadeDark', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.blue60', + $type: 'color', + $value: '#1b96ff', }, - 'color.backgroundSpinnerDot': { - '_original': { - '$value': '{color.gray7}', + 'palette.blue65': { + _original: { + $value: '#57a3fd', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundSpinnerDot', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.blue65', + $type: 'color', + $value: '#57a3fd', }, - 'color.backgroundStencil': { - '_original': { - '$value': '{color.gray3}', + 'palette.blue70': { + _original: { + $value: '#78b0fd', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundStencil', - '$type': 'color', - '$value': '#f3f2f2', + id: 'palette.blue70', + $type: 'color', + $value: '#78b0fd', }, - 'color.backgroundStencilAlt': { - '_original': { - '$value': '{color.gray4}', + 'palette.blue80': { + _original: { + $value: '#aacbff', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundStencilAlt', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.blue80', + $type: 'color', + $value: '#aacbff', }, - 'color.backgroundSuccess': { - '_original': { - '$value': '#45c65a', + 'palette.blue90': { + _original: { + $value: '#d8e6fe', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundSuccess', - '$type': 'color', - '$value': '#45c65a', + id: 'palette.blue90', + $type: 'color', + $value: '#d8e6fe', }, - 'color.backgroundSuccessDark': { - '_original': { - '$value': '#2e844a', + 'palette.blue95': { + _original: { + $value: '#eef4ff', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundSuccessDark', - '$type': 'color', - '$value': '#2e844a', + id: 'palette.blue95', + $type: 'color', + $value: '#eef4ff', }, - 'color.backgroundSuccessDarker': { - '_original': { - '$value': '#194e31', + 'palette.cloudBlue10': { + _original: { + $value: '#001a28', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundSuccessDarker', - '$type': 'color', - '$value': '#194e31', + id: 'palette.cloudBlue10', + $type: 'color', + $value: '#001a28', }, - 'color.backgroundTempModal': { - '_original': { - '$value': '{color.gray8}', + 'palette.cloudBlue15': { + _original: { + $value: '#0a2636', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundTempModal', - '$type': 'color', - '$value': '#969492', + id: 'palette.cloudBlue15', + $type: 'color', + $value: '#0a2636', }, - 'color.backgroundTempModalTint': { - '_original': { - '$value': '#08070799', + 'palette.cloudBlue20': { + _original: { + $value: '#023248', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundTempModalTint', - '$type': 'color', - '$value': '#08070799', + id: 'palette.cloudBlue20', + $type: 'color', + $value: '#023248', }, - 'color.backgroundToast': { - '_original': { - '$value': '{color.gray9}', + 'palette.cloudBlue30': { + _original: { + $value: '#084968', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundToast', - '$type': 'color', - '$value': '#706e6b', + id: 'palette.cloudBlue30', + $type: 'color', + $value: '#084968', }, - 'color.backgroundToggle': { - '_original': { - '$value': '{color.gray7}', + 'palette.cloudBlue40': { + _original: { + $value: '#05628a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundToggle', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.cloudBlue40', + $type: 'color', + $value: '#05628a', }, - 'color.backgroundToggleDisabled': { - '_original': { - '$value': '{color.gray7}', + 'palette.cloudBlue50': { + _original: { + $value: '#107cad', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundToggleDisabled', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.cloudBlue50', + $type: 'color', + $value: '#107cad', }, - 'color.backgroundToggleHover': { - '_original': { - '$value': '{color.gray8}', + 'palette.cloudBlue60': { + _original: { + $value: '#0d9dda', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundToggleHover', - '$type': 'color', - '$value': '#969492', + id: 'palette.cloudBlue60', + $type: 'color', + $value: '#0d9dda', }, - 'color.backgroundUtilityBarHover': { - '_original': { - '$value': '{color.gray4}', + 'palette.cloudBlue65': { + _original: { + $value: '#08abed', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundUtilityBarHover', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.cloudBlue65', + $type: 'color', + $value: '#08abed', }, - 'color.backgroundWarning': { - '_original': { - '$value': '{palette.orange70}', + 'palette.cloudBlue70': { + _original: { + $value: '#1ab9ff', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundWarning', - '$type': 'color', - '$value': '#fe9339', + id: 'palette.cloudBlue70', + $type: 'color', + $value: '#1ab9ff', }, - 'color.backgroundWarningDark': { - '_original': { - '$value': '{palette.orange70}', + 'palette.cloudBlue80': { + _original: { + $value: '#90d0fe', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.backgroundWarningDark', - '$type': 'color', - '$value': '#fe9339', + id: 'palette.cloudBlue80', + $type: 'color', + $value: '#90d0fe', }, - 'color.border': { - '_original': { - '$value': '{color.gray5}', + 'palette.cloudBlue90': { + _original: { + $value: '#cfe9fe', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.border', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.cloudBlue90', + $type: 'color', + $value: '#cfe9fe', }, - 'color.borderBrand': { - '_original': { - '$value': '{palette.blue60}', + 'palette.cloudBlue95': { + _original: { + $value: '#eaf5fe', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderBrand', - '$type': 'color', - '$value': '#1b96ff', + id: 'palette.cloudBlue95', + $type: 'color', + $value: '#eaf5fe', }, - 'color.borderBrandDark': { - '_original': { - '$value': '{palette.blue30}', + 'palette.green10': { + _original: { + $value: '#071b12', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderBrandDark', - '$type': 'color', - '$value': '#014486', + id: 'palette.green10', + $type: 'color', + $value: '#071b12', }, - 'color.borderButtonDefault': { - '_original': { - '$value': '{color.gray5}', + 'palette.green15': { + _original: { + $value: '#0c2912', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderButtonDefault', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.green15', + $type: 'color', + $value: '#0c2912', }, - 'color.borderButtonFocusInverse': { - '_original': { - '$value': '{color.gray4}', + 'palette.green20': { + _original: { + $value: '#0e3522', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderButtonFocusInverse', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.green20', + $type: 'color', + $value: '#0e3522', }, - 'color.borderCustomer': { - '_original': { - '$value': '{palette.orange70}', + 'palette.green30': { + _original: { + $value: '#194e31', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderCustomer', - '$type': 'color', - '$value': '#fe9339', + id: 'palette.green30', + $type: 'color', + $value: '#194e31', }, - 'color.borderDestructive': { - '_original': { - '$value': '{palette.red50}', + 'palette.green40': { + _original: { + $value: '#22683e', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderDestructive', - '$type': 'color', - '$value': '#ea001e', + id: 'palette.green40', + $type: 'color', + $value: '#22683e', }, - 'color.borderDestructiveActive': { - '_original': { - '$value': '{palette.red30}', + 'palette.green50': { + _original: { + $value: '#2e844a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderDestructiveActive', - '$type': 'color', - '$value': '#8e030f', + id: 'palette.green50', + $type: 'color', + $value: '#2e844a', }, - 'color.borderDestructiveHover': { - '_original': { - '$value': '{palette.red40}', + 'palette.green60': { + _original: { + $value: '#3ba755', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderDestructiveHover', - '$type': 'color', - '$value': '#ba0517', + id: 'palette.green60', + $type: 'color', + $value: '#3ba755', }, - 'color.borderError': { - '_original': { - '$value': '{palette.red50}', + 'palette.green65': { + _original: { + $value: '#41b658', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderError', - '$type': 'color', - '$value': '#ea001e', + id: 'palette.green65', + $type: 'color', + $value: '#41b658', }, - 'color.borderErrorAlt': { - '_original': { - '$value': '{palette.red70}', + 'palette.green70': { + _original: { + $value: '#45c65a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderErrorAlt', - '$type': 'color', - '$value': '#fe8f7d', + id: 'palette.green70', + $type: 'color', + $value: '#45c65a', }, - 'color.borderErrorDark': { - '_original': { - '$value': '{palette.red70}', + 'palette.green80': { + _original: { + $value: '#91db8b', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderErrorDark', - '$type': 'color', - '$value': '#fe8f7d', + id: 'palette.green80', + $type: 'color', + $value: '#91db8b', }, - 'color.borderInfo': { - '_original': { - '$value': '{color.gray9}', + 'palette.green90': { + _original: { + $value: '#cdefc4', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderInfo', - '$type': 'color', - '$value': '#706e6b', + id: 'palette.green90', + $type: 'color', + $value: '#cdefc4', }, - 'color.borderInput': { - '_original': { - '$value': '{color.gray5}', + 'palette.green95': { + _original: { + $value: '#ebf7e6', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderInput', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.green95', + $type: 'color', + $value: '#ebf7e6', }, - 'color.borderInputDisabled': { - '_original': { - '$value': '{color.gray6}', + 'palette.hotOrange10': { + _original: { + $value: '#281202', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderInputDisabled', - '$type': 'color', - '$value': '#c9c7c5', + id: 'palette.hotOrange10', + $type: 'color', + $value: '#281202', }, - 'color.borderInverse': { - '_original': { - '$value': '{palette.blue10}', + 'palette.hotOrange15': { + _original: { + $value: '#421604', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderInverse', - '$type': 'color', - '$value': '#001639', + id: 'palette.hotOrange15', + $type: 'color', + $value: '#421604', }, - 'color.borderLinkFocusInverse': { - '_original': { - '$value': '{color.gray4}', + 'palette.hotOrange20': { + _original: { + $value: '#541d01', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderLinkFocusInverse', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.hotOrange20', + $type: 'color', + $value: '#541d01', }, - 'color.borderOffline': { - '_original': { - '$value': '{color.gray10}', + 'palette.hotOrange30': { + _original: { + $value: '#7e2600', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderOffline', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.hotOrange30', + $type: 'color', + $value: '#7e2600', }, - 'color.borderPrimary': { - '_original': { - '$value': '{color.gray5}', + 'palette.hotOrange40': { + _original: { + $value: '#aa3001', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderPrimary', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.hotOrange40', + $type: 'color', + $value: '#aa3001', }, - 'color.borderReminder': { - '_original': { - '$value': '{color.gray4}', + 'palette.hotOrange50': { + _original: { + $value: '#d83a00', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderReminder', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.hotOrange50', + $type: 'color', + $value: '#d83a00', }, - 'color.borderRowSelected': { - '_original': { - '$value': '{palette.blue50}', + 'palette.hotOrange60': { + _original: { + $value: '#ff5d2d', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderRowSelected', - '$type': 'color', - '$value': '#0176d3', + id: 'palette.hotOrange60', + $type: 'color', + $value: '#ff5d2d', }, - 'color.borderRowSelectedHover': { - '_original': { - '$value': '{palette.blue60}', + 'palette.hotOrange65': { + _original: { + $value: '#ff784f', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderRowSelectedHover', - '$type': 'color', - '$value': '#1b96ff', + id: 'palette.hotOrange65', + $type: 'color', + $value: '#ff784f', }, - 'color.borderSelection': { - '_original': { - '$value': '{palette.blue50}', + 'palette.hotOrange70': { + _original: { + $value: '#ff906e', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSelection', - '$type': 'color', - '$value': '#0176d3', + id: 'palette.hotOrange70', + $type: 'color', + $value: '#ff906e', }, - 'color.borderSelectionActive': { - '_original': { - '$value': '{color.gray2}', + 'palette.hotOrange80': { + _original: { + $value: '#feb9a5', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSelectionActive', - '$type': 'color', - '$value': '#fafaf9', + id: 'palette.hotOrange80', + $type: 'color', + $value: '#feb9a5', }, - 'color.borderSelectionHover': { - '_original': { - '$value': '{palette.blue60}', + 'palette.hotOrange90': { + _original: { + $value: '#ffded5', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSelectionHover', - '$type': 'color', - '$value': '#1b96ff', + id: 'palette.hotOrange90', + $type: 'color', + $value: '#ffded5', }, - 'color.borderSeparator': { - '_original': { - '$value': '{color.gray2}', + 'palette.hotOrange95': { + _original: { + $value: '#fef1ed', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSeparator', - '$type': 'color', - '$value': '#fafaf9', + id: 'palette.hotOrange95', + $type: 'color', + $value: '#fef1ed', }, - 'color.borderSeparatorAlt': { - '_original': { - '$value': '{color.gray5}', + 'palette.indigo10': { + _original: { + $value: '#200647', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSeparatorAlt', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.indigo10', + $type: 'color', + $value: '#200647', }, - 'color.borderSeparatorAlt2': { - '_original': { - '$value': '{color.gray6}', + 'palette.indigo15': { + _original: { + $value: '#1f0974', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSeparatorAlt2', - '$type': 'color', - '$value': '#c9c7c5', + id: 'palette.indigo15', + $type: 'color', + $value: '#1f0974', }, - 'color.borderSeparatorInverse': { - '_original': { - '$value': '{palette.blue20}', + 'palette.indigo20': { + _original: { + $value: '#260f8f', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSeparatorInverse', - '$type': 'color', - '$value': '#032d60', + id: 'palette.indigo20', + $type: 'color', + $value: '#260f8f', }, - 'color.borderSuccess': { - '_original': { - '$value': '#91db8b', + 'palette.indigo30': { + _original: { + $value: '#2f2cb7', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSuccess', - '$type': 'color', - '$value': '#91db8b', + id: 'palette.indigo30', + $type: 'color', + $value: '#2f2cb7', }, - 'color.borderSuccessDark': { - '_original': { - '$value': '#2e844a', + 'palette.indigo40': { + _original: { + $value: '#3a49da', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderSuccessDark', - '$type': 'color', - '$value': '#2e844a', + id: 'palette.indigo40', + $type: 'color', + $value: '#3a49da', }, - 'color.borderWarning': { - '_original': { - '$value': '{palette.orange70}', + 'palette.indigo50': { + _original: { + $value: '#5867e8', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.borderWarning', - '$type': 'color', - '$value': '#fe9339', + id: 'palette.indigo50', + $type: 'color', + $value: '#5867e8', }, - 'color.brand': { - '_original': { - '$value': '{palette.blue60}', + 'palette.indigo60': { + _original: { + $value: '#7f8ced', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.brand', - '$type': 'color', - '$value': '#1b96ff', + id: 'palette.indigo60', + $type: 'color', + $value: '#7f8ced', }, - 'color.brandDark': { - '_original': { - '$value': '{palette.blue50}', + 'palette.indigo65': { + _original: { + $value: '#8e9bef', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.brandDark', - '$type': 'color', - '$value': '#0176d3', + id: 'palette.indigo65', + $type: 'color', + $value: '#8e9bef', }, - 'color.brandDarker': { - '_original': { - '$value': '{palette.blue30}', + 'palette.indigo70': { + _original: { + $value: '#9ea9f1', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.brandDarker', - '$type': 'color', - '$value': '#014486', + id: 'palette.indigo70', + $type: 'color', + $value: '#9ea9f1', }, - 'color.contrastPrimary': { - '_original': { - '$value': '{color.gray3}', + 'palette.indigo80': { + _original: { + $value: '#bec7f6', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.contrastPrimary', - '$type': 'color', - '$value': '#f3f2f2', + id: 'palette.indigo80', + $type: 'color', + $value: '#bec7f6', }, - 'color.contrastSecondary': { - '_original': { - '$value': '{color.gray3}', + 'palette.indigo90': { + _original: { + $value: '#e0e5f8', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.contrastSecondary', - '$type': 'color', - '$value': '#f3f2f2', + id: 'palette.indigo90', + $type: 'color', + $value: '#e0e5f8', }, - 'color.gray1': { - '_original': { - '$value': '#ffffff', + 'palette.indigo95': { + _original: { + $value: '#f1f3fb', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray1', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.indigo95', + $type: 'color', + $value: '#f1f3fb', }, - 'color.gray2': { - '_original': { - '$value': '#fafaf9', + 'palette.neutral10': { + _original: { + $value: '#181818', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray2', - '$type': 'color', - '$value': '#fafaf9', + id: 'palette.neutral10', + $type: 'color', + $value: '#181818', }, - 'color.gray3': { - '_original': { - '$value': '#f3f2f2', + 'palette.neutral20': { + _original: { + $value: '#2e2e2e', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray3', - '$type': 'color', - '$value': '#f3f2f2', + id: 'palette.neutral20', + $type: 'color', + $value: '#2e2e2e', }, - 'color.gray4': { - '_original': { - '$value': '#ecebea', + 'palette.neutral30': { + _original: { + $value: '#444444', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray4', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.neutral30', + $type: 'color', + $value: '#444444', }, - 'color.gray5': { - '_original': { - '$value': '#dddbda', + 'palette.neutral40': { + _original: { + $value: '#5c5c5c', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray5', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.neutral40', + $type: 'color', + $value: '#5c5c5c', }, - 'color.gray6': { - '_original': { - '$value': '#c9c7c5', + 'palette.neutral50': { + _original: { + $value: '#747474', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray6', - '$type': 'color', - '$value': '#c9c7c5', + id: 'palette.neutral50', + $type: 'color', + $value: '#747474', }, - 'color.gray7': { - '_original': { - '$value': '#b0adab', + 'palette.neutral60': { + _original: { + $value: '#939393', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray7', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.neutral60', + $type: 'color', + $value: '#939393', }, - 'color.gray8': { - '_original': { - '$value': '#969492', + 'palette.neutral70': { + _original: { + $value: '#aeaeae', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray8', - '$type': 'color', - '$value': '#969492', + id: 'palette.neutral70', + $type: 'color', + $value: '#aeaeae', }, - 'color.gray9': { - '_original': { - '$value': '#706e6b', + 'palette.neutral80': { + _original: { + $value: '#c9c9c9', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray9', - '$type': 'color', - '$value': '#706e6b', + id: 'palette.neutral80', + $type: 'color', + $value: '#c9c9c9', }, - 'color.gray10': { - '_original': { - '$value': '#514f4d', + 'palette.neutral90': { + _original: { + $value: '#e5e5e5', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray10', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.neutral90', + $type: 'color', + $value: '#e5e5e5', }, - 'color.gray11': { - '_original': { - '$value': '#3e3e3c', + 'palette.neutral95': { + _original: { + $value: '#f3f3f3', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray11', - '$type': 'color', - '$value': '#3e3e3c', + id: 'palette.neutral95', + $type: 'color', + $value: '#f3f3f3', }, - 'color.gray12': { - '_original': { - '$value': '#2b2826', + 'palette.neutral100': { + _original: { + $value: '#ffffff', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray12', - '$type': 'color', - '$value': '#2b2826', + id: 'palette.neutral100', + $type: 'color', + $value: '#ffffff', }, - 'color.gray13': { - '_original': { - '$value': '#080707', + 'palette.orange10': { + _original: { + $value: '#201600', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.gray13', - '$type': 'color', - '$value': '#080707', + id: 'palette.orange10', + $type: 'color', + $value: '#201600', }, - 'color.pickerSliderThumbColorBackground': { - '_original': { - '$value': '{color.gray3}', + 'palette.orange15': { + _original: { + $value: '#371e03', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.pickerSliderThumbColorBackground', - '$type': 'color', - '$value': '#f3f2f2', + id: 'palette.orange15', + $type: 'color', + $value: '#371e03', }, - 'color.strokeBrand': { - '_original': { - '$value': '{palette.blue50}', + 'palette.orange20': { + _original: { + $value: '#3e2b02', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.strokeBrand', - '$type': 'color', - '$value': '#0176d3', + id: 'palette.orange20', + $type: 'color', + $value: '#3e2b02', }, - 'color.strokeBrandActive': { - '_original': { - '$value': '{palette.blue20}', + 'palette.orange30': { + _original: { + $value: '#5f3e02', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.strokeBrandActive', - '$type': 'color', - '$value': '#032d60', + id: 'palette.orange30', + $type: 'color', + $value: '#5f3e02', }, - 'color.strokeBrandHover': { - '_original': { - '$value': '{palette.blue50}', + 'palette.orange40': { + _original: { + $value: '#825101', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.strokeBrandHover', - '$type': 'color', - '$value': '#0176d3', + id: 'palette.orange40', + $type: 'color', + $value: '#825101', }, - 'color.strokeDisabled': { - '_original': { - '$value': '{color.gray4}', + 'palette.orange50': { + _original: { + $value: '#a96404', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.strokeDisabled', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.orange50', + $type: 'color', + $value: '#a96404', }, - 'color.strokeHeaderButton': { - '_original': { - '$value': '{color.gray7}', + 'palette.orange60': { + _original: { + $value: '#dd7a01', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.strokeHeaderButton', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.orange60', + $type: 'color', + $value: '#dd7a01', }, - 'color.textActionLabel': { - '_original': { - '$value': '{color.gray10}', + 'palette.orange65': { + _original: { + $value: '#f38303', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textActionLabel', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.orange65', + $type: 'color', + $value: '#f38303', }, - 'color.textActionLabelActive': { - '_original': { - '$value': '{color.gray13}', + 'palette.orange70': { + _original: { + $value: '#fe9339', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textActionLabelActive', - '$type': 'color', - '$value': '#080707', + id: 'palette.orange70', + $type: 'color', + $value: '#fe9339', }, - 'color.textBrand': { - '_original': { - '$value': '{palette.blue60}', + 'palette.orange80': { + _original: { + $value: '#ffba90', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textBrand', - '$type': 'color', - '$value': '#1b96ff', + id: 'palette.orange80', + $type: 'color', + $value: '#ffba90', }, - 'color.textBrandPrimary': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.orange90': { + _original: { + $value: '#fedfd0', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textBrandPrimary', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.orange90', + $type: 'color', + $value: '#fedfd0', }, - 'color.textButtonDefaultDisabled': { - '_original': { - '$value': '{color.gray5}', + 'palette.orange95': { + _original: { + $value: '#fff1ea', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textButtonDefaultDisabled', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.orange95', + $type: 'color', + $value: '#fff1ea', }, - 'color.textButtonDefaultHint': { - '_original': { - '$value': '{color.gray7}', + 'palette.pink10': { + _original: { + $value: '#370114', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textButtonDefaultHint', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.pink10', + $type: 'color', + $value: '#370114', }, - 'color.textButtonInverse': { - '_original': { - '$value': '{color.gray4}', + 'palette.pink15': { + _original: { + $value: '#4b0620', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textButtonInverse', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.pink15', + $type: 'color', + $value: '#4b0620', }, - 'color.textCustomer': { - '_original': { - '$value': '{palette.orange70}', + 'palette.pink20': { + _original: { + $value: '#61022a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textCustomer', - '$type': 'color', - '$value': '#fe9339', + id: 'palette.pink20', + $type: 'color', + $value: '#61022a', }, - 'color.textDefault': { - '_original': { - '$value': '{color.gray13}', + 'palette.pink30': { + _original: { + $value: '#8a033e', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textDefault', - '$type': 'color', - '$value': '#080707', + id: 'palette.pink30', + $type: 'color', + $value: '#8a033e', }, - 'color.textDestructive': { - '_original': { - '$value': '{palette.red50}', + 'palette.pink40': { + _original: { + $value: '#b60554', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textDestructive', - '$type': 'color', - '$value': '#ea001e', + id: 'palette.pink40', + $type: 'color', + $value: '#b60554', }, - 'color.textDestructiveHover': { - '_original': { - '$value': '{palette.red40}', + 'palette.pink50': { + _original: { + $value: '#e3066a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textDestructiveHover', - '$type': 'color', - '$value': '#ba0517', + id: 'palette.pink50', + $type: 'color', + $value: '#e3066a', }, - 'color.textError': { - '_original': { - '$value': '{palette.red50}', + 'palette.pink60': { + _original: { + $value: '#ff538a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textError', - '$type': 'color', - '$value': '#ea001e', + id: 'palette.pink60', + $type: 'color', + $value: '#ff538a', }, - 'color.textIconDefault': { - '_original': { - '$value': '{color.gray9}', + 'palette.pink65': { + _original: { + $value: '#fe7298', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconDefault', - '$type': 'color', - '$value': '#706e6b', + id: 'palette.pink65', + $type: 'color', + $value: '#fe7298', }, - 'color.textIconDefaultDisabled': { - '_original': { - '$value': '{color.gray5}', + 'palette.pink70': { + _original: { + $value: '#fe8aa7', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconDefaultDisabled', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.pink70', + $type: 'color', + $value: '#fe8aa7', }, - 'color.textIconDefaultHint': { - '_original': { - '$value': '{color.gray7}', + 'palette.pink80': { + _original: { + $value: '#fdb6c5', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconDefaultHint', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.pink80', + $type: 'color', + $value: '#fdb6c5', }, - 'color.textIconDefaultHintBorderless': { - '_original': { - '$value': '{color.gray4}', + 'palette.pink90': { + _original: { + $value: '#fddde3', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconDefaultHintBorderless', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.pink90', + $type: 'color', + $value: '#fddde3', }, - 'color.textIconInverse': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.pink95': { + _original: { + $value: '#fef0f3', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconInverse', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.pink95', + $type: 'color', + $value: '#fef0f3', }, - 'color.textIconInverseActive': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.purple10': { + _original: { + $value: '#240643', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconInverseActive', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.purple10', + $type: 'color', + $value: '#240643', }, - 'color.textIconInverseHover': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.purple15': { + _original: { + $value: '#300b60', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconInverseHover', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.purple15', + $type: 'color', + $value: '#300b60', }, - 'color.textIconUtility': { - '_original': { - '$value': '{color.gray7}', + 'palette.purple20': { + _original: { + $value: '#401075', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textIconUtility', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.purple20', + $type: 'color', + $value: '#401075', }, - 'color.textInputDisabled': { - '_original': { - '$value': '{color.gray10}', + 'palette.purple30': { + _original: { + $value: '#5a1ba9', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textInputDisabled', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.purple30', + $type: 'color', + $value: '#5a1ba9', }, - 'color.textInputIcon': { - '_original': { - '$value': '{color.gray7}', + 'palette.purple40': { + _original: { + $value: '#7526e3', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textInputIcon', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.purple40', + $type: 'color', + $value: '#7526e3', }, - 'color.textInverse': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.purple50': { + _original: { + $value: '#9050e9', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textInverse', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.purple50', + $type: 'color', + $value: '#9050e9', }, - 'color.textInverseActive': { - '_original': { - '$value': '{palette.blue60}', + 'palette.purple60': { + _original: { + $value: '#ad7bee', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textInverseActive', - '$type': 'color', - '$value': '#1b96ff', + id: 'palette.purple60', + $type: 'color', + $value: '#ad7bee', }, - 'color.textInverseHover': { - '_original': { - '$value': '{color.gray7}', + 'palette.purple65': { + _original: { + $value: '#b78def', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textInverseHover', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.purple65', + $type: 'color', + $value: '#b78def', }, - 'color.textInverseWeak': { - '_original': { - '$value': '{color.gray7}', + 'palette.purple70': { + _original: { + $value: '#c29ef1', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textInverseWeak', - '$type': 'color', - '$value': '#b0adab', + id: 'palette.purple70', + $type: 'color', + $value: '#c29ef1', }, - 'color.textLabel': { - '_original': { - '$value': '{color.gray10}', + 'palette.purple80': { + _original: { + $value: '#d78ff5', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLabel', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.purple80', + $type: 'color', + $value: '#d78ff5', }, - 'color.textLink': { - '_original': { - '$value': '{palette.blue50}', + 'palette.purple90': { + _original: { + $value: '#ece1f9', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLink', - '$type': 'color', - '$value': '#0176d3', + id: 'palette.purple90', + $type: 'color', + $value: '#ece1f9', }, - 'color.textLinkActive': { - '_original': { - '$value': '{palette.blue20}', + 'palette.purple95': { + _original: { + $value: '#f6f2fb', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkActive', - '$type': 'color', - '$value': '#032d60', + id: 'palette.purple95', + $type: 'color', + $value: '#f6f2fb', }, - 'color.textLinkDisabled': { - '_original': { - '$value': '{palette.blue20}', + 'palette.red10': { + _original: { + $value: '#300c01', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkDisabled', - '$type': 'color', - '$value': '#032d60', + id: 'palette.red10', + $type: 'color', + $value: '#300c01', }, - 'color.textLinkFocus': { - '_original': { - '$value': '{palette.blue30}', + 'palette.red15': { + _original: { + $value: '#4a0c04', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkFocus', - '$type': 'color', - '$value': '#014486', + id: 'palette.red15', + $type: 'color', + $value: '#4a0c04', }, - 'color.textLinkHover': { - '_original': { - '$value': '{palette.blue30}', + 'palette.red20': { + _original: { + $value: '#640103', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkHover', - '$type': 'color', - '$value': '#014486', + id: 'palette.red20', + $type: 'color', + $value: '#640103', }, - 'color.textLinkInverse': { - '_original': { - '$value': '{palette.neutral100}', + 'palette.red30': { + _original: { + $value: '#8e030f', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkInverse', - '$type': 'color', - '$value': '#ffffff', + id: 'palette.red30', + $type: 'color', + $value: '#8e030f', }, - 'color.textLinkInverseActive': { - '_original': { - '$value': '#ffffff80', + 'palette.red40': { + _original: { + $value: '#ba0517', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkInverseActive', - '$type': 'color', - '$value': '#ffffff80', + id: 'palette.red40', + $type: 'color', + $value: '#ba0517', }, - 'color.textLinkInverseDisabled': { - '_original': { - '$value': '#ffffff26', + 'palette.red50': { + _original: { + $value: '#ea001e', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkInverseDisabled', - '$type': 'color', - '$value': '#ffffff26', + id: 'palette.red50', + $type: 'color', + $value: '#ea001e', }, - 'color.textLinkInverseHover': { - '_original': { - '$value': '#ffffffbf', + 'palette.red60': { + _original: { + $value: '#fe5c4c', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textLinkInverseHover', - '$type': 'color', - '$value': '#ffffffbf', + id: 'palette.red60', + $type: 'color', + $value: '#fe5c4c', }, - 'color.textModalButton': { - '_original': { - '$value': '{color.gray10}', + 'palette.red65': { + _original: { + $value: '#fe7765', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textModalButton', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.red65', + $type: 'color', + $value: '#fe7765', }, - 'color.textPlaceholder': { - '_original': { - '$value': '{color.gray9}', + 'palette.red70': { + _original: { + $value: '#fe8f7d', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textPlaceholder', - '$type': 'color', - '$value': '#706e6b', + id: 'palette.red70', + $type: 'color', + $value: '#fe8f7d', }, - 'color.textPlaceholderInverse': { - '_original': { - '$value': '{color.gray4}', + 'palette.red80': { + _original: { + $value: '#feb8ab', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textPlaceholderInverse', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.red80', + $type: 'color', + $value: '#feb8ab', }, - 'color.textRequired': { - '_original': { - '$value': '#ea001e', + 'palette.red90': { + _original: { + $value: '#feded8', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textRequired', - '$type': 'color', - '$value': '#ea001e', + id: 'palette.red90', + $type: 'color', + $value: '#feded8', }, - 'color.textSecondary': { - '_original': { - '$value': '{color.gray10}', + 'palette.red95': { + _original: { + $value: '#fef1ee', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textSecondary', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.red95', + $type: 'color', + $value: '#fef1ee', }, - 'color.textStageLeft': { - '_original': { - '$value': '{color.gray4}', + 'palette.teal10': { + _original: { + $value: '#071b12', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textStageLeft', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.teal10', + $type: 'color', + $value: '#071b12', }, - 'color.textSuccess': { - '_original': { - '$value': '#2e844a', + 'palette.teal15': { + _original: { + $value: '#072825', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textSuccess', - '$type': 'color', - '$value': '#2e844a', + id: 'palette.teal15', + $type: 'color', + $value: '#072825', }, - 'color.textSuccessInverse': { - '_original': { - '$value': '#45c65a', + 'palette.teal20': { + _original: { + $value: '#023434', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textSuccessInverse', - '$type': 'color', - '$value': '#45c65a', + id: 'palette.teal20', + $type: 'color', + $value: '#023434', }, - 'color.textTabLabel': { - '_original': { - '$value': '#2b2826', + 'palette.teal30': { + _original: { + $value: '#024d4c', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textTabLabel', - '$type': 'color', - '$value': '#2b2826', + id: 'palette.teal30', + $type: 'color', + $value: '#024d4c', }, - 'color.textTabLabelDisabled': { - '_original': { - '$value': '{color.gray4}', + 'palette.teal40': { + _original: { + $value: '#056764', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textTabLabelDisabled', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.teal40', + $type: 'color', + $value: '#056764', }, - 'color.textTertiary': { - '_original': { - '$value': '{color.gray8}', + 'palette.teal50': { + _original: { + $value: '#0b827c', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textTertiary', - '$type': 'color', - '$value': '#969492', + id: 'palette.teal50', + $type: 'color', + $value: '#0b827c', }, - 'color.textToast': { - '_original': { - '$value': '{color.gray4}', + 'palette.teal60': { + _original: { + $value: '#06a59a', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textToast', - '$type': 'color', - '$value': '#ecebea', + id: 'palette.teal60', + $type: 'color', + $value: '#06a59a', }, - 'color.textToggleDisabled': { - '_original': { - '$value': '{color.gray5}', + 'palette.teal65': { + _original: { + $value: '#03b4a7', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textToggleDisabled', - '$type': 'color', - '$value': '#dddbda', + id: 'palette.teal65', + $type: 'color', + $value: '#03b4a7', }, - 'color.textWarning': { - '_original': { - '$value': '{palette.orange70}', + 'palette.teal70': { + _original: { + $value: '#01c3b3', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textWarning', - '$type': 'color', - '$value': '#fe9339', + id: 'palette.teal70', + $type: 'color', + $value: '#01c3b3', }, - 'color.textWarningAlt': { - '_original': { - '$value': '#8c4b02', + 'palette.teal80': { + _original: { + $value: '#04e1cb', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textWarningAlt', - '$type': 'color', - '$value': '#8c4b02', + id: 'palette.teal80', + $type: 'color', + $value: '#04e1cb', }, - 'color.textWeak': { - '_original': { - '$value': '{color.gray10}', + 'palette.teal90': { + _original: { + $value: '#acf3e4', }, - '_group': { - id: 'color', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'color', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'color.textWeak', - '$type': 'color', - '$value': '#514f4d', + id: 'palette.teal90', + $type: 'color', + $value: '#acf3e4', }, - 'icon.size.xxxSmall': { - '_original': { - '$value': '3rem', + 'palette.teal95': { + _original: { + $value: '#def9f3', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.xxxSmall', - '$type': 'dimension', - '$value': '3rem', + id: 'palette.teal95', + $type: 'color', + $value: '#def9f3', }, - 'icon.size.xxSmall': { - '_original': { - '$value': '6rem', + 'palette.violet10': { + _original: { + $value: '#2e0039', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.xxSmall', - '$type': 'dimension', - '$value': '6rem', + id: 'palette.violet10', + $type: 'color', + $value: '#2e0039', }, - 'icon.size.xSmall': { - '_original': { - '$value': '12rem', + 'palette.violet15': { + _original: { + $value: '#3d0157', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.xSmall', - '$type': 'dimension', - '$value': '12rem', + id: 'palette.violet15', + $type: 'color', + $value: '#3d0157', }, - 'icon.size.small': { - '_original': { - '$value': '15rem', + 'palette.violet20': { + _original: { + $value: '#520066', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.small', - '$type': 'dimension', - '$value': '15rem', + id: 'palette.violet20', + $type: 'color', + $value: '#520066', }, - 'icon.size.medium': { - '_original': { - '$value': '20rem', + 'palette.violet30': { + _original: { + $value: '#730394', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.medium', - '$type': 'dimension', - '$value': '20rem', + id: 'palette.violet30', + $type: 'color', + $value: '#730394', }, - 'icon.size.large': { - '_original': { - '$value': '25rem', + 'palette.violet40': { + _original: { + $value: '#9602c7', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.large', - '$type': 'dimension', - '$value': '25rem', + id: 'palette.violet40', + $type: 'color', + $value: '#9602c7', }, - 'icon.size.xLarge': { - '_original': { - '$value': '40rem', + 'palette.violet50': { + _original: { + $value: '#ba01ff', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.xLarge', - '$type': 'dimension', - '$value': '40rem', + id: 'palette.violet50', + $type: 'color', + $value: '#ba01ff', }, - 'icon.size.xxLarge': { - '_original': { - '$value': '60rem', + 'palette.violet60': { + _original: { + $value: '#cb65ff', }, - '_group': { - id: 'icon.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'icon.size.xxLarge', - '$type': 'dimension', - '$value': '60rem', + id: 'palette.violet60', + $type: 'color', + $value: '#cb65ff', }, - 'font.family.base': { - '_original': { - '$value': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], + 'palette.violet65': { + _original: { + $value: '#d17dfe', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'fontFamily', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.family.base', - '$type': 'fontFamily', - '$value': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], + id: 'palette.violet65', + $type: 'color', + $value: '#d17dfe', }, - 'font.family.heading': { - '_original': { - '$value': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], + 'palette.violet70': { + _original: { + $value: '#d892fe', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'fontFamily', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.family.heading', - '$type': 'fontFamily', - '$value': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'], + id: 'palette.violet70', + $type: 'color', + $value: '#d892fe', }, - 'font.family.mono': { - '_original': { - '$value': ['Consolas', 'Menlo', 'Monaco', 'Courier', 'monospace'], + 'palette.violet80': { + _original: { + $value: '#e5b9fe', }, - '_group': { - id: 'font.family', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'fontFamily', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.family.mono', - '$type': 'fontFamily', - '$value': ['Consolas', 'Menlo', 'Monaco', 'Courier', 'monospace'], + id: 'palette.violet80', + $type: 'color', + $value: '#e5b9fe', }, - 'font.size.1': { - '_original': { - '$value': '0.625rem', + 'palette.violet90': { + _original: { + $value: '#f2defe', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.1', - '$type': 'dimension', - '$value': '0.625rem', + id: 'palette.violet90', + $type: 'color', + $value: '#f2defe', }, - 'font.size.2': { - '_original': { - '$value': '0.75rem', + 'palette.violet95': { + _original: { + $value: '#f9f0ff', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.2', - '$type': 'dimension', - '$value': '0.75rem', + id: 'palette.violet95', + $type: 'color', + $value: '#f9f0ff', }, - 'font.size.3': { - '_original': { - '$value': '0.8125rem', + 'palette.yellow10': { + _original: { + $value: '#281202', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.3', - '$type': 'dimension', - '$value': '0.8125rem', + id: 'palette.yellow10', + $type: 'color', + $value: '#281202', }, - 'font.size.4': { - '_original': { - '$value': '0.875rem', + 'palette.yellow15': { + _original: { + $value: '#2e2204', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.4', - '$type': 'dimension', - '$value': '0.875rem', + id: 'palette.yellow15', + $type: 'color', + $value: '#2e2204', }, - 'font.size.5': { - '_original': { - '$value': '1rem', + 'palette.yellow20': { + _original: { + $value: '#4f2100', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.5', - '$type': 'dimension', - '$value': '1rem', + id: 'palette.yellow20', + $type: 'color', + $value: '#4f2100', }, - 'font.size.6': { - '_original': { - '$value': '1.125rem', + 'palette.yellow30': { + _original: { + $value: '#6f3400', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.6', - '$type': 'dimension', - '$value': '1.125rem', + id: 'palette.yellow30', + $type: 'color', + $value: '#6f3400', }, - 'font.size.7': { - '_original': { - '$value': '1.25rem', + 'palette.yellow40': { + _original: { + $value: '#8c4b02', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.7', - '$type': 'dimension', - '$value': '1.25rem', + id: 'palette.yellow40', + $type: 'color', + $value: '#8c4b02', }, - 'font.size.8': { - '_original': { - '$value': '1.5rem', + 'palette.yellow50': { + _original: { + $value: '#a86403', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.8', - '$type': 'dimension', - '$value': '1.5rem', + id: 'palette.yellow50', + $type: 'color', + $value: '#a86403', }, - 'font.size.9': { - '_original': { - '$value': '1.75rem', + 'palette.yellow60': { + _original: { + $value: '#ca8501', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.9', - '$type': 'dimension', - '$value': '1.75rem', + id: 'palette.yellow60', + $type: 'color', + $value: '#ca8501', }, - 'font.size.10': { - '_original': { - '$value': '2rem', + 'palette.yellow65': { + _original: { + $value: '#d79304', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.10', - '$type': 'dimension', - '$value': '2rem', + id: 'palette.yellow65', + $type: 'color', + $value: '#d79304', }, - 'font.size.11': { - '_original': { - '$value': '2.625rem', + 'palette.yellow70': { + _original: { + $value: '#e4a201', }, - '_group': { - id: 'font.size', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.size.11', - '$type': 'dimension', - '$value': '2.625rem', + id: 'palette.yellow70', + $type: 'color', + $value: '#e4a201', }, - 'font.lineHeight.heading': { - '_original': { - '$value': '1.25em', + 'palette.yellow80': { + _original: { + $value: '#fcc003', }, - '_group': { - id: 'font.lineHeight', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.lineHeight.heading', - '$type': 'dimension', - '$value': '1.25em', + id: 'palette.yellow80', + $type: 'color', + $value: '#fcc003', }, - 'font.lineHeight.text': { - '_original': { - '$value': '1.5em', + 'palette.yellow90': { + _original: { + $value: '#f9e3b6', }, - '_group': { - id: 'font.lineHeight', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.lineHeight.text', - '$type': 'dimension', - '$value': '1.5em', + id: 'palette.yellow90', + $type: 'color', + $value: '#f9e3b6', }, - 'font.lineHeight.reset': { - '_original': { - '$value': '1em', + 'palette.yellow95': { + _original: { + $value: '#fbf3e0', }, - '_group': { - id: 'font.lineHeight', - '$extensions': { + _group: { + id: 'palette', + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'color', }, - id: 'font.lineHeight.reset', - '$type': 'dimension', - '$value': '1em', + id: 'palette.yellow95', + $type: 'color', + $value: '#fbf3e0', }, - 'space.none': { - '_original': { - '$value': 0, + 'space.large': { + _original: { + $value: '1.5rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.none', - '$type': 'dimension', - '$value': '0', + id: 'space.large', + $type: 'dimension', + $value: '1.5rem', }, - 'space.xxxSmall': { - '_original': { - '$value': '0.125rem', + 'space.medium': { + _original: { + $value: '1rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.xxxSmall', - '$type': 'dimension', - '$value': '0.125rem', + id: 'space.medium', + $type: 'dimension', + $value: '1rem', }, - 'space.xxSmall': { - '_original': { - '$value': '0.25rem', + 'space.none': { + _original: { + $value: 0, }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.xxSmall', - '$type': 'dimension', - '$value': '0.25rem', + id: 'space.none', + $type: 'dimension', + $value: '0', }, - 'space.xSmall': { - '_original': { - '$value': '0.5rem', + 'space.small': { + _original: { + $value: '0.75rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.xSmall', - '$type': 'dimension', - '$value': '0.5rem', + id: 'space.small', + $type: 'dimension', + $value: '0.75rem', }, - 'space.small': { - '_original': { - '$value': '0.75rem', + 'space.xLarge': { + _original: { + $value: '2rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.small', - '$type': 'dimension', - '$value': '0.75rem', + id: 'space.xLarge', + $type: 'dimension', + $value: '2rem', }, - 'space.medium': { - '_original': { - '$value': '1rem', + 'space.xSmall': { + _original: { + $value: '0.5rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.medium', - '$type': 'dimension', - '$value': '1rem', + id: 'space.xSmall', + $type: 'dimension', + $value: '0.5rem', }, - 'space.large': { - '_original': { - '$value': '1.5rem', + 'space.xxLarge': { + _original: { + $value: '3rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.large', - '$type': 'dimension', - '$value': '1.5rem', + id: 'space.xxLarge', + $type: 'dimension', + $value: '3rem', }, - 'space.xLarge': { - '_original': { - '$value': '2rem', + 'space.xxSmall': { + _original: { + $value: '0.25rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.xLarge', - '$type': 'dimension', - '$value': '2rem', + id: 'space.xxSmall', + $type: 'dimension', + $value: '0.25rem', }, - 'space.xxLarge': { - '_original': { - '$value': '3rem', + 'space.xxxSmall': { + _original: { + $value: '0.125rem', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Salesforce Lightning', - '$type': 'dimension', + $name: 'Salesforce Lightning', + $type: 'dimension', }, - id: 'space.xxLarge', - '$type': 'dimension', - '$value': '3rem', + id: 'space.xxxSmall', + $type: 'dimension', + $value: '0.125rem', }, }; diff --git a/examples/salesforce/tokens/index.scss b/examples/salesforce/tokens/index.scss index 5bc07dcd..5d739ea1 100644 --- a/examples/salesforce/tokens/index.scss +++ b/examples/salesforce/tokens/index.scss @@ -8,1062 +8,1062 @@ @use "sass:map"; $__token-values: ( - "palette.blue10": ( - default: (#001639), - ), - "palette.blue15": ( - default: (#03234d), - ), - "palette.blue20": ( - default: (#032d60), + "color.background": ( + default: (#f3f2f2), ), - "palette.blue30": ( - default: (#014486), + "color.backgroundActionbarIconUtility": ( + default: (#706e6b), ), - "palette.blue40": ( - default: (#0b5cab), + "color.backgroundAlt": ( + default: (#ffffff), ), - "palette.blue50": ( - default: (#0176d3), + "color.backgroundAlt2": ( + default: (#f3f2f2), ), - "palette.blue60": ( - default: (#1b96ff), + "color.backgroundAltInverse": ( + default: (#032d60), ), - "palette.blue65": ( - default: (#57a3fd), + "color.backgroundAnchor": ( + default: (#f3f2f2), ), - "palette.blue70": ( - default: (#78b0fd), + "color.backgroundBackdrop": ( + default: (#ffffffbf), ), - "palette.blue80": ( - default: (#aacbff), + "color.backgroundBackdropTint": ( + default: (#fafaf9), ), - "palette.blue90": ( - default: (#d8e6fe), + "color.backgroundBrowser": ( + default: (#706e6b), ), - "palette.blue95": ( - default: (#eef4ff), + "color.backgroundCustomer": ( + default: (#fe9339), ), - "palette.cloudBlue10": ( - default: (#001a28), + "color.backgroundDark": ( + default: (#ecebea), ), - "palette.cloudBlue15": ( - default: (#0a2636), + "color.backgroundDestructive": ( + default: (#ba0517), ), - "palette.cloudBlue20": ( - default: (#023248), + "color.backgroundDestructiveActive": ( + default: (#8e030f), ), - "palette.cloudBlue30": ( - default: (#084968), + "color.backgroundDestructiveHover": ( + default: (#ba0517), ), - "palette.cloudBlue40": ( - default: (#05628a), + "color.backgroundError": ( + default: (#fe5c4c), ), - "palette.cloudBlue50": ( - default: (#107cad), + "color.backgroundErrorDark": ( + default: (#ba0517), ), - "palette.cloudBlue60": ( - default: (#0d9dda), + "color.backgroundHighlight": ( + default: (#faffbd), ), - "palette.cloudBlue65": ( - default: (#08abed), + "color.backgroundHighlightSearch": ( + default: (#fff03f), ), - "palette.cloudBlue70": ( - default: (#1ab9ff), + "color.backgroundImageOverlay": ( + default: (#00000099), ), - "palette.cloudBlue80": ( - default: (#90d0fe), + "color.backgroundInfo": ( + default: (#706e6b), ), - "palette.cloudBlue90": ( - default: (#cfe9fe), + "color.backgroundInputCheckboxDisabled": ( + default: (#dddbda), ), - "palette.cloudBlue95": ( - default: (#eaf5fe), + "color.backgroundInputDisabled": ( + default: (#ecebea), ), - "palette.green10": ( - default: (#071b12), + "color.backgroundInverse": ( + default: (#001639), ), - "palette.green15": ( - default: (#0c2912), + "color.backgroundInverseLight": ( + default: (#032d60), ), - "palette.green20": ( - default: (#0e3522), + "color.backgroundLight": ( + default: (#ffffff), ), - "palette.green30": ( - default: (#194e31), + "color.backgroundNotificationNew": ( + default: (#f3f2f2), ), - "palette.green40": ( - default: (#22683e), + "color.backgroundOffline": ( + default: (#514f4d), ), - "palette.green50": ( - default: (#2e844a), + "color.backgroundPayload": ( + default: (#fafaf9), ), - "palette.green60": ( - default: (#3ba755), + "color.backgroundPost": ( + default: (#f3f2f2), ), - "palette.green65": ( - default: (#41b658), + "color.backgroundPrimary": ( + default: (#f3f2f2), ), - "palette.green70": ( - default: (#45c65a), + "color.backgroundRowActive": ( + default: (#ecebea), ), - "palette.green80": ( - default: (#91db8b), + "color.backgroundRowHover": ( + default: (#f3f2f2), ), - "palette.green90": ( + "color.backgroundRowNew": ( default: (#cdefc4), ), - "palette.green95": ( - default: (#ebf7e6), - ), - "palette.hotOrange10": ( - default: (#281202), - ), - "palette.hotOrange15": ( - default: (#421604), - ), - "palette.hotOrange20": ( - default: (#541d01), - ), - "palette.hotOrange30": ( - default: (#7e2600), - ), - "palette.hotOrange40": ( - default: (#aa3001), - ), - "palette.hotOrange50": ( - default: (#d83a00), + "color.backgroundRowSelected": ( + default: (#ecebea), ), - "palette.hotOrange60": ( - default: (#ff5d2d), + "color.backgroundScrollbar": ( + default: (#ecebea), ), - "palette.hotOrange65": ( - default: (#ff784f), + "color.backgroundScrollbarTrack": ( + default: (#c9c7c5), ), - "palette.hotOrange70": ( - default: (#ff906e), + "color.backgroundSecondary": ( + default: (#ffffff), ), - "palette.hotOrange80": ( - default: (#feb9a5), + "color.backgroundSelection": ( + default: (#d8e6fe), ), - "palette.hotOrange90": ( - default: (#ffded5), + "color.backgroundShade": ( + default: (#ecebea), ), - "palette.hotOrange95": ( - default: (#fef1ed), + "color.backgroundShadeDark": ( + default: (#dddbda), ), - "palette.indigo10": ( - default: (#200647), + "color.backgroundSpinnerDot": ( + default: (#b0adab), ), - "palette.indigo15": ( - default: (#1f0974), + "color.backgroundStencil": ( + default: (#f3f2f2), ), - "palette.indigo20": ( - default: (#260f8f), + "color.backgroundStencilAlt": ( + default: (#ecebea), ), - "palette.indigo30": ( - default: (#2f2cb7), + "color.backgroundSuccess": ( + default: (#45c65a), ), - "palette.indigo40": ( - default: (#3a49da), + "color.backgroundSuccessDark": ( + default: (#2e844a), ), - "palette.indigo50": ( - default: (#5867e8), + "color.backgroundSuccessDarker": ( + default: (#194e31), ), - "palette.indigo60": ( - default: (#7f8ced), + "color.backgroundTempModal": ( + default: (#969492), ), - "palette.indigo65": ( - default: (#8e9bef), + "color.backgroundTempModalTint": ( + default: (#08070799), ), - "palette.indigo70": ( - default: (#9ea9f1), + "color.backgroundToast": ( + default: (#706e6b), ), - "palette.indigo80": ( - default: (#bec7f6), + "color.backgroundToggle": ( + default: (#b0adab), ), - "palette.indigo90": ( - default: (#e0e5f8), + "color.backgroundToggleDisabled": ( + default: (#b0adab), ), - "palette.indigo95": ( - default: (#f1f3fb), + "color.backgroundToggleHover": ( + default: (#969492), ), - "palette.neutral10": ( - default: (#181818), + "color.backgroundUtilityBarHover": ( + default: (#ecebea), ), - "palette.neutral20": ( - default: (#2e2e2e), + "color.backgroundWarning": ( + default: (#fe9339), ), - "palette.neutral30": ( - default: (#444444), + "color.backgroundWarningDark": ( + default: (#fe9339), ), - "palette.neutral40": ( - default: (#5c5c5c), + "color.border": ( + default: (#dddbda), ), - "palette.neutral50": ( - default: (#747474), + "color.borderBrand": ( + default: (#1b96ff), ), - "palette.neutral60": ( - default: (#939393), + "color.borderBrandDark": ( + default: (#014486), ), - "palette.neutral70": ( - default: (#aeaeae), + "color.borderButtonDefault": ( + default: (#dddbda), ), - "palette.neutral80": ( - default: (#c9c9c9), + "color.borderButtonFocusInverse": ( + default: (#ecebea), ), - "palette.neutral90": ( - default: (#e5e5e5), + "color.borderCustomer": ( + default: (#fe9339), ), - "palette.neutral95": ( - default: (#f3f3f3), + "color.borderDestructive": ( + default: (#ea001e), ), - "palette.neutral100": ( - default: (#ffffff), + "color.borderDestructiveActive": ( + default: (#8e030f), ), - "palette.orange10": ( - default: (#201600), + "color.borderDestructiveHover": ( + default: (#ba0517), ), - "palette.orange15": ( - default: (#371e03), + "color.borderError": ( + default: (#ea001e), ), - "palette.orange20": ( - default: (#3e2b02), + "color.borderErrorAlt": ( + default: (#fe8f7d), ), - "palette.orange30": ( - default: (#5f3e02), + "color.borderErrorDark": ( + default: (#fe8f7d), ), - "palette.orange40": ( - default: (#825101), + "color.borderInfo": ( + default: (#706e6b), ), - "palette.orange50": ( - default: (#a96404), + "color.borderInput": ( + default: (#dddbda), ), - "palette.orange60": ( - default: (#dd7a01), + "color.borderInputDisabled": ( + default: (#c9c7c5), ), - "palette.orange65": ( - default: (#f38303), + "color.borderInverse": ( + default: (#001639), ), - "palette.orange70": ( - default: (#fe9339), + "color.borderLinkFocusInverse": ( + default: (#ecebea), ), - "palette.orange80": ( - default: (#ffba90), + "color.borderOffline": ( + default: (#514f4d), ), - "palette.orange90": ( - default: (#fedfd0), + "color.borderPrimary": ( + default: (#dddbda), ), - "palette.orange95": ( - default: (#fff1ea), + "color.borderReminder": ( + default: (#ecebea), ), - "palette.pink10": ( - default: (#370114), + "color.borderRowSelected": ( + default: (#0176d3), ), - "palette.pink15": ( - default: (#4b0620), + "color.borderRowSelectedHover": ( + default: (#1b96ff), ), - "palette.pink20": ( - default: (#61022a), + "color.borderSelection": ( + default: (#0176d3), ), - "palette.pink30": ( - default: (#8a033e), + "color.borderSelectionActive": ( + default: (#fafaf9), ), - "palette.pink40": ( - default: (#b60554), + "color.borderSelectionHover": ( + default: (#1b96ff), ), - "palette.pink50": ( - default: (#e3066a), + "color.borderSeparator": ( + default: (#fafaf9), ), - "palette.pink60": ( - default: (#ff538a), + "color.borderSeparatorAlt": ( + default: (#dddbda), ), - "palette.pink65": ( - default: (#fe7298), + "color.borderSeparatorAlt2": ( + default: (#c9c7c5), ), - "palette.pink70": ( - default: (#fe8aa7), + "color.borderSeparatorInverse": ( + default: (#032d60), ), - "palette.pink80": ( - default: (#fdb6c5), + "color.borderSuccess": ( + default: (#91db8b), ), - "palette.pink90": ( - default: (#fddde3), + "color.borderSuccessDark": ( + default: (#2e844a), ), - "palette.pink95": ( - default: (#fef0f3), + "color.borderWarning": ( + default: (#fe9339), ), - "palette.purple10": ( - default: (#240643), + "color.brand": ( + default: (#1b96ff), ), - "palette.purple15": ( - default: (#300b60), + "color.brandDark": ( + default: (#0176d3), ), - "palette.purple20": ( - default: (#401075), + "color.brandDarker": ( + default: (#014486), ), - "palette.purple30": ( - default: (#5a1ba9), + "color.contrastPrimary": ( + default: (#f3f2f2), ), - "palette.purple40": ( - default: (#7526e3), + "color.contrastSecondary": ( + default: (#f3f2f2), ), - "palette.purple50": ( - default: (#9050e9), + "color.gray1": ( + default: (#ffffff), ), - "palette.purple60": ( - default: (#ad7bee), + "color.gray2": ( + default: (#fafaf9), ), - "palette.purple65": ( - default: (#b78def), + "color.gray3": ( + default: (#f3f2f2), ), - "palette.purple70": ( - default: (#c29ef1), + "color.gray4": ( + default: (#ecebea), ), - "palette.purple80": ( - default: (#d78ff5), + "color.gray5": ( + default: (#dddbda), ), - "palette.purple90": ( - default: (#ece1f9), + "color.gray6": ( + default: (#c9c7c5), ), - "palette.purple95": ( - default: (#f6f2fb), + "color.gray7": ( + default: (#b0adab), ), - "palette.red10": ( - default: (#300c01), + "color.gray8": ( + default: (#969492), ), - "palette.red15": ( - default: (#4a0c04), + "color.gray9": ( + default: (#706e6b), ), - "palette.red20": ( - default: (#640103), + "color.gray10": ( + default: (#514f4d), ), - "palette.red30": ( - default: (#8e030f), + "color.gray11": ( + default: (#3e3e3c), ), - "palette.red40": ( - default: (#ba0517), + "color.gray12": ( + default: (#2b2826), ), - "palette.red50": ( - default: (#ea001e), + "color.gray13": ( + default: (#080707), ), - "palette.red60": ( - default: (#fe5c4c), + "color.pickerSliderThumbColorBackground": ( + default: (#f3f2f2), ), - "palette.red65": ( - default: (#fe7765), + "color.strokeBrand": ( + default: (#0176d3), ), - "palette.red70": ( - default: (#fe8f7d), + "color.strokeBrandActive": ( + default: (#032d60), ), - "palette.red80": ( - default: (#feb8ab), + "color.strokeBrandHover": ( + default: (#0176d3), ), - "palette.red90": ( - default: (#feded8), + "color.strokeDisabled": ( + default: (#ecebea), ), - "palette.red95": ( - default: (#fef1ee), + "color.strokeHeaderButton": ( + default: (#b0adab), ), - "palette.teal10": ( - default: (#071b12), + "color.textActionLabel": ( + default: (#514f4d), ), - "palette.teal15": ( - default: (#072825), + "color.textActionLabelActive": ( + default: (#080707), ), - "palette.teal20": ( - default: (#023434), + "color.textBrand": ( + default: (#1b96ff), ), - "palette.teal30": ( - default: (#024d4c), + "color.textBrandPrimary": ( + default: (#ffffff), ), - "palette.teal40": ( - default: (#056764), + "color.textButtonDefaultDisabled": ( + default: (#dddbda), ), - "palette.teal50": ( - default: (#0b827c), + "color.textButtonDefaultHint": ( + default: (#b0adab), ), - "palette.teal60": ( - default: (#06a59a), + "color.textButtonInverse": ( + default: (#ecebea), ), - "palette.teal65": ( - default: (#03b4a7), + "color.textCustomer": ( + default: (#fe9339), ), - "palette.teal70": ( - default: (#01c3b3), + "color.textDefault": ( + default: (#080707), ), - "palette.teal80": ( - default: (#04e1cb), + "color.textDestructive": ( + default: (#ea001e), ), - "palette.teal90": ( - default: (#acf3e4), + "color.textDestructiveHover": ( + default: (#ba0517), ), - "palette.teal95": ( - default: (#def9f3), + "color.textError": ( + default: (#ea001e), ), - "palette.violet10": ( - default: (#2e0039), + "color.textIconDefault": ( + default: (#706e6b), ), - "palette.violet15": ( - default: (#3d0157), + "color.textIconDefaultDisabled": ( + default: (#dddbda), ), - "palette.violet20": ( - default: (#520066), + "color.textIconDefaultHint": ( + default: (#b0adab), ), - "palette.violet30": ( - default: (#730394), + "color.textIconDefaultHintBorderless": ( + default: (#ecebea), ), - "palette.violet40": ( - default: (#9602c7), + "color.textIconInverse": ( + default: (#ffffff), ), - "palette.violet50": ( - default: (#ba01ff), + "color.textIconInverseActive": ( + default: (#ffffff), ), - "palette.violet60": ( - default: (#cb65ff), + "color.textIconInverseHover": ( + default: (#ffffff), ), - "palette.violet65": ( - default: (#d17dfe), + "color.textIconUtility": ( + default: (#b0adab), ), - "palette.violet70": ( - default: (#d892fe), + "color.textInputDisabled": ( + default: (#514f4d), ), - "palette.violet80": ( - default: (#e5b9fe), + "color.textInputIcon": ( + default: (#b0adab), ), - "palette.violet90": ( - default: (#f2defe), + "color.textInverse": ( + default: (#ffffff), ), - "palette.violet95": ( - default: (#f9f0ff), + "color.textInverseActive": ( + default: (#1b96ff), ), - "palette.yellow10": ( - default: (#281202), + "color.textInverseHover": ( + default: (#b0adab), ), - "palette.yellow15": ( - default: (#2e2204), + "color.textInverseWeak": ( + default: (#b0adab), ), - "palette.yellow20": ( - default: (#4f2100), + "color.textLabel": ( + default: (#514f4d), ), - "palette.yellow30": ( - default: (#6f3400), + "color.textLink": ( + default: (#0176d3), ), - "palette.yellow40": ( - default: (#8c4b02), + "color.textLinkActive": ( + default: (#032d60), ), - "palette.yellow50": ( - default: (#a86403), + "color.textLinkDisabled": ( + default: (#032d60), ), - "palette.yellow60": ( - default: (#ca8501), + "color.textLinkFocus": ( + default: (#014486), ), - "palette.yellow65": ( - default: (#d79304), + "color.textLinkHover": ( + default: (#014486), ), - "palette.yellow70": ( - default: (#e4a201), + "color.textLinkInverse": ( + default: (#ffffff), ), - "palette.yellow80": ( - default: (#fcc003), + "color.textLinkInverseActive": ( + default: (#ffffff80), ), - "palette.yellow90": ( - default: (#f9e3b6), + "color.textLinkInverseDisabled": ( + default: (#ffffff26), ), - "palette.yellow95": ( - default: (#fbf3e0), + "color.textLinkInverseHover": ( + default: (#ffffffbf), ), - "color.background": ( - default: (#f3f2f2), + "color.textModalButton": ( + default: (#514f4d), ), - "color.backgroundActionbarIconUtility": ( + "color.textPlaceholder": ( default: (#706e6b), ), - "color.backgroundAlt": ( - default: (#ffffff), + "color.textPlaceholderInverse": ( + default: (#ecebea), ), - "color.backgroundAlt2": ( - default: (#f3f2f2), + "color.textRequired": ( + default: (#ea001e), ), - "color.backgroundAltInverse": ( - default: (#032d60), + "color.textSecondary": ( + default: (#514f4d), ), - "color.backgroundAnchor": ( - default: (#f3f2f2), + "color.textStageLeft": ( + default: (#ecebea), + ), + "color.textSuccess": ( + default: (#2e844a), ), - "color.backgroundBackdrop": ( - default: (#ffffffbf), + "color.textSuccessInverse": ( + default: (#45c65a), ), - "color.backgroundBackdropTint": ( - default: (#fafaf9), + "color.textTabLabel": ( + default: (#2b2826), ), - "color.backgroundBrowser": ( - default: (#706e6b), + "color.textTabLabelDisabled": ( + default: (#ecebea), ), - "color.backgroundCustomer": ( - default: (#fe9339), + "color.textTertiary": ( + default: (#969492), ), - "color.backgroundDark": ( + "color.textToast": ( default: (#ecebea), ), - "color.backgroundDestructive": ( - default: (#ba0517), + "color.textToggleDisabled": ( + default: (#dddbda), ), - "color.backgroundDestructiveActive": ( - default: (#8e030f), + "color.textWarning": ( + default: (#fe9339), ), - "color.backgroundDestructiveHover": ( - default: (#ba0517), + "color.textWarningAlt": ( + default: (#8c4b02), ), - "color.backgroundError": ( - default: (#fe5c4c), + "color.textWeak": ( + default: (#514f4d), ), - "color.backgroundErrorDark": ( - default: (#ba0517), + "font.family.base": ( + default: (-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"), ), - "color.backgroundHighlight": ( - default: (#faffbd), + "font.family.heading": ( + default: (-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"), ), - "color.backgroundHighlightSearch": ( - default: (#fff03f), + "font.family.mono": ( + default: (Consolas, Menlo, Monaco, Courier, monospace), ), - "color.backgroundImageOverlay": ( - default: (#00000099), + "font.lineHeight.heading": ( + default: (1.25em), ), - "color.backgroundInfo": ( - default: (#706e6b), + "font.lineHeight.reset": ( + default: (1em), ), - "color.backgroundInputCheckboxDisabled": ( - default: (#dddbda), + "font.lineHeight.text": ( + default: (1.5em), ), - "color.backgroundInputDisabled": ( - default: (#ecebea), + "font.size.1": ( + default: (0.625rem), ), - "color.backgroundInverse": ( - default: (#001639), + "font.size.2": ( + default: (0.75rem), ), - "color.backgroundInverseLight": ( - default: (#032d60), + "font.size.3": ( + default: (0.8125rem), ), - "color.backgroundLight": ( - default: (#ffffff), + "font.size.4": ( + default: (0.875rem), ), - "color.backgroundNotificationNew": ( - default: (#f3f2f2), + "font.size.5": ( + default: (1rem), ), - "color.backgroundOffline": ( - default: (#514f4d), + "font.size.6": ( + default: (1.125rem), ), - "color.backgroundPayload": ( - default: (#fafaf9), + "font.size.7": ( + default: (1.25rem), ), - "color.backgroundPost": ( - default: (#f3f2f2), + "font.size.8": ( + default: (1.5rem), ), - "color.backgroundPrimary": ( - default: (#f3f2f2), + "font.size.9": ( + default: (1.75rem), ), - "color.backgroundRowActive": ( - default: (#ecebea), + "font.size.10": ( + default: (2rem), ), - "color.backgroundRowHover": ( - default: (#f3f2f2), + "font.size.11": ( + default: (2.625rem), ), - "color.backgroundRowNew": ( - default: (#cdefc4), + "icon.size.large": ( + default: (25rem), ), - "color.backgroundRowSelected": ( - default: (#ecebea), + "icon.size.medium": ( + default: (20rem), ), - "color.backgroundScrollbar": ( - default: (#ecebea), + "icon.size.small": ( + default: (15rem), ), - "color.backgroundScrollbarTrack": ( - default: (#c9c7c5), + "icon.size.xLarge": ( + default: (40rem), ), - "color.backgroundSecondary": ( - default: (#ffffff), + "icon.size.xSmall": ( + default: (12rem), ), - "color.backgroundSelection": ( - default: (#d8e6fe), + "icon.size.xxLarge": ( + default: (60rem), ), - "color.backgroundShade": ( - default: (#ecebea), + "icon.size.xxSmall": ( + default: (6rem), ), - "color.backgroundShadeDark": ( - default: (#dddbda), + "icon.size.xxxSmall": ( + default: (3rem), ), - "color.backgroundSpinnerDot": ( - default: (#b0adab), + "palette.blue10": ( + default: (#001639), ), - "color.backgroundStencil": ( - default: (#f3f2f2), + "palette.blue15": ( + default: (#03234d), ), - "color.backgroundStencilAlt": ( - default: (#ecebea), + "palette.blue20": ( + default: (#032d60), ), - "color.backgroundSuccess": ( - default: (#45c65a), + "palette.blue30": ( + default: (#014486), ), - "color.backgroundSuccessDark": ( - default: (#2e844a), + "palette.blue40": ( + default: (#0b5cab), ), - "color.backgroundSuccessDarker": ( - default: (#194e31), + "palette.blue50": ( + default: (#0176d3), ), - "color.backgroundTempModal": ( - default: (#969492), + "palette.blue60": ( + default: (#1b96ff), ), - "color.backgroundTempModalTint": ( - default: (#08070799), + "palette.blue65": ( + default: (#57a3fd), ), - "color.backgroundToast": ( - default: (#706e6b), + "palette.blue70": ( + default: (#78b0fd), ), - "color.backgroundToggle": ( - default: (#b0adab), + "palette.blue80": ( + default: (#aacbff), ), - "color.backgroundToggleDisabled": ( - default: (#b0adab), + "palette.blue90": ( + default: (#d8e6fe), ), - "color.backgroundToggleHover": ( - default: (#969492), + "palette.blue95": ( + default: (#eef4ff), ), - "color.backgroundUtilityBarHover": ( - default: (#ecebea), + "palette.cloudBlue10": ( + default: (#001a28), ), - "color.backgroundWarning": ( - default: (#fe9339), + "palette.cloudBlue15": ( + default: (#0a2636), ), - "color.backgroundWarningDark": ( - default: (#fe9339), + "palette.cloudBlue20": ( + default: (#023248), ), - "color.border": ( - default: (#dddbda), + "palette.cloudBlue30": ( + default: (#084968), ), - "color.borderBrand": ( - default: (#1b96ff), + "palette.cloudBlue40": ( + default: (#05628a), ), - "color.borderBrandDark": ( - default: (#014486), + "palette.cloudBlue50": ( + default: (#107cad), ), - "color.borderButtonDefault": ( - default: (#dddbda), + "palette.cloudBlue60": ( + default: (#0d9dda), ), - "color.borderButtonFocusInverse": ( - default: (#ecebea), + "palette.cloudBlue65": ( + default: (#08abed), ), - "color.borderCustomer": ( - default: (#fe9339), + "palette.cloudBlue70": ( + default: (#1ab9ff), ), - "color.borderDestructive": ( - default: (#ea001e), + "palette.cloudBlue80": ( + default: (#90d0fe), ), - "color.borderDestructiveActive": ( - default: (#8e030f), + "palette.cloudBlue90": ( + default: (#cfe9fe), ), - "color.borderDestructiveHover": ( - default: (#ba0517), + "palette.cloudBlue95": ( + default: (#eaf5fe), ), - "color.borderError": ( - default: (#ea001e), + "palette.green10": ( + default: (#071b12), ), - "color.borderErrorAlt": ( - default: (#fe8f7d), + "palette.green15": ( + default: (#0c2912), ), - "color.borderErrorDark": ( - default: (#fe8f7d), + "palette.green20": ( + default: (#0e3522), ), - "color.borderInfo": ( - default: (#706e6b), + "palette.green30": ( + default: (#194e31), ), - "color.borderInput": ( - default: (#dddbda), + "palette.green40": ( + default: (#22683e), ), - "color.borderInputDisabled": ( - default: (#c9c7c5), + "palette.green50": ( + default: (#2e844a), + ), + "palette.green60": ( + default: (#3ba755), ), - "color.borderInverse": ( - default: (#001639), + "palette.green65": ( + default: (#41b658), ), - "color.borderLinkFocusInverse": ( - default: (#ecebea), + "palette.green70": ( + default: (#45c65a), ), - "color.borderOffline": ( - default: (#514f4d), + "palette.green80": ( + default: (#91db8b), ), - "color.borderPrimary": ( - default: (#dddbda), + "palette.green90": ( + default: (#cdefc4), ), - "color.borderReminder": ( - default: (#ecebea), + "palette.green95": ( + default: (#ebf7e6), ), - "color.borderRowSelected": ( - default: (#0176d3), + "palette.hotOrange10": ( + default: (#281202), ), - "color.borderRowSelectedHover": ( - default: (#1b96ff), + "palette.hotOrange15": ( + default: (#421604), ), - "color.borderSelection": ( - default: (#0176d3), + "palette.hotOrange20": ( + default: (#541d01), ), - "color.borderSelectionActive": ( - default: (#fafaf9), + "palette.hotOrange30": ( + default: (#7e2600), ), - "color.borderSelectionHover": ( - default: (#1b96ff), + "palette.hotOrange40": ( + default: (#aa3001), ), - "color.borderSeparator": ( - default: (#fafaf9), + "palette.hotOrange50": ( + default: (#d83a00), ), - "color.borderSeparatorAlt": ( - default: (#dddbda), + "palette.hotOrange60": ( + default: (#ff5d2d), ), - "color.borderSeparatorAlt2": ( - default: (#c9c7c5), + "palette.hotOrange65": ( + default: (#ff784f), ), - "color.borderSeparatorInverse": ( - default: (#032d60), + "palette.hotOrange70": ( + default: (#ff906e), ), - "color.borderSuccess": ( - default: (#91db8b), + "palette.hotOrange80": ( + default: (#feb9a5), ), - "color.borderSuccessDark": ( - default: (#2e844a), + "palette.hotOrange90": ( + default: (#ffded5), ), - "color.borderWarning": ( - default: (#fe9339), + "palette.hotOrange95": ( + default: (#fef1ed), ), - "color.brand": ( - default: (#1b96ff), + "palette.indigo10": ( + default: (#200647), ), - "color.brandDark": ( - default: (#0176d3), + "palette.indigo15": ( + default: (#1f0974), ), - "color.brandDarker": ( - default: (#014486), + "palette.indigo20": ( + default: (#260f8f), ), - "color.contrastPrimary": ( - default: (#f3f2f2), + "palette.indigo30": ( + default: (#2f2cb7), ), - "color.contrastSecondary": ( - default: (#f3f2f2), + "palette.indigo40": ( + default: (#3a49da), ), - "color.gray1": ( - default: (#ffffff), + "palette.indigo50": ( + default: (#5867e8), ), - "color.gray2": ( - default: (#fafaf9), + "palette.indigo60": ( + default: (#7f8ced), ), - "color.gray3": ( - default: (#f3f2f2), + "palette.indigo65": ( + default: (#8e9bef), ), - "color.gray4": ( - default: (#ecebea), + "palette.indigo70": ( + default: (#9ea9f1), ), - "color.gray5": ( - default: (#dddbda), + "palette.indigo80": ( + default: (#bec7f6), ), - "color.gray6": ( - default: (#c9c7c5), + "palette.indigo90": ( + default: (#e0e5f8), ), - "color.gray7": ( - default: (#b0adab), + "palette.indigo95": ( + default: (#f1f3fb), ), - "color.gray8": ( - default: (#969492), + "palette.neutral10": ( + default: (#181818), ), - "color.gray9": ( - default: (#706e6b), + "palette.neutral20": ( + default: (#2e2e2e), ), - "color.gray10": ( - default: (#514f4d), + "palette.neutral30": ( + default: (#444444), ), - "color.gray11": ( - default: (#3e3e3c), + "palette.neutral40": ( + default: (#5c5c5c), ), - "color.gray12": ( - default: (#2b2826), + "palette.neutral50": ( + default: (#747474), ), - "color.gray13": ( - default: (#080707), + "palette.neutral60": ( + default: (#939393), ), - "color.pickerSliderThumbColorBackground": ( - default: (#f3f2f2), + "palette.neutral70": ( + default: (#aeaeae), ), - "color.strokeBrand": ( - default: (#0176d3), + "palette.neutral80": ( + default: (#c9c9c9), ), - "color.strokeBrandActive": ( - default: (#032d60), + "palette.neutral90": ( + default: (#e5e5e5), ), - "color.strokeBrandHover": ( - default: (#0176d3), + "palette.neutral95": ( + default: (#f3f3f3), ), - "color.strokeDisabled": ( - default: (#ecebea), + "palette.neutral100": ( + default: (#ffffff), ), - "color.strokeHeaderButton": ( - default: (#b0adab), + "palette.orange10": ( + default: (#201600), ), - "color.textActionLabel": ( - default: (#514f4d), + "palette.orange15": ( + default: (#371e03), ), - "color.textActionLabelActive": ( - default: (#080707), + "palette.orange20": ( + default: (#3e2b02), ), - "color.textBrand": ( - default: (#1b96ff), + "palette.orange30": ( + default: (#5f3e02), ), - "color.textBrandPrimary": ( - default: (#ffffff), + "palette.orange40": ( + default: (#825101), ), - "color.textButtonDefaultDisabled": ( - default: (#dddbda), + "palette.orange50": ( + default: (#a96404), ), - "color.textButtonDefaultHint": ( - default: (#b0adab), + "palette.orange60": ( + default: (#dd7a01), ), - "color.textButtonInverse": ( - default: (#ecebea), + "palette.orange65": ( + default: (#f38303), ), - "color.textCustomer": ( + "palette.orange70": ( default: (#fe9339), ), - "color.textDefault": ( - default: (#080707), + "palette.orange80": ( + default: (#ffba90), ), - "color.textDestructive": ( - default: (#ea001e), + "palette.orange90": ( + default: (#fedfd0), ), - "color.textDestructiveHover": ( - default: (#ba0517), + "palette.orange95": ( + default: (#fff1ea), ), - "color.textError": ( - default: (#ea001e), + "palette.pink10": ( + default: (#370114), ), - "color.textIconDefault": ( - default: (#706e6b), + "palette.pink15": ( + default: (#4b0620), ), - "color.textIconDefaultDisabled": ( - default: (#dddbda), + "palette.pink20": ( + default: (#61022a), ), - "color.textIconDefaultHint": ( - default: (#b0adab), + "palette.pink30": ( + default: (#8a033e), ), - "color.textIconDefaultHintBorderless": ( - default: (#ecebea), + "palette.pink40": ( + default: (#b60554), ), - "color.textIconInverse": ( - default: (#ffffff), + "palette.pink50": ( + default: (#e3066a), ), - "color.textIconInverseActive": ( - default: (#ffffff), + "palette.pink60": ( + default: (#ff538a), ), - "color.textIconInverseHover": ( - default: (#ffffff), + "palette.pink65": ( + default: (#fe7298), ), - "color.textIconUtility": ( - default: (#b0adab), + "palette.pink70": ( + default: (#fe8aa7), ), - "color.textInputDisabled": ( - default: (#514f4d), + "palette.pink80": ( + default: (#fdb6c5), ), - "color.textInputIcon": ( - default: (#b0adab), + "palette.pink90": ( + default: (#fddde3), ), - "color.textInverse": ( - default: (#ffffff), + "palette.pink95": ( + default: (#fef0f3), ), - "color.textInverseActive": ( - default: (#1b96ff), + "palette.purple10": ( + default: (#240643), ), - "color.textInverseHover": ( - default: (#b0adab), + "palette.purple15": ( + default: (#300b60), ), - "color.textInverseWeak": ( - default: (#b0adab), + "palette.purple20": ( + default: (#401075), ), - "color.textLabel": ( - default: (#514f4d), + "palette.purple30": ( + default: (#5a1ba9), ), - "color.textLink": ( - default: (#0176d3), + "palette.purple40": ( + default: (#7526e3), ), - "color.textLinkActive": ( - default: (#032d60), + "palette.purple50": ( + default: (#9050e9), ), - "color.textLinkDisabled": ( - default: (#032d60), + "palette.purple60": ( + default: (#ad7bee), ), - "color.textLinkFocus": ( - default: (#014486), + "palette.purple65": ( + default: (#b78def), ), - "color.textLinkHover": ( - default: (#014486), + "palette.purple70": ( + default: (#c29ef1), ), - "color.textLinkInverse": ( - default: (#ffffff), + "palette.purple80": ( + default: (#d78ff5), ), - "color.textLinkInverseActive": ( - default: (#ffffff80), + "palette.purple90": ( + default: (#ece1f9), ), - "color.textLinkInverseDisabled": ( - default: (#ffffff26), + "palette.purple95": ( + default: (#f6f2fb), ), - "color.textLinkInverseHover": ( - default: (#ffffffbf), + "palette.red10": ( + default: (#300c01), ), - "color.textModalButton": ( - default: (#514f4d), + "palette.red15": ( + default: (#4a0c04), ), - "color.textPlaceholder": ( - default: (#706e6b), + "palette.red20": ( + default: (#640103), ), - "color.textPlaceholderInverse": ( - default: (#ecebea), + "palette.red30": ( + default: (#8e030f), ), - "color.textRequired": ( + "palette.red40": ( + default: (#ba0517), + ), + "palette.red50": ( default: (#ea001e), ), - "color.textSecondary": ( - default: (#514f4d), + "palette.red60": ( + default: (#fe5c4c), ), - "color.textStageLeft": ( - default: (#ecebea), + "palette.red65": ( + default: (#fe7765), ), - "color.textSuccess": ( - default: (#2e844a), + "palette.red70": ( + default: (#fe8f7d), ), - "color.textSuccessInverse": ( - default: (#45c65a), + "palette.red80": ( + default: (#feb8ab), ), - "color.textTabLabel": ( - default: (#2b2826), + "palette.red90": ( + default: (#feded8), ), - "color.textTabLabelDisabled": ( - default: (#ecebea), + "palette.red95": ( + default: (#fef1ee), ), - "color.textTertiary": ( - default: (#969492), + "palette.teal10": ( + default: (#071b12), ), - "color.textToast": ( - default: (#ecebea), + "palette.teal15": ( + default: (#072825), ), - "color.textToggleDisabled": ( - default: (#dddbda), + "palette.teal20": ( + default: (#023434), ), - "color.textWarning": ( - default: (#fe9339), + "palette.teal30": ( + default: (#024d4c), ), - "color.textWarningAlt": ( - default: (#8c4b02), + "palette.teal40": ( + default: (#056764), ), - "color.textWeak": ( - default: (#514f4d), + "palette.teal50": ( + default: (#0b827c), ), - "icon.size.xxxSmall": ( - default: (3rem), + "palette.teal60": ( + default: (#06a59a), ), - "icon.size.xxSmall": ( - default: (6rem), + "palette.teal65": ( + default: (#03b4a7), ), - "icon.size.xSmall": ( - default: (12rem), + "palette.teal70": ( + default: (#01c3b3), ), - "icon.size.small": ( - default: (15rem), + "palette.teal80": ( + default: (#04e1cb), ), - "icon.size.medium": ( - default: (20rem), + "palette.teal90": ( + default: (#acf3e4), ), - "icon.size.large": ( - default: (25rem), + "palette.teal95": ( + default: (#def9f3), ), - "icon.size.xLarge": ( - default: (40rem), + "palette.violet10": ( + default: (#2e0039), ), - "icon.size.xxLarge": ( - default: (60rem), + "palette.violet15": ( + default: (#3d0157), ), - "font.family.base": ( - default: (-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"), + "palette.violet20": ( + default: (#520066), ), - "font.family.heading": ( - default: (-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"), + "palette.violet30": ( + default: (#730394), ), - "font.family.mono": ( - default: (Consolas, Menlo, Monaco, Courier, monospace), + "palette.violet40": ( + default: (#9602c7), ), - "font.size.1": ( - default: (0.625rem), + "palette.violet50": ( + default: (#ba01ff), ), - "font.size.2": ( - default: (0.75rem), + "palette.violet60": ( + default: (#cb65ff), ), - "font.size.3": ( - default: (0.8125rem), + "palette.violet65": ( + default: (#d17dfe), ), - "font.size.4": ( - default: (0.875rem), + "palette.violet70": ( + default: (#d892fe), ), - "font.size.5": ( - default: (1rem), + "palette.violet80": ( + default: (#e5b9fe), ), - "font.size.6": ( - default: (1.125rem), + "palette.violet90": ( + default: (#f2defe), ), - "font.size.7": ( - default: (1.25rem), + "palette.violet95": ( + default: (#f9f0ff), ), - "font.size.8": ( - default: (1.5rem), + "palette.yellow10": ( + default: (#281202), ), - "font.size.9": ( - default: (1.75rem), + "palette.yellow15": ( + default: (#2e2204), ), - "font.size.10": ( - default: (2rem), + "palette.yellow20": ( + default: (#4f2100), ), - "font.size.11": ( - default: (2.625rem), + "palette.yellow30": ( + default: (#6f3400), ), - "font.lineHeight.heading": ( - default: (1.25em), + "palette.yellow40": ( + default: (#8c4b02), ), - "font.lineHeight.text": ( - default: (1.5em), + "palette.yellow50": ( + default: (#a86403), ), - "font.lineHeight.reset": ( - default: (1em), + "palette.yellow60": ( + default: (#ca8501), ), - "space.none": ( - default: (0), + "palette.yellow65": ( + default: (#d79304), ), - "space.xxxSmall": ( - default: (0.125rem), + "palette.yellow70": ( + default: (#e4a201), ), - "space.xxSmall": ( - default: (0.25rem), + "palette.yellow80": ( + default: (#fcc003), ), - "space.xSmall": ( - default: (0.5rem), + "palette.yellow90": ( + default: (#f9e3b6), ), - "space.small": ( - default: (0.75rem), + "palette.yellow95": ( + default: (#fbf3e0), + ), + "space.large": ( + default: (1.5rem), ), "space.medium": ( default: (1rem), ), - "space.large": ( - default: (1.5rem), + "space.none": ( + default: (0), + ), + "space.small": ( + default: (0.75rem), ), "space.xLarge": ( default: (2rem), ), + "space.xSmall": ( + default: (0.5rem), + ), "space.xxLarge": ( default: (3rem), ), + "space.xxSmall": ( + default: (0.25rem), + ), + "space.xxxSmall": ( + default: (0.125rem), + ), ); $__token-typography-mixins: ( diff --git a/examples/salesforce/tokens/tokens.css b/examples/salesforce/tokens/tokens.css index 019f28da..79e7ed4b 100644 --- a/examples/salesforce/tokens/tokens.css +++ b/examples/salesforce/tokens/tokens.css @@ -5,161 +5,6 @@ */ :root { - --palette-blue10: #001639; - --palette-blue15: #03234d; - --palette-blue20: #032d60; - --palette-blue30: #014486; - --palette-blue40: #0b5cab; - --palette-blue50: #0176d3; - --palette-blue60: #1b96ff; - --palette-blue65: #57a3fd; - --palette-blue70: #78b0fd; - --palette-blue80: #aacbff; - --palette-blue90: #d8e6fe; - --palette-blue95: #eef4ff; - --palette-cloudBlue10: #001a28; - --palette-cloudBlue15: #0a2636; - --palette-cloudBlue20: #023248; - --palette-cloudBlue30: #084968; - --palette-cloudBlue40: #05628a; - --palette-cloudBlue50: #107cad; - --palette-cloudBlue60: #0d9dda; - --palette-cloudBlue65: #08abed; - --palette-cloudBlue70: #1ab9ff; - --palette-cloudBlue80: #90d0fe; - --palette-cloudBlue90: #cfe9fe; - --palette-cloudBlue95: #eaf5fe; - --palette-green10: #071b12; - --palette-green15: #0c2912; - --palette-green20: #0e3522; - --palette-green30: #194e31; - --palette-green40: #22683e; - --palette-green50: #2e844a; - --palette-green60: #3ba755; - --palette-green65: #41b658; - --palette-green70: #45c65a; - --palette-green80: #91db8b; - --palette-green90: #cdefc4; - --palette-green95: #ebf7e6; - --palette-hotOrange10: #281202; - --palette-hotOrange15: #421604; - --palette-hotOrange20: #541d01; - --palette-hotOrange30: #7e2600; - --palette-hotOrange40: #aa3001; - --palette-hotOrange50: #d83a00; - --palette-hotOrange60: #ff5d2d; - --palette-hotOrange65: #ff784f; - --palette-hotOrange70: #ff906e; - --palette-hotOrange80: #feb9a5; - --palette-hotOrange90: #ffded5; - --palette-hotOrange95: #fef1ed; - --palette-indigo10: #200647; - --palette-indigo15: #1f0974; - --palette-indigo20: #260f8f; - --palette-indigo30: #2f2cb7; - --palette-indigo40: #3a49da; - --palette-indigo50: #5867e8; - --palette-indigo60: #7f8ced; - --palette-indigo65: #8e9bef; - --palette-indigo70: #9ea9f1; - --palette-indigo80: #bec7f6; - --palette-indigo90: #e0e5f8; - --palette-indigo95: #f1f3fb; - --palette-neutral10: #181818; - --palette-neutral20: #2e2e2e; - --palette-neutral30: #444444; - --palette-neutral40: #5c5c5c; - --palette-neutral50: #747474; - --palette-neutral60: #939393; - --palette-neutral70: #aeaeae; - --palette-neutral80: #c9c9c9; - --palette-neutral90: #e5e5e5; - --palette-neutral95: #f3f3f3; - --palette-neutral100: #ffffff; - --palette-orange10: #201600; - --palette-orange15: #371e03; - --palette-orange20: #3e2b02; - --palette-orange30: #5f3e02; - --palette-orange40: #825101; - --palette-orange50: #a96404; - --palette-orange60: #dd7a01; - --palette-orange65: #f38303; - --palette-orange70: #fe9339; - --palette-orange80: #ffba90; - --palette-orange90: #fedfd0; - --palette-orange95: #fff1ea; - --palette-pink10: #370114; - --palette-pink15: #4b0620; - --palette-pink20: #61022a; - --palette-pink30: #8a033e; - --palette-pink40: #b60554; - --palette-pink50: #e3066a; - --palette-pink60: #ff538a; - --palette-pink65: #fe7298; - --palette-pink70: #fe8aa7; - --palette-pink80: #fdb6c5; - --palette-pink90: #fddde3; - --palette-pink95: #fef0f3; - --palette-purple10: #240643; - --palette-purple15: #300b60; - --palette-purple20: #401075; - --palette-purple30: #5a1ba9; - --palette-purple40: #7526e3; - --palette-purple50: #9050e9; - --palette-purple60: #ad7bee; - --palette-purple65: #b78def; - --palette-purple70: #c29ef1; - --palette-purple80: #d78ff5; - --palette-purple90: #ece1f9; - --palette-purple95: #f6f2fb; - --palette-red10: #300c01; - --palette-red15: #4a0c04; - --palette-red20: #640103; - --palette-red30: #8e030f; - --palette-red40: #ba0517; - --palette-red50: #ea001e; - --palette-red60: #fe5c4c; - --palette-red65: #fe7765; - --palette-red70: #fe8f7d; - --palette-red80: #feb8ab; - --palette-red90: #feded8; - --palette-red95: #fef1ee; - --palette-teal10: #071b12; - --palette-teal15: #072825; - --palette-teal20: #023434; - --palette-teal30: #024d4c; - --palette-teal40: #056764; - --palette-teal50: #0b827c; - --palette-teal60: #06a59a; - --palette-teal65: #03b4a7; - --palette-teal70: #01c3b3; - --palette-teal80: #04e1cb; - --palette-teal90: #acf3e4; - --palette-teal95: #def9f3; - --palette-violet10: #2e0039; - --palette-violet15: #3d0157; - --palette-violet20: #520066; - --palette-violet30: #730394; - --palette-violet40: #9602c7; - --palette-violet50: #ba01ff; - --palette-violet60: #cb65ff; - --palette-violet65: #d17dfe; - --palette-violet70: #d892fe; - --palette-violet80: #e5b9fe; - --palette-violet90: #f2defe; - --palette-violet95: #f9f0ff; - --palette-yellow10: #281202; - --palette-yellow15: #2e2204; - --palette-yellow20: #4f2100; - --palette-yellow30: #6f3400; - --palette-yellow40: #8c4b02; - --palette-yellow50: #a86403; - --palette-yellow60: #ca8501; - --palette-yellow65: #d79304; - --palette-yellow70: #e4a201; - --palette-yellow80: #fcc003; - --palette-yellow90: #f9e3b6; - --palette-yellow95: #fbf3e0; --color-background: var(--color-gray3); --color-backgroundActionbarIconUtility: var(--color-gray9); --color-backgroundAlt: var(--palette-neutral100); @@ -323,17 +168,12 @@ --color-textWarning: var(--palette-orange70); --color-textWarningAlt: #8c4b02; --color-textWeak: var(--color-gray10); - --icon-size-xxxSmall: 3rem; - --icon-size-xxSmall: 6rem; - --icon-size-xSmall: 12rem; - --icon-size-small: 15rem; - --icon-size-medium: 20rem; - --icon-size-large: 25rem; - --icon-size-xLarge: 40rem; - --icon-size-xxLarge: 60rem; --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; --font-family-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; --font-family-mono: Consolas, Menlo, Monaco, Courier, monospace; + --font-lineHeight-heading: 1.25em; + --font-lineHeight-reset: 1em; + --font-lineHeight-text: 1.5em; --font-size-1: 0.625rem; --font-size-2: 0.75rem; --font-size-3: 0.8125rem; @@ -345,208 +185,368 @@ --font-size-9: 1.75rem; --font-size-10: 2rem; --font-size-11: 2.625rem; - --font-lineHeight-heading: 1.25em; - --font-lineHeight-text: 1.5em; - --font-lineHeight-reset: 1em; + --icon-size-large: 25rem; + --icon-size-medium: 20rem; + --icon-size-small: 15rem; + --icon-size-xLarge: 40rem; + --icon-size-xSmall: 12rem; + --icon-size-xxLarge: 60rem; + --icon-size-xxSmall: 6rem; + --icon-size-xxxSmall: 3rem; + --palette-blue10: #001639; + --palette-blue15: #03234d; + --palette-blue20: #032d60; + --palette-blue30: #014486; + --palette-blue40: #0b5cab; + --palette-blue50: #0176d3; + --palette-blue60: #1b96ff; + --palette-blue65: #57a3fd; + --palette-blue70: #78b0fd; + --palette-blue80: #aacbff; + --palette-blue90: #d8e6fe; + --palette-blue95: #eef4ff; + --palette-cloudBlue10: #001a28; + --palette-cloudBlue15: #0a2636; + --palette-cloudBlue20: #023248; + --palette-cloudBlue30: #084968; + --palette-cloudBlue40: #05628a; + --palette-cloudBlue50: #107cad; + --palette-cloudBlue60: #0d9dda; + --palette-cloudBlue65: #08abed; + --palette-cloudBlue70: #1ab9ff; + --palette-cloudBlue80: #90d0fe; + --palette-cloudBlue90: #cfe9fe; + --palette-cloudBlue95: #eaf5fe; + --palette-green10: #071b12; + --palette-green15: #0c2912; + --palette-green20: #0e3522; + --palette-green30: #194e31; + --palette-green40: #22683e; + --palette-green50: #2e844a; + --palette-green60: #3ba755; + --palette-green65: #41b658; + --palette-green70: #45c65a; + --palette-green80: #91db8b; + --palette-green90: #cdefc4; + --palette-green95: #ebf7e6; + --palette-hotOrange10: #281202; + --palette-hotOrange15: #421604; + --palette-hotOrange20: #541d01; + --palette-hotOrange30: #7e2600; + --palette-hotOrange40: #aa3001; + --palette-hotOrange50: #d83a00; + --palette-hotOrange60: #ff5d2d; + --palette-hotOrange65: #ff784f; + --palette-hotOrange70: #ff906e; + --palette-hotOrange80: #feb9a5; + --palette-hotOrange90: #ffded5; + --palette-hotOrange95: #fef1ed; + --palette-indigo10: #200647; + --palette-indigo15: #1f0974; + --palette-indigo20: #260f8f; + --palette-indigo30: #2f2cb7; + --palette-indigo40: #3a49da; + --palette-indigo50: #5867e8; + --palette-indigo60: #7f8ced; + --palette-indigo65: #8e9bef; + --palette-indigo70: #9ea9f1; + --palette-indigo80: #bec7f6; + --palette-indigo90: #e0e5f8; + --palette-indigo95: #f1f3fb; + --palette-neutral10: #181818; + --palette-neutral20: #2e2e2e; + --palette-neutral30: #444444; + --palette-neutral40: #5c5c5c; + --palette-neutral50: #747474; + --palette-neutral60: #939393; + --palette-neutral70: #aeaeae; + --palette-neutral80: #c9c9c9; + --palette-neutral90: #e5e5e5; + --palette-neutral95: #f3f3f3; + --palette-neutral100: #ffffff; + --palette-orange10: #201600; + --palette-orange15: #371e03; + --palette-orange20: #3e2b02; + --palette-orange30: #5f3e02; + --palette-orange40: #825101; + --palette-orange50: #a96404; + --palette-orange60: #dd7a01; + --palette-orange65: #f38303; + --palette-orange70: #fe9339; + --palette-orange80: #ffba90; + --palette-orange90: #fedfd0; + --palette-orange95: #fff1ea; + --palette-pink10: #370114; + --palette-pink15: #4b0620; + --palette-pink20: #61022a; + --palette-pink30: #8a033e; + --palette-pink40: #b60554; + --palette-pink50: #e3066a; + --palette-pink60: #ff538a; + --palette-pink65: #fe7298; + --palette-pink70: #fe8aa7; + --palette-pink80: #fdb6c5; + --palette-pink90: #fddde3; + --palette-pink95: #fef0f3; + --palette-purple10: #240643; + --palette-purple15: #300b60; + --palette-purple20: #401075; + --palette-purple30: #5a1ba9; + --palette-purple40: #7526e3; + --palette-purple50: #9050e9; + --palette-purple60: #ad7bee; + --palette-purple65: #b78def; + --palette-purple70: #c29ef1; + --palette-purple80: #d78ff5; + --palette-purple90: #ece1f9; + --palette-purple95: #f6f2fb; + --palette-red10: #300c01; + --palette-red15: #4a0c04; + --palette-red20: #640103; + --palette-red30: #8e030f; + --palette-red40: #ba0517; + --palette-red50: #ea001e; + --palette-red60: #fe5c4c; + --palette-red65: #fe7765; + --palette-red70: #fe8f7d; + --palette-red80: #feb8ab; + --palette-red90: #feded8; + --palette-red95: #fef1ee; + --palette-teal10: #071b12; + --palette-teal15: #072825; + --palette-teal20: #023434; + --palette-teal30: #024d4c; + --palette-teal40: #056764; + --palette-teal50: #0b827c; + --palette-teal60: #06a59a; + --palette-teal65: #03b4a7; + --palette-teal70: #01c3b3; + --palette-teal80: #04e1cb; + --palette-teal90: #acf3e4; + --palette-teal95: #def9f3; + --palette-violet10: #2e0039; + --palette-violet15: #3d0157; + --palette-violet20: #520066; + --palette-violet30: #730394; + --palette-violet40: #9602c7; + --palette-violet50: #ba01ff; + --palette-violet60: #cb65ff; + --palette-violet65: #d17dfe; + --palette-violet70: #d892fe; + --palette-violet80: #e5b9fe; + --palette-violet90: #f2defe; + --palette-violet95: #f9f0ff; + --palette-yellow10: #281202; + --palette-yellow15: #2e2204; + --palette-yellow20: #4f2100; + --palette-yellow30: #6f3400; + --palette-yellow40: #8c4b02; + --palette-yellow50: #a86403; + --palette-yellow60: #ca8501; + --palette-yellow65: #d79304; + --palette-yellow70: #e4a201; + --palette-yellow80: #fcc003; + --palette-yellow90: #f9e3b6; + --palette-yellow95: #fbf3e0; + --space-large: 1.5rem; + --space-medium: 1rem; --space-none: 0; - --space-xxxSmall: 0.125rem; - --space-xxSmall: 0.25rem; - --space-xSmall: 0.5rem; --space-small: 0.75rem; - --space-medium: 1rem; - --space-large: 1.5rem; --space-xLarge: 2rem; + --space-xSmall: 0.5rem; --space-xxLarge: 3rem; + --space-xxSmall: 0.25rem; + --space-xxxSmall: 0.125rem; } @supports (color: color(display-p3 1 1 1)) { :root { - --palette-blue10: color(display-p3 0 0.086275 0.223529); - --palette-blue15: color(display-p3 0.011765 0.137255 0.301961); - --palette-blue20: color(display-p3 0.011765 0.176471 0.376471); - --palette-blue30: color(display-p3 0.003922 0.266667 0.52549); - --palette-blue40: color(display-p3 0.043137 0.360784 0.670588); - --palette-blue50: color(display-p3 0.003922 0.462745 0.827451); - --palette-blue60: color(display-p3 0.105882 0.588235 1); - --palette-blue65: color(display-p3 0.341176 0.639216 0.992157); - --palette-blue70: color(display-p3 0.470588 0.690196 0.992157); - --palette-blue80: color(display-p3 0.666667 0.796078 1); - --palette-blue90: color(display-p3 0.847059 0.901961 0.996078); - --palette-blue95: color(display-p3 0.933333 0.956863 1); - --palette-cloudBlue10: color(display-p3 0 0.101961 0.156863); - --palette-cloudBlue15: color(display-p3 0.039216 0.14902 0.211765); - --palette-cloudBlue20: color(display-p3 0.007843 0.196078 0.282353); - --palette-cloudBlue30: color(display-p3 0.031373 0.286275 0.407843); - --palette-cloudBlue40: color(display-p3 0.019608 0.384314 0.541176); - --palette-cloudBlue50: color(display-p3 0.062745 0.486275 0.678431); - --palette-cloudBlue60: color(display-p3 0.05098 0.615686 0.854902); - --palette-cloudBlue65: color(display-p3 0.031373 0.670588 0.929412); - --palette-cloudBlue70: color(display-p3 0.101961 0.72549 1); - --palette-cloudBlue80: color(display-p3 0.564706 0.815686 0.996078); - --palette-cloudBlue90: color(display-p3 0.811765 0.913725 0.996078); - --palette-cloudBlue95: color(display-p3 0.917647 0.960784 0.996078); - --palette-green10: color(display-p3 0.027451 0.105882 0.070588); - --palette-green15: color(display-p3 0.047059 0.160784 0.070588); - --palette-green20: color(display-p3 0.054902 0.207843 0.133333); - --palette-green30: color(display-p3 0.098039 0.305882 0.192157); - --palette-green40: color(display-p3 0.133333 0.407843 0.243137); - --palette-green50: color(display-p3 0.180392 0.517647 0.290196); - --palette-green60: color(display-p3 0.231373 0.654902 0.333333); - --palette-green65: color(display-p3 0.254902 0.713725 0.345098); - --palette-green70: color(display-p3 0.270588 0.776471 0.352941); - --palette-green80: color(display-p3 0.568627 0.858824 0.545098); - --palette-green90: color(display-p3 0.803922 0.937255 0.768627); - --palette-green95: color(display-p3 0.921569 0.968627 0.901961); - --palette-hotOrange10: color(display-p3 0.156863 0.070588 0.007843); - --palette-hotOrange15: color(display-p3 0.258824 0.086275 0.015686); - --palette-hotOrange20: color(display-p3 0.329412 0.113725 0.003922); - --palette-hotOrange30: color(display-p3 0.494118 0.14902 0); - --palette-hotOrange40: color(display-p3 0.666667 0.188235 0.003922); - --palette-hotOrange50: color(display-p3 0.847059 0.227451 0); - --palette-hotOrange60: color(display-p3 1 0.364706 0.176471); - --palette-hotOrange65: color(display-p3 1 0.470588 0.309804); - --palette-hotOrange70: color(display-p3 1 0.564706 0.431373); - --palette-hotOrange80: color(display-p3 0.996078 0.72549 0.647059); - --palette-hotOrange90: color(display-p3 1 0.870588 0.835294); - --palette-hotOrange95: color(display-p3 0.996078 0.945098 0.929412); - --palette-indigo10: color(display-p3 0.12549 0.023529 0.278431); - --palette-indigo15: color(display-p3 0.121569 0.035294 0.454902); - --palette-indigo20: color(display-p3 0.14902 0.058824 0.560784); - --palette-indigo30: color(display-p3 0.184314 0.172549 0.717647); - --palette-indigo40: color(display-p3 0.227451 0.286275 0.854902); - --palette-indigo50: color(display-p3 0.345098 0.403922 0.909804); - --palette-indigo60: color(display-p3 0.498039 0.54902 0.929412); - --palette-indigo65: color(display-p3 0.556863 0.607843 0.937255); - --palette-indigo70: color(display-p3 0.619608 0.662745 0.945098); - --palette-indigo80: color(display-p3 0.745098 0.780392 0.964706); - --palette-indigo90: color(display-p3 0.878431 0.898039 0.972549); - --palette-indigo95: color(display-p3 0.945098 0.952941 0.984314); - --palette-neutral10: color(display-p3 0.094118 0.094118 0.094118); - --palette-neutral20: color(display-p3 0.180392 0.180392 0.180392); - --palette-neutral30: color(display-p3 0.266667 0.266667 0.266667); - --palette-neutral40: color(display-p3 0.360784 0.360784 0.360784); - --palette-neutral50: color(display-p3 0.454902 0.454902 0.454902); - --palette-neutral60: color(display-p3 0.576471 0.576471 0.576471); - --palette-neutral70: color(display-p3 0.682353 0.682353 0.682353); - --palette-neutral80: color(display-p3 0.788235 0.788235 0.788235); - --palette-neutral90: color(display-p3 0.898039 0.898039 0.898039); - --palette-neutral95: color(display-p3 0.952941 0.952941 0.952941); - --palette-neutral100: color(display-p3 1 1 1); - --palette-orange10: color(display-p3 0.12549 0.086275 0); - --palette-orange15: color(display-p3 0.215686 0.117647 0.011765); - --palette-orange20: color(display-p3 0.243137 0.168627 0.007843); - --palette-orange30: color(display-p3 0.372549 0.243137 0.007843); - --palette-orange40: color(display-p3 0.509804 0.317647 0.003922); - --palette-orange50: color(display-p3 0.662745 0.392157 0.015686); - --palette-orange60: color(display-p3 0.866667 0.478431 0.003922); - --palette-orange65: color(display-p3 0.952941 0.513725 0.011765); - --palette-orange70: color(display-p3 0.996078 0.576471 0.223529); - --palette-orange80: color(display-p3 1 0.729412 0.564706); - --palette-orange90: color(display-p3 0.996078 0.87451 0.815686); - --palette-orange95: color(display-p3 1 0.945098 0.917647); - --palette-pink10: color(display-p3 0.215686 0.003922 0.078431); - --palette-pink15: color(display-p3 0.294118 0.023529 0.12549); - --palette-pink20: color(display-p3 0.380392 0.007843 0.164706); - --palette-pink30: color(display-p3 0.541176 0.011765 0.243137); - --palette-pink40: color(display-p3 0.713725 0.019608 0.329412); - --palette-pink50: color(display-p3 0.890196 0.023529 0.415686); - --palette-pink60: color(display-p3 1 0.32549 0.541176); - --palette-pink65: color(display-p3 0.996078 0.447059 0.596078); - --palette-pink70: color(display-p3 0.996078 0.541176 0.654902); - --palette-pink80: color(display-p3 0.992157 0.713725 0.772549); - --palette-pink90: color(display-p3 0.992157 0.866667 0.890196); - --palette-pink95: color(display-p3 0.996078 0.941176 0.952941); - --palette-purple10: color(display-p3 0.141176 0.023529 0.262745); - --palette-purple15: color(display-p3 0.188235 0.043137 0.376471); - --palette-purple20: color(display-p3 0.25098 0.062745 0.458824); - --palette-purple30: color(display-p3 0.352941 0.105882 0.662745); - --palette-purple40: color(display-p3 0.458824 0.14902 0.890196); - --palette-purple50: color(display-p3 0.564706 0.313725 0.913725); - --palette-purple60: color(display-p3 0.678431 0.482353 0.933333); - --palette-purple65: color(display-p3 0.717647 0.552941 0.937255); - --palette-purple70: color(display-p3 0.760784 0.619608 0.945098); - --palette-purple80: color(display-p3 0.843137 0.560784 0.960784); - --palette-purple90: color(display-p3 0.92549 0.882353 0.976471); - --palette-purple95: color(display-p3 0.964706 0.94902 0.984314); - --palette-red10: color(display-p3 0.188235 0.047059 0.003922); - --palette-red15: color(display-p3 0.290196 0.047059 0.015686); - --palette-red20: color(display-p3 0.392157 0.003922 0.011765); - --palette-red30: color(display-p3 0.556863 0.011765 0.058824); - --palette-red40: color(display-p3 0.729412 0.019608 0.090196); - --palette-red50: color(display-p3 0.917647 0 0.117647); - --palette-red60: color(display-p3 0.996078 0.360784 0.298039); - --palette-red65: color(display-p3 0.996078 0.466667 0.396078); - --palette-red70: color(display-p3 0.996078 0.560784 0.490196); - --palette-red80: color(display-p3 0.996078 0.721569 0.670588); - --palette-red90: color(display-p3 0.996078 0.870588 0.847059); - --palette-red95: color(display-p3 0.996078 0.945098 0.933333); - --palette-teal10: color(display-p3 0.027451 0.105882 0.070588); - --palette-teal15: color(display-p3 0.027451 0.156863 0.145098); - --palette-teal20: color(display-p3 0.007843 0.203922 0.203922); - --palette-teal30: color(display-p3 0.007843 0.301961 0.298039); - --palette-teal40: color(display-p3 0.019608 0.403922 0.392157); - --palette-teal50: color(display-p3 0.043137 0.509804 0.486275); - --palette-teal60: color(display-p3 0.023529 0.647059 0.603922); - --palette-teal65: color(display-p3 0.011765 0.705882 0.654902); - --palette-teal70: color(display-p3 0.003922 0.764706 0.701961); - --palette-teal80: color(display-p3 0.015686 0.882353 0.796078); - --palette-teal90: color(display-p3 0.67451 0.952941 0.894118); - --palette-teal95: color(display-p3 0.870588 0.976471 0.952941); - --palette-violet10: color(display-p3 0.180392 0 0.223529); - --palette-violet15: color(display-p3 0.239216 0.003922 0.341176); - --palette-violet20: color(display-p3 0.321569 0 0.4); - --palette-violet30: color(display-p3 0.45098 0.011765 0.580392); - --palette-violet40: color(display-p3 0.588235 0.007843 0.780392); - --palette-violet50: color(display-p3 0.729412 0.003922 1); - --palette-violet60: color(display-p3 0.796078 0.396078 1); - --palette-violet65: color(display-p3 0.819608 0.490196 0.996078); - --palette-violet70: color(display-p3 0.847059 0.572549 0.996078); - --palette-violet80: color(display-p3 0.898039 0.72549 0.996078); - --palette-violet90: color(display-p3 0.94902 0.870588 0.996078); - --palette-violet95: color(display-p3 0.976471 0.941176 1); - --palette-yellow10: color(display-p3 0.156863 0.070588 0.007843); - --palette-yellow15: color(display-p3 0.180392 0.133333 0.015686); - --palette-yellow20: color(display-p3 0.309804 0.129412 0); - --palette-yellow30: color(display-p3 0.435294 0.203922 0); - --palette-yellow40: color(display-p3 0.54902 0.294118 0.007843); - --palette-yellow50: color(display-p3 0.658824 0.392157 0.011765); - --palette-yellow60: color(display-p3 0.792157 0.521569 0.003922); - --palette-yellow65: color(display-p3 0.843137 0.576471 0.015686); - --palette-yellow70: color(display-p3 0.894118 0.635294 0.003922); - --palette-yellow80: color(display-p3 0.988235 0.752941 0.011765); - --palette-yellow90: color(display-p3 0.976471 0.890196 0.713725); - --palette-yellow95: color(display-p3 0.984314 0.952941 0.878431); - --color-backgroundBackdrop: color(display-p3 1 1 1/0.74902); - --color-backgroundHighlight: color(display-p3 0.980392 1 0.741176); - --color-backgroundHighlightSearch: color(display-p3 1 0.941176 0.247059); - --color-backgroundImageOverlay: color(display-p3 0 0 0/0.6); - --color-backgroundRowNew: color(display-p3 0.803922 0.937255 0.768627); - --color-backgroundSuccess: color(display-p3 0.270588 0.776471 0.352941); - --color-backgroundSuccessDark: color(display-p3 0.180392 0.517647 0.290196); - --color-backgroundSuccessDarker: color(display-p3 0.098039 0.305882 0.192157); - --color-backgroundTempModalTint: color(display-p3 0.031373 0.027451 0.027451/0.6); - --color-borderSuccess: color(display-p3 0.568627 0.858824 0.545098); - --color-borderSuccessDark: color(display-p3 0.180392 0.517647 0.290196); + --color-backgroundBackdrop: color(display-p3 1 1 1 / 0.7490196078431373); + --color-backgroundHighlight: color(display-p3 0.9803921568627451 1 0.7411764705882353); + --color-backgroundHighlightSearch: color(display-p3 1 0.9411764705882353 0.24705882352941178); + --color-backgroundImageOverlay: color(display-p3 0 0 0 / 0.6); + --color-backgroundRowNew: color(display-p3 0.803921568627451 0.9372549019607843 0.7686274509803922); + --color-backgroundSuccess: color(display-p3 0.27058823529411763 0.7764705882352941 0.35294117647058826); + --color-backgroundSuccessDark: color(display-p3 0.1803921568627451 0.5176470588235295 0.2901960784313726); + --color-backgroundSuccessDarker: color(display-p3 0.09803921568627451 0.3058823529411765 0.19215686274509805); + --color-backgroundTempModalTint: color(display-p3 0.03137254901960784 0.027450980392156862 0.027450980392156862 / 0.6); + --color-borderSuccess: color(display-p3 0.5686274509803921 0.8588235294117647 0.5450980392156862); + --color-borderSuccessDark: color(display-p3 0.1803921568627451 0.5176470588235295 0.2901960784313726); --color-gray1: color(display-p3 1 1 1); - --color-gray2: color(display-p3 0.980392 0.980392 0.976471); - --color-gray3: color(display-p3 0.952941 0.94902 0.94902); - --color-gray4: color(display-p3 0.92549 0.921569 0.917647); - --color-gray5: color(display-p3 0.866667 0.858824 0.854902); - --color-gray6: color(display-p3 0.788235 0.780392 0.772549); - --color-gray7: color(display-p3 0.690196 0.678431 0.670588); - --color-gray8: color(display-p3 0.588235 0.580392 0.572549); - --color-gray9: color(display-p3 0.439216 0.431373 0.419608); - --color-gray10: color(display-p3 0.317647 0.309804 0.301961); - --color-gray11: color(display-p3 0.243137 0.243137 0.235294); - --color-gray12: color(display-p3 0.168627 0.156863 0.14902); - --color-gray13: color(display-p3 0.031373 0.027451 0.027451); - --color-textLinkInverseActive: color(display-p3 1 1 1/0.50196); - --color-textLinkInverseDisabled: color(display-p3 1 1 1/0.14902); - --color-textLinkInverseHover: color(display-p3 1 1 1/0.74902); - --color-textRequired: color(display-p3 0.917647 0 0.117647); - --color-textSuccess: color(display-p3 0.180392 0.517647 0.290196); - --color-textSuccessInverse: color(display-p3 0.270588 0.776471 0.352941); - --color-textTabLabel: color(display-p3 0.168627 0.156863 0.14902); - --color-textWarningAlt: color(display-p3 0.54902 0.294118 0.007843); + --color-gray2: color(display-p3 0.9803921568627451 0.9803921568627451 0.9764705882352941); + --color-gray3: color(display-p3 0.9529411764705882 0.9490196078431372 0.9490196078431372); + --color-gray4: color(display-p3 0.9254901960784314 0.9215686274509803 0.9176470588235294); + --color-gray5: color(display-p3 0.8666666666666667 0.8588235294117647 0.8549019607843137); + --color-gray6: color(display-p3 0.788235294117647 0.7803921568627451 0.7725490196078432); + --color-gray7: color(display-p3 0.6901960784313725 0.6784313725490196 0.6705882352941176); + --color-gray8: color(display-p3 0.5882352941176471 0.5803921568627451 0.5725490196078431); + --color-gray9: color(display-p3 0.4392156862745098 0.43137254901960786 0.4196078431372549); + --color-gray10: color(display-p3 0.3176470588235294 0.30980392156862746 0.30196078431372547); + --color-gray11: color(display-p3 0.24313725490196078 0.24313725490196078 0.23529411764705882); + --color-gray12: color(display-p3 0.16862745098039217 0.1568627450980392 0.14901960784313725); + --color-gray13: color(display-p3 0.03137254901960784 0.027450980392156862 0.027450980392156862); + --color-textLinkInverseActive: color(display-p3 1 1 1 / 0.5019607843137255); + --color-textLinkInverseDisabled: color(display-p3 1 1 1 / 0.14901960784313725); + --color-textLinkInverseHover: color(display-p3 1 1 1 / 0.7490196078431373); + --color-textRequired: color(display-p3 0.9176470588235294 0 0.11764705882352941); + --color-textSuccess: color(display-p3 0.1803921568627451 0.5176470588235295 0.2901960784313726); + --color-textSuccessInverse: color(display-p3 0.27058823529411763 0.7764705882352941 0.35294117647058826); + --color-textTabLabel: color(display-p3 0.16862745098039217 0.1568627450980392 0.14901960784313725); + --color-textWarningAlt: color(display-p3 0.5490196078431373 0.29411764705882354 0.00784313725490196); + --palette-blue10: color(display-p3 0 0.08627450980392157 0.2235294117647059); + --palette-blue15: color(display-p3 0.011764705882352941 0.13725490196078433 0.30196078431372547); + --palette-blue20: color(display-p3 0.011764705882352941 0.17647058823529413 0.3764705882352941); + --palette-blue30: color(display-p3 0.00392156862745098 0.26666666666666666 0.5254901960784314); + --palette-blue40: color(display-p3 0.043137254901960784 0.3607843137254902 0.6705882352941176); + --palette-blue50: color(display-p3 0.00392156862745098 0.4627450980392157 0.8274509803921568); + --palette-blue60: color(display-p3 0.10588235294117647 0.5882352941176471 1); + --palette-blue65: color(display-p3 0.3411764705882353 0.6392156862745098 0.9921568627450981); + --palette-blue70: color(display-p3 0.47058823529411764 0.6901960784313725 0.9921568627450981); + --palette-blue80: color(display-p3 0.6666666666666666 0.796078431372549 1); + --palette-blue90: color(display-p3 0.8470588235294118 0.9019607843137255 0.996078431372549); + --palette-blue95: color(display-p3 0.9333333333333333 0.9568627450980393 1); + --palette-cloudBlue10: color(display-p3 0 0.10196078431372549 0.1568627450980392); + --palette-cloudBlue15: color(display-p3 0.0392156862745098 0.14901960784313725 0.21176470588235294); + --palette-cloudBlue20: color(display-p3 0.00784313725490196 0.19607843137254902 0.2823529411764706); + --palette-cloudBlue30: color(display-p3 0.03137254901960784 0.28627450980392155 0.40784313725490196); + --palette-cloudBlue40: color(display-p3 0.0196078431372549 0.3843137254901961 0.5411764705882353); + --palette-cloudBlue50: color(display-p3 0.06274509803921569 0.48627450980392156 0.6784313725490196); + --palette-cloudBlue60: color(display-p3 0.050980392156862744 0.615686274509804 0.8549019607843137); + --palette-cloudBlue65: color(display-p3 0.03137254901960784 0.6705882352941176 0.9294117647058824); + --palette-cloudBlue70: color(display-p3 0.10196078431372549 0.7254901960784313 1); + --palette-cloudBlue80: color(display-p3 0.5647058823529412 0.8156862745098039 0.996078431372549); + --palette-cloudBlue90: color(display-p3 0.8117647058823529 0.9137254901960784 0.996078431372549); + --palette-cloudBlue95: color(display-p3 0.9176470588235294 0.9607843137254902 0.996078431372549); + --palette-green10: color(display-p3 0.027450980392156862 0.10588235294117647 0.07058823529411765); + --palette-green15: color(display-p3 0.047058823529411764 0.1607843137254902 0.07058823529411765); + --palette-green20: color(display-p3 0.054901960784313725 0.20784313725490197 0.13333333333333333); + --palette-green30: color(display-p3 0.09803921568627451 0.3058823529411765 0.19215686274509805); + --palette-green40: color(display-p3 0.13333333333333333 0.40784313725490196 0.24313725490196078); + --palette-green50: color(display-p3 0.1803921568627451 0.5176470588235295 0.2901960784313726); + --palette-green60: color(display-p3 0.23137254901960785 0.6549019607843137 0.3333333333333333); + --palette-green65: color(display-p3 0.2549019607843137 0.7137254901960784 0.34509803921568627); + --palette-green70: color(display-p3 0.27058823529411763 0.7764705882352941 0.35294117647058826); + --palette-green80: color(display-p3 0.5686274509803921 0.8588235294117647 0.5450980392156862); + --palette-green90: color(display-p3 0.803921568627451 0.9372549019607843 0.7686274509803922); + --palette-green95: color(display-p3 0.9215686274509803 0.9686274509803922 0.9019607843137255); + --palette-hotOrange10: color(display-p3 0.1568627450980392 0.07058823529411765 0.00784313725490196); + --palette-hotOrange15: color(display-p3 0.25882352941176473 0.08627450980392157 0.01568627450980392); + --palette-hotOrange20: color(display-p3 0.32941176470588235 0.11372549019607843 0.00392156862745098); + --palette-hotOrange30: color(display-p3 0.49411764705882355 0.14901960784313725 0); + --palette-hotOrange40: color(display-p3 0.6666666666666666 0.18823529411764706 0.00392156862745098); + --palette-hotOrange50: color(display-p3 0.8470588235294118 0.22745098039215686 0); + --palette-hotOrange60: color(display-p3 1 0.36470588235294116 0.17647058823529413); + --palette-hotOrange65: color(display-p3 1 0.47058823529411764 0.30980392156862746); + --palette-hotOrange70: color(display-p3 1 0.5647058823529412 0.43137254901960786); + --palette-hotOrange80: color(display-p3 0.996078431372549 0.7254901960784313 0.6470588235294118); + --palette-hotOrange90: color(display-p3 1 0.8705882352941177 0.8352941176470589); + --palette-hotOrange95: color(display-p3 0.996078431372549 0.9450980392156862 0.9294117647058824); + --palette-indigo10: color(display-p3 0.12549019607843137 0.023529411764705882 0.2784313725490196); + --palette-indigo15: color(display-p3 0.12156862745098039 0.03529411764705882 0.4549019607843137); + --palette-indigo20: color(display-p3 0.14901960784313725 0.058823529411764705 0.5607843137254902); + --palette-indigo30: color(display-p3 0.1843137254901961 0.17254901960784313 0.7176470588235294); + --palette-indigo40: color(display-p3 0.22745098039215686 0.28627450980392155 0.8549019607843137); + --palette-indigo50: color(display-p3 0.34509803921568627 0.403921568627451 0.9098039215686274); + --palette-indigo60: color(display-p3 0.4980392156862745 0.5490196078431373 0.9294117647058824); + --palette-indigo65: color(display-p3 0.5568627450980392 0.6078431372549019 0.9372549019607843); + --palette-indigo70: color(display-p3 0.6196078431372549 0.6627450980392157 0.9450980392156862); + --palette-indigo80: color(display-p3 0.7450980392156863 0.7803921568627451 0.9647058823529412); + --palette-indigo90: color(display-p3 0.8784313725490196 0.8980392156862745 0.9725490196078431); + --palette-indigo95: color(display-p3 0.9450980392156862 0.9529411764705882 0.984313725490196); + --palette-neutral10: color(display-p3 0.09411764705882353 0.09411764705882353 0.09411764705882353); + --palette-neutral20: color(display-p3 0.1803921568627451 0.1803921568627451 0.1803921568627451); + --palette-neutral30: color(display-p3 0.26666666666666666 0.26666666666666666 0.26666666666666666); + --palette-neutral40: color(display-p3 0.3607843137254902 0.3607843137254902 0.3607843137254902); + --palette-neutral50: color(display-p3 0.4549019607843137 0.4549019607843137 0.4549019607843137); + --palette-neutral60: color(display-p3 0.5764705882352941 0.5764705882352941 0.5764705882352941); + --palette-neutral70: color(display-p3 0.6823529411764706 0.6823529411764706 0.6823529411764706); + --palette-neutral80: color(display-p3 0.788235294117647 0.788235294117647 0.788235294117647); + --palette-neutral90: color(display-p3 0.8980392156862745 0.8980392156862745 0.8980392156862745); + --palette-neutral95: color(display-p3 0.9529411764705882 0.9529411764705882 0.9529411764705882); + --palette-neutral100: color(display-p3 1 1 1); + --palette-orange10: color(display-p3 0.12549019607843137 0.08627450980392157 0); + --palette-orange15: color(display-p3 0.21568627450980393 0.11764705882352941 0.011764705882352941); + --palette-orange20: color(display-p3 0.24313725490196078 0.16862745098039217 0.00784313725490196); + --palette-orange30: color(display-p3 0.37254901960784315 0.24313725490196078 0.00784313725490196); + --palette-orange40: color(display-p3 0.5098039215686274 0.3176470588235294 0.00392156862745098); + --palette-orange50: color(display-p3 0.6627450980392157 0.39215686274509803 0.01568627450980392); + --palette-orange60: color(display-p3 0.8666666666666667 0.47843137254901963 0.00392156862745098); + --palette-orange65: color(display-p3 0.9529411764705882 0.5137254901960784 0.011764705882352941); + --palette-orange70: color(display-p3 0.996078431372549 0.5764705882352941 0.2235294117647059); + --palette-orange80: color(display-p3 1 0.7294117647058823 0.5647058823529412); + --palette-orange90: color(display-p3 0.996078431372549 0.8745098039215686 0.8156862745098039); + --palette-orange95: color(display-p3 1 0.9450980392156862 0.9176470588235294); + --palette-pink10: color(display-p3 0.21568627450980393 0.00392156862745098 0.0784313725490196); + --palette-pink15: color(display-p3 0.29411764705882354 0.023529411764705882 0.12549019607843137); + --palette-pink20: color(display-p3 0.3803921568627451 0.00784313725490196 0.16470588235294117); + --palette-pink30: color(display-p3 0.5411764705882353 0.011764705882352941 0.24313725490196078); + --palette-pink40: color(display-p3 0.7137254901960784 0.0196078431372549 0.32941176470588235); + --palette-pink50: color(display-p3 0.8901960784313725 0.023529411764705882 0.41568627450980394); + --palette-pink60: color(display-p3 1 0.3254901960784314 0.5411764705882353); + --palette-pink65: color(display-p3 0.996078431372549 0.4470588235294118 0.596078431372549); + --palette-pink70: color(display-p3 0.996078431372549 0.5411764705882353 0.6549019607843137); + --palette-pink80: color(display-p3 0.9921568627450981 0.7137254901960784 0.7725490196078432); + --palette-pink90: color(display-p3 0.9921568627450981 0.8666666666666667 0.8901960784313725); + --palette-pink95: color(display-p3 0.996078431372549 0.9411764705882353 0.9529411764705882); + --palette-purple10: color(display-p3 0.1411764705882353 0.023529411764705882 0.2627450980392157); + --palette-purple15: color(display-p3 0.18823529411764706 0.043137254901960784 0.3764705882352941); + --palette-purple20: color(display-p3 0.25098039215686274 0.06274509803921569 0.4588235294117647); + --palette-purple30: color(display-p3 0.35294117647058826 0.10588235294117647 0.6627450980392157); + --palette-purple40: color(display-p3 0.4588235294117647 0.14901960784313725 0.8901960784313725); + --palette-purple50: color(display-p3 0.5647058823529412 0.3137254901960784 0.9137254901960784); + --palette-purple60: color(display-p3 0.6784313725490196 0.4823529411764706 0.9333333333333333); + --palette-purple65: color(display-p3 0.7176470588235294 0.5529411764705883 0.9372549019607843); + --palette-purple70: color(display-p3 0.7607843137254902 0.6196078431372549 0.9450980392156862); + --palette-purple80: color(display-p3 0.8431372549019608 0.5607843137254902 0.9607843137254902); + --palette-purple90: color(display-p3 0.9254901960784314 0.8823529411764706 0.9764705882352941); + --palette-purple95: color(display-p3 0.9647058823529412 0.9490196078431372 0.984313725490196); + --palette-red10: color(display-p3 0.18823529411764706 0.047058823529411764 0.00392156862745098); + --palette-red15: color(display-p3 0.2901960784313726 0.047058823529411764 0.01568627450980392); + --palette-red20: color(display-p3 0.39215686274509803 0.00392156862745098 0.011764705882352941); + --palette-red30: color(display-p3 0.5568627450980392 0.011764705882352941 0.058823529411764705); + --palette-red40: color(display-p3 0.7294117647058823 0.0196078431372549 0.09019607843137255); + --palette-red50: color(display-p3 0.9176470588235294 0 0.11764705882352941); + --palette-red60: color(display-p3 0.996078431372549 0.3607843137254902 0.2980392156862745); + --palette-red65: color(display-p3 0.996078431372549 0.4666666666666667 0.396078431372549); + --palette-red70: color(display-p3 0.996078431372549 0.5607843137254902 0.49019607843137253); + --palette-red80: color(display-p3 0.996078431372549 0.7215686274509804 0.6705882352941176); + --palette-red90: color(display-p3 0.996078431372549 0.8705882352941177 0.8470588235294118); + --palette-red95: color(display-p3 0.996078431372549 0.9450980392156862 0.9333333333333333); + --palette-teal10: color(display-p3 0.027450980392156862 0.10588235294117647 0.07058823529411765); + --palette-teal15: color(display-p3 0.027450980392156862 0.1568627450980392 0.1450980392156863); + --palette-teal20: color(display-p3 0.00784313725490196 0.20392156862745098 0.20392156862745098); + --palette-teal30: color(display-p3 0.00784313725490196 0.30196078431372547 0.2980392156862745); + --palette-teal40: color(display-p3 0.0196078431372549 0.403921568627451 0.39215686274509803); + --palette-teal50: color(display-p3 0.043137254901960784 0.5098039215686274 0.48627450980392156); + --palette-teal60: color(display-p3 0.023529411764705882 0.6470588235294118 0.6039215686274509); + --palette-teal65: color(display-p3 0.011764705882352941 0.7058823529411765 0.6549019607843137); + --palette-teal70: color(display-p3 0.00392156862745098 0.7647058823529411 0.7019607843137254); + --palette-teal80: color(display-p3 0.01568627450980392 0.8823529411764706 0.796078431372549); + --palette-teal90: color(display-p3 0.6745098039215687 0.9529411764705882 0.8941176470588236); + --palette-teal95: color(display-p3 0.8705882352941177 0.9764705882352941 0.9529411764705882); + --palette-violet10: color(display-p3 0.1803921568627451 0 0.2235294117647059); + --palette-violet15: color(display-p3 0.23921568627450981 0.00392156862745098 0.3411764705882353); + --palette-violet20: color(display-p3 0.3215686274509804 0 0.4); + --palette-violet30: color(display-p3 0.45098039215686275 0.011764705882352941 0.5803921568627451); + --palette-violet40: color(display-p3 0.5882352941176471 0.00784313725490196 0.7803921568627451); + --palette-violet50: color(display-p3 0.7294117647058823 0.00392156862745098 1); + --palette-violet60: color(display-p3 0.796078431372549 0.396078431372549 1); + --palette-violet65: color(display-p3 0.8196078431372549 0.49019607843137253 0.996078431372549); + --palette-violet70: color(display-p3 0.8470588235294118 0.5725490196078431 0.996078431372549); + --palette-violet80: color(display-p3 0.8980392156862745 0.7254901960784313 0.996078431372549); + --palette-violet90: color(display-p3 0.9490196078431372 0.8705882352941177 0.996078431372549); + --palette-violet95: color(display-p3 0.9764705882352941 0.9411764705882353 1); + --palette-yellow10: color(display-p3 0.1568627450980392 0.07058823529411765 0.00784313725490196); + --palette-yellow15: color(display-p3 0.1803921568627451 0.13333333333333333 0.01568627450980392); + --palette-yellow20: color(display-p3 0.30980392156862746 0.12941176470588237 0); + --palette-yellow30: color(display-p3 0.43529411764705883 0.20392156862745098 0); + --palette-yellow40: color(display-p3 0.5490196078431373 0.29411764705882354 0.00784313725490196); + --palette-yellow50: color(display-p3 0.6588235294117647 0.39215686274509803 0.011764705882352941); + --palette-yellow60: color(display-p3 0.792156862745098 0.5215686274509804 0.00392156862745098); + --palette-yellow65: color(display-p3 0.8431372549019608 0.5764705882352941 0.01568627450980392); + --palette-yellow70: color(display-p3 0.8941176470588236 0.6352941176470588 0.00392156862745098); + --palette-yellow80: color(display-p3 0.9882352941176471 0.7529411764705882 0.011764705882352941); + --palette-yellow90: color(display-p3 0.9764705882352941 0.8901960784313725 0.7137254901960784); + --palette-yellow95: color(display-p3 0.984313725490196 0.9529411764705882 0.8784313725490196); } } diff --git a/examples/shopify/tokens/index.d.ts b/examples/shopify/tokens/index.d.ts index 5eb7a8b8..e4b457ae 100644 --- a/examples/shopify/tokens/index.d.ts +++ b/examples/shopify/tokens/index.d.ts @@ -15,142 +15,142 @@ import { export declare const tokens: { 'color.black': ColorToken['$value']; - 'color.blueLighter': ColorToken['$value']; - 'color.blueLight': ColorToken['$value']; 'color.blue': ColorToken['$value']; 'color.blueDark': ColorToken['$value']; 'color.blueDarker': ColorToken['$value']; + 'color.blueLight': ColorToken['$value']; + 'color.blueLighter': ColorToken['$value']; 'color.blueText': ColorToken['$value']; - 'color.greenLighter': ColorToken['$value']; - 'color.greenLight': ColorToken['$value']; 'color.green': ColorToken['$value']; 'color.greenDark': ColorToken['$value']; 'color.greenDarker': ColorToken['$value']; + 'color.greenLight': ColorToken['$value']; + 'color.greenLighter': ColorToken['$value']; 'color.greenText': ColorToken['$value']; - 'color.indigoLighter': ColorToken['$value']; - 'color.indigoLight': ColorToken['$value']; 'color.indigo': ColorToken['$value']; 'color.indigoDark': ColorToken['$value']; 'color.indigoDarker': ColorToken['$value']; + 'color.indigoLight': ColorToken['$value']; + 'color.indigoLighter': ColorToken['$value']; 'color.indigoText': ColorToken['$value']; - 'color.inkLightest': ColorToken['$value']; - 'color.inkLighter': ColorToken['$value']; - 'color.inkLight': ColorToken['$value']; 'color.ink': ColorToken['$value']; - 'color.orangeLighter': ColorToken['$value']; - 'color.orangeLight': ColorToken['$value']; + 'color.inkLight': ColorToken['$value']; + 'color.inkLighter': ColorToken['$value']; + 'color.inkLightest': ColorToken['$value']; 'color.orange': ColorToken['$value']; 'color.orangeDark': ColorToken['$value']; 'color.orangeDarker': ColorToken['$value']; + 'color.orangeLight': ColorToken['$value']; + 'color.orangeLighter': ColorToken['$value']; 'color.orangeText': ColorToken['$value']; - 'color.purpleLighter': ColorToken['$value']; - 'color.purpleLight': ColorToken['$value']; 'color.purple': ColorToken['$value']; 'color.purpleDark': ColorToken['$value']; 'color.purpleDarker': ColorToken['$value']; + 'color.purpleLight': ColorToken['$value']; + 'color.purpleLighter': ColorToken['$value']; 'color.purpleText': ColorToken['$value']; - 'color.redLighter': ColorToken['$value']; - 'color.redLight': ColorToken['$value']; 'color.red': ColorToken['$value']; 'color.redDark': ColorToken['$value']; 'color.redDarker': ColorToken['$value']; + 'color.redLight': ColorToken['$value']; + 'color.redLighter': ColorToken['$value']; 'color.redText': ColorToken['$value']; - 'color.skyLighter': ColorToken['$value']; - 'color.skyLight': ColorToken['$value']; 'color.sky': ColorToken['$value']; 'color.skyDark': ColorToken['$value']; - 'color.tealLighter': ColorToken['$value']; - 'color.tealLight': ColorToken['$value']; + 'color.skyLight': ColorToken['$value']; + 'color.skyLighter': ColorToken['$value']; 'color.teal': ColorToken['$value']; 'color.tealDark': ColorToken['$value']; 'color.tealDarker': ColorToken['$value']; + 'color.tealLight': ColorToken['$value']; + 'color.tealLighter': ColorToken['$value']; 'color.tealText': ColorToken['$value']; 'color.white': ColorToken['$value']; - 'color.yellowLighter': ColorToken['$value']; - 'color.yellowLight': ColorToken['$value']; 'color.yellow': ColorToken['$value']; 'color.yellowDark': ColorToken['$value']; 'color.yellowDarker': ColorToken['$value']; + 'color.yellowLight': ColorToken['$value']; + 'color.yellowLighter': ColorToken['$value']; 'color.yellowText': ColorToken['$value']; 'font.family.base': FontFamilyToken['$value']; 'font.family.mono': FontFamilyToken['$value']; - 'space.none': DimensionToken['$value']; - 'space.extraTight': DimensionToken['$value']; - 'space.tight': DimensionToken['$value']; - 'space.baseTight': DimensionToken['$value']; 'space.base': DimensionToken['$value']; - 'space.loose': DimensionToken['$value']; + 'space.baseTight': DimensionToken['$value']; 'space.extraLoose': DimensionToken['$value']; + 'space.extraTight': DimensionToken['$value']; + 'space.loose': DimensionToken['$value']; + 'space.none': DimensionToken['$value']; + 'space.tight': DimensionToken['$value']; }; export declare const meta: { 'color.black': ParsedColorToken; - 'color.blueLighter': ParsedColorToken; - 'color.blueLight': ParsedColorToken; 'color.blue': ParsedColorToken; 'color.blueDark': ParsedColorToken; 'color.blueDarker': ParsedColorToken; + 'color.blueLight': ParsedColorToken; + 'color.blueLighter': ParsedColorToken; 'color.blueText': ParsedColorToken; - 'color.greenLighter': ParsedColorToken; - 'color.greenLight': ParsedColorToken; 'color.green': ParsedColorToken; 'color.greenDark': ParsedColorToken; 'color.greenDarker': ParsedColorToken; + 'color.greenLight': ParsedColorToken; + 'color.greenLighter': ParsedColorToken; 'color.greenText': ParsedColorToken; - 'color.indigoLighter': ParsedColorToken; - 'color.indigoLight': ParsedColorToken; 'color.indigo': ParsedColorToken; 'color.indigoDark': ParsedColorToken; 'color.indigoDarker': ParsedColorToken; + 'color.indigoLight': ParsedColorToken; + 'color.indigoLighter': ParsedColorToken; 'color.indigoText': ParsedColorToken; - 'color.inkLightest': ParsedColorToken; - 'color.inkLighter': ParsedColorToken; - 'color.inkLight': ParsedColorToken; 'color.ink': ParsedColorToken; - 'color.orangeLighter': ParsedColorToken; - 'color.orangeLight': ParsedColorToken; + 'color.inkLight': ParsedColorToken; + 'color.inkLighter': ParsedColorToken; + 'color.inkLightest': ParsedColorToken; 'color.orange': ParsedColorToken; 'color.orangeDark': ParsedColorToken; 'color.orangeDarker': ParsedColorToken; + 'color.orangeLight': ParsedColorToken; + 'color.orangeLighter': ParsedColorToken; 'color.orangeText': ParsedColorToken; - 'color.purpleLighter': ParsedColorToken; - 'color.purpleLight': ParsedColorToken; 'color.purple': ParsedColorToken; 'color.purpleDark': ParsedColorToken; 'color.purpleDarker': ParsedColorToken; + 'color.purpleLight': ParsedColorToken; + 'color.purpleLighter': ParsedColorToken; 'color.purpleText': ParsedColorToken; - 'color.redLighter': ParsedColorToken; - 'color.redLight': ParsedColorToken; 'color.red': ParsedColorToken; 'color.redDark': ParsedColorToken; 'color.redDarker': ParsedColorToken; + 'color.redLight': ParsedColorToken; + 'color.redLighter': ParsedColorToken; 'color.redText': ParsedColorToken; - 'color.skyLighter': ParsedColorToken; - 'color.skyLight': ParsedColorToken; 'color.sky': ParsedColorToken; 'color.skyDark': ParsedColorToken; - 'color.tealLighter': ParsedColorToken; - 'color.tealLight': ParsedColorToken; + 'color.skyLight': ParsedColorToken; + 'color.skyLighter': ParsedColorToken; 'color.teal': ParsedColorToken; 'color.tealDark': ParsedColorToken; 'color.tealDarker': ParsedColorToken; + 'color.tealLight': ParsedColorToken; + 'color.tealLighter': ParsedColorToken; 'color.tealText': ParsedColorToken; 'color.white': ParsedColorToken; - 'color.yellowLighter': ParsedColorToken; - 'color.yellowLight': ParsedColorToken; 'color.yellow': ParsedColorToken; 'color.yellowDark': ParsedColorToken; 'color.yellowDarker': ParsedColorToken; + 'color.yellowLight': ParsedColorToken; + 'color.yellowLighter': ParsedColorToken; 'color.yellowText': ParsedColorToken; 'font.family.base': ParsedFontFamilyToken; 'font.family.mono': ParsedFontFamilyToken; - 'space.none': ParsedDimensionToken; - 'space.extraTight': ParsedDimensionToken; - 'space.tight': ParsedDimensionToken; - 'space.baseTight': ParsedDimensionToken; 'space.base': ParsedDimensionToken; - 'space.loose': ParsedDimensionToken; + 'space.baseTight': ParsedDimensionToken; 'space.extraLoose': ParsedDimensionToken; + 'space.extraTight': ParsedDimensionToken; + 'space.loose': ParsedDimensionToken; + 'space.none': ParsedDimensionToken; + 'space.tight': ParsedDimensionToken; }; export declare const modes: Record; diff --git a/examples/shopify/tokens/index.js b/examples/shopify/tokens/index.js index 9c6f3903..97819b58 100644 --- a/examples/shopify/tokens/index.js +++ b/examples/shopify/tokens/index.js @@ -6,1146 +6,1146 @@ export const tokens = { 'color.black': '#000000', - 'color.blueLighter': '#ebf5fa', - 'color.blueLight': '#b4e1fa', 'color.blue': '#006fbb', 'color.blueDark': '#084e8a', 'color.blueDarker': '#001429', + 'color.blueLight': '#b4e1fa', + 'color.blueLighter': '#ebf5fa', 'color.blueText': '#3e4e57', - 'color.greenLighter': '#e3f1df', - 'color.greenLight': '#bbe5b3', 'color.green': '#50b83c', 'color.greenDark': '#108043', 'color.greenDarker': '#173630', + 'color.greenLight': '#bbe5b3', + 'color.greenLighter': '#e3f1df', 'color.greenText': '#414f3e', - 'color.indigoLighter': '#f4f5fa', - 'color.indigoLight': '#b3bcf5', 'color.indigo': '#5c6ac4', 'color.indigoDark': '#202e78', 'color.indigoDarker': '#000639', + 'color.indigoLight': '#b3bcf5', + 'color.indigoLighter': '#f4f5fa', 'color.indigoText': '#3e4155', - 'color.inkLightest': '#919eab', - 'color.inkLighter': '#637381', - 'color.inkLight': '#454f5b', 'color.ink': '#212b36', - 'color.orangeLighter': '#fcebdb', - 'color.orangeLight': '#ffc58b', + 'color.inkLight': '#454f5b', + 'color.inkLighter': '#637381', + 'color.inkLightest': '#919eab', 'color.orange': '#f49342', 'color.orangeDark': '#c05717', 'color.orangeDarker': '#4a1504', + 'color.orangeLight': '#ffc58b', + 'color.orangeLighter': '#fcebdb', 'color.orangeText': '#594430', - 'color.purpleLighter': '#f6f0fd', - 'color.purpleLight': '#e3d0ff', 'color.purple': '#9c6ade', 'color.purpleDark': '#50248f', 'color.purpleDarker': '#230051', + 'color.purpleLight': '#e3d0ff', + 'color.purpleLighter': '#f6f0fd', 'color.purpleText': '#50495a', - 'color.redLighter': '#fbeae5', - 'color.redLight': '#fead9a', 'color.red': '#de3618', 'color.redDark': '#bf0711', 'color.redDarker': '#330101', + 'color.redLight': '#fead9a', + 'color.redLighter': '#fbeae5', 'color.redText': '#583c35', - 'color.skyLighter': '#f9fafb', - 'color.skyLight': '#f4f6f8', 'color.sky': '#dfe3e8', 'color.skyDark': '#c4cdd5', - 'color.tealLighter': '#e0f5f5', - 'color.tealLight': '#b7ecec', + 'color.skyLight': '#f4f6f8', + 'color.skyLighter': '#f9fafb', 'color.teal': '#47c1bf', 'color.tealDark': '#00848e', 'color.tealDarker': '#003135', + 'color.tealLight': '#b7ecec', + 'color.tealLighter': '#e0f5f5', 'color.tealText': '#405352', 'color.white': '#ffffff', - 'color.yellowLighter': '#fcf1cd', - 'color.yellowLight': '#ffea8a', 'color.yellow': '#eec200', 'color.yellowDark': '#8a6116', 'color.yellowDarker': '#573b00', + 'color.yellowLight': '#ffea8a', + 'color.yellowLighter': '#fcf1cd', 'color.yellowText': '#595130', 'font.family.base': ['-apple-system', 'BlinkMacSystemFont', 'San Francisco', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'sans-serif'], 'font.family.mono': ['Monaco', 'Consolas', 'Lucida Console', 'monospace'], - 'space.none': '0', - 'space.extraTight': '4px', - 'space.tight': '8px', - 'space.baseTight': '12px', 'space.base': '16px', - 'space.loose': '20px', + 'space.baseTight': '12px', 'space.extraLoose': '32px', + 'space.extraTight': '4px', + 'space.loose': '20px', + 'space.none': '0', + 'space.tight': '8px', }; export const meta = { 'color.black': { - '_original': { - '$value': '#000000', + _original: { + $value: '#000000', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.black', - '$type': 'color', - '$value': '#000000', - }, - 'color.blueLighter': { - '_original': { - '$value': '#ebf5fa', - }, - '_group': { - id: 'color', - '$extensions': { - requiredModes: [], - }, - '$name': 'Shopify Polaris', - '$type': 'color', - }, - id: 'color.blueLighter', - '$type': 'color', - '$value': '#ebf5fa', - }, - 'color.blueLight': { - '_original': { - '$value': '#b4e1fa', - }, - '_group': { - id: 'color', - '$extensions': { - requiredModes: [], - }, - '$name': 'Shopify Polaris', - '$type': 'color', - }, - id: 'color.blueLight', - '$type': 'color', - '$value': '#b4e1fa', + $type: 'color', + $value: '#000000', }, 'color.blue': { - '_original': { - '$value': '#006fbb', + _original: { + $value: '#006fbb', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.blue', - '$type': 'color', - '$value': '#006fbb', + $type: 'color', + $value: '#006fbb', }, 'color.blueDark': { - '_original': { - '$value': '#084e8a', + _original: { + $value: '#084e8a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.blueDark', - '$type': 'color', - '$value': '#084e8a', + $type: 'color', + $value: '#084e8a', }, 'color.blueDarker': { - '_original': { - '$value': '#001429', + _original: { + $value: '#001429', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.blueDarker', - '$type': 'color', - '$value': '#001429', + $type: 'color', + $value: '#001429', }, - 'color.blueText': { - '_original': { - '$value': '#3e4e57', + 'color.blueLight': { + _original: { + $value: '#b4e1fa', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.blueText', - '$type': 'color', - '$value': '#3e4e57', + id: 'color.blueLight', + $type: 'color', + $value: '#b4e1fa', }, - 'color.greenLighter': { - '_original': { - '$value': '#e3f1df', + 'color.blueLighter': { + _original: { + $value: '#ebf5fa', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.greenLighter', - '$type': 'color', - '$value': '#e3f1df', + id: 'color.blueLighter', + $type: 'color', + $value: '#ebf5fa', }, - 'color.greenLight': { - '_original': { - '$value': '#bbe5b3', + 'color.blueText': { + _original: { + $value: '#3e4e57', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.greenLight', - '$type': 'color', - '$value': '#bbe5b3', + id: 'color.blueText', + $type: 'color', + $value: '#3e4e57', }, 'color.green': { - '_original': { - '$value': '#50b83c', + _original: { + $value: '#50b83c', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.green', - '$type': 'color', - '$value': '#50b83c', + $type: 'color', + $value: '#50b83c', }, 'color.greenDark': { - '_original': { - '$value': '#108043', + _original: { + $value: '#108043', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.greenDark', - '$type': 'color', - '$value': '#108043', + $type: 'color', + $value: '#108043', }, 'color.greenDarker': { - '_original': { - '$value': '#173630', + _original: { + $value: '#173630', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.greenDarker', - '$type': 'color', - '$value': '#173630', + $type: 'color', + $value: '#173630', }, - 'color.greenText': { - '_original': { - '$value': '#414f3e', + 'color.greenLight': { + _original: { + $value: '#bbe5b3', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.greenText', - '$type': 'color', - '$value': '#414f3e', + id: 'color.greenLight', + $type: 'color', + $value: '#bbe5b3', }, - 'color.indigoLighter': { - '_original': { - '$value': '#f4f5fa', + 'color.greenLighter': { + _original: { + $value: '#e3f1df', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.indigoLighter', - '$type': 'color', - '$value': '#f4f5fa', + id: 'color.greenLighter', + $type: 'color', + $value: '#e3f1df', }, - 'color.indigoLight': { - '_original': { - '$value': '#b3bcf5', + 'color.greenText': { + _original: { + $value: '#414f3e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.indigoLight', - '$type': 'color', - '$value': '#b3bcf5', + id: 'color.greenText', + $type: 'color', + $value: '#414f3e', }, 'color.indigo': { - '_original': { - '$value': '#5c6ac4', + _original: { + $value: '#5c6ac4', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.indigo', - '$type': 'color', - '$value': '#5c6ac4', + $type: 'color', + $value: '#5c6ac4', }, 'color.indigoDark': { - '_original': { - '$value': '#202e78', + _original: { + $value: '#202e78', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.indigoDark', - '$type': 'color', - '$value': '#202e78', + $type: 'color', + $value: '#202e78', }, 'color.indigoDarker': { - '_original': { - '$value': '#000639', + _original: { + $value: '#000639', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.indigoDarker', - '$type': 'color', - '$value': '#000639', + $type: 'color', + $value: '#000639', }, - 'color.indigoText': { - '_original': { - '$value': '#3e4155', + 'color.indigoLight': { + _original: { + $value: '#b3bcf5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.indigoText', - '$type': 'color', - '$value': '#3e4155', + id: 'color.indigoLight', + $type: 'color', + $value: '#b3bcf5', }, - 'color.inkLightest': { - '_original': { - '$value': '#919eab', + 'color.indigoLighter': { + _original: { + $value: '#f4f5fa', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.inkLightest', - '$type': 'color', - '$value': '#919eab', + id: 'color.indigoLighter', + $type: 'color', + $value: '#f4f5fa', }, - 'color.inkLighter': { - '_original': { - '$value': '#637381', + 'color.indigoText': { + _original: { + $value: '#3e4155', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.inkLighter', - '$type': 'color', - '$value': '#637381', + id: 'color.indigoText', + $type: 'color', + $value: '#3e4155', }, - 'color.inkLight': { - '_original': { - '$value': '#454f5b', + 'color.ink': { + _original: { + $value: '#212b36', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.inkLight', - '$type': 'color', - '$value': '#454f5b', + id: 'color.ink', + $type: 'color', + $value: '#212b36', }, - 'color.ink': { - '_original': { - '$value': '#212b36', + 'color.inkLight': { + _original: { + $value: '#454f5b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.ink', - '$type': 'color', - '$value': '#212b36', + id: 'color.inkLight', + $type: 'color', + $value: '#454f5b', }, - 'color.orangeLighter': { - '_original': { - '$value': '#fcebdb', + 'color.inkLighter': { + _original: { + $value: '#637381', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.orangeLighter', - '$type': 'color', - '$value': '#fcebdb', + id: 'color.inkLighter', + $type: 'color', + $value: '#637381', }, - 'color.orangeLight': { - '_original': { - '$value': '#ffc58b', + 'color.inkLightest': { + _original: { + $value: '#919eab', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.orangeLight', - '$type': 'color', - '$value': '#ffc58b', + id: 'color.inkLightest', + $type: 'color', + $value: '#919eab', }, 'color.orange': { - '_original': { - '$value': '#f49342', + _original: { + $value: '#f49342', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.orange', - '$type': 'color', - '$value': '#f49342', + $type: 'color', + $value: '#f49342', }, 'color.orangeDark': { - '_original': { - '$value': '#c05717', + _original: { + $value: '#c05717', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.orangeDark', - '$type': 'color', - '$value': '#c05717', + $type: 'color', + $value: '#c05717', }, 'color.orangeDarker': { - '_original': { - '$value': '#4a1504', + _original: { + $value: '#4a1504', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.orangeDarker', - '$type': 'color', - '$value': '#4a1504', + $type: 'color', + $value: '#4a1504', }, - 'color.orangeText': { - '_original': { - '$value': '#594430', + 'color.orangeLight': { + _original: { + $value: '#ffc58b', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.orangeText', - '$type': 'color', - '$value': '#594430', + id: 'color.orangeLight', + $type: 'color', + $value: '#ffc58b', }, - 'color.purpleLighter': { - '_original': { - '$value': '#f6f0fd', + 'color.orangeLighter': { + _original: { + $value: '#fcebdb', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.purpleLighter', - '$type': 'color', - '$value': '#f6f0fd', + id: 'color.orangeLighter', + $type: 'color', + $value: '#fcebdb', }, - 'color.purpleLight': { - '_original': { - '$value': '#e3d0ff', + 'color.orangeText': { + _original: { + $value: '#594430', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.purpleLight', - '$type': 'color', - '$value': '#e3d0ff', + id: 'color.orangeText', + $type: 'color', + $value: '#594430', }, 'color.purple': { - '_original': { - '$value': '#9c6ade', + _original: { + $value: '#9c6ade', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.purple', - '$type': 'color', - '$value': '#9c6ade', + $type: 'color', + $value: '#9c6ade', }, 'color.purpleDark': { - '_original': { - '$value': '#50248f', + _original: { + $value: '#50248f', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.purpleDark', - '$type': 'color', - '$value': '#50248f', + $type: 'color', + $value: '#50248f', }, 'color.purpleDarker': { - '_original': { - '$value': '#230051', + _original: { + $value: '#230051', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.purpleDarker', - '$type': 'color', - '$value': '#230051', + $type: 'color', + $value: '#230051', }, - 'color.purpleText': { - '_original': { - '$value': '#50495a', + 'color.purpleLight': { + _original: { + $value: '#e3d0ff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.purpleText', - '$type': 'color', - '$value': '#50495a', + id: 'color.purpleLight', + $type: 'color', + $value: '#e3d0ff', }, - 'color.redLighter': { - '_original': { - '$value': '#fbeae5', + 'color.purpleLighter': { + _original: { + $value: '#f6f0fd', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.redLighter', - '$type': 'color', - '$value': '#fbeae5', + id: 'color.purpleLighter', + $type: 'color', + $value: '#f6f0fd', }, - 'color.redLight': { - '_original': { - '$value': '#fead9a', + 'color.purpleText': { + _original: { + $value: '#50495a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.redLight', - '$type': 'color', - '$value': '#fead9a', + id: 'color.purpleText', + $type: 'color', + $value: '#50495a', }, 'color.red': { - '_original': { - '$value': '#de3618', + _original: { + $value: '#de3618', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.red', - '$type': 'color', - '$value': '#de3618', + $type: 'color', + $value: '#de3618', }, 'color.redDark': { - '_original': { - '$value': '#bf0711', + _original: { + $value: '#bf0711', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.redDark', - '$type': 'color', - '$value': '#bf0711', + $type: 'color', + $value: '#bf0711', }, 'color.redDarker': { - '_original': { - '$value': '#330101', + _original: { + $value: '#330101', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.redDarker', - '$type': 'color', - '$value': '#330101', + $type: 'color', + $value: '#330101', }, - 'color.redText': { - '_original': { - '$value': '#583c35', + 'color.redLight': { + _original: { + $value: '#fead9a', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.redText', - '$type': 'color', - '$value': '#583c35', + id: 'color.redLight', + $type: 'color', + $value: '#fead9a', }, - 'color.skyLighter': { - '_original': { - '$value': '#f9fafb', + 'color.redLighter': { + _original: { + $value: '#fbeae5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.skyLighter', - '$type': 'color', - '$value': '#f9fafb', + id: 'color.redLighter', + $type: 'color', + $value: '#fbeae5', }, - 'color.skyLight': { - '_original': { - '$value': '#f4f6f8', + 'color.redText': { + _original: { + $value: '#583c35', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.skyLight', - '$type': 'color', - '$value': '#f4f6f8', + id: 'color.redText', + $type: 'color', + $value: '#583c35', }, 'color.sky': { - '_original': { - '$value': '#dfe3e8', + _original: { + $value: '#dfe3e8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.sky', - '$type': 'color', - '$value': '#dfe3e8', + $type: 'color', + $value: '#dfe3e8', }, 'color.skyDark': { - '_original': { - '$value': '#c4cdd5', + _original: { + $value: '#c4cdd5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.skyDark', - '$type': 'color', - '$value': '#c4cdd5', + $type: 'color', + $value: '#c4cdd5', }, - 'color.tealLighter': { - '_original': { - '$value': '#e0f5f5', + 'color.skyLight': { + _original: { + $value: '#f4f6f8', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.tealLighter', - '$type': 'color', - '$value': '#e0f5f5', + id: 'color.skyLight', + $type: 'color', + $value: '#f4f6f8', }, - 'color.tealLight': { - '_original': { - '$value': '#b7ecec', + 'color.skyLighter': { + _original: { + $value: '#f9fafb', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.tealLight', - '$type': 'color', - '$value': '#b7ecec', + id: 'color.skyLighter', + $type: 'color', + $value: '#f9fafb', }, 'color.teal': { - '_original': { - '$value': '#47c1bf', + _original: { + $value: '#47c1bf', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.teal', - '$type': 'color', - '$value': '#47c1bf', + $type: 'color', + $value: '#47c1bf', }, 'color.tealDark': { - '_original': { - '$value': '#00848e', + _original: { + $value: '#00848e', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.tealDark', - '$type': 'color', - '$value': '#00848e', + $type: 'color', + $value: '#00848e', }, 'color.tealDarker': { - '_original': { - '$value': '#003135', + _original: { + $value: '#003135', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.tealDarker', - '$type': 'color', - '$value': '#003135', + $type: 'color', + $value: '#003135', }, - 'color.tealText': { - '_original': { - '$value': '#405352', + 'color.tealLight': { + _original: { + $value: '#b7ecec', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.tealText', - '$type': 'color', - '$value': '#405352', + id: 'color.tealLight', + $type: 'color', + $value: '#b7ecec', }, - 'color.white': { - '_original': { - '$value': '#ffffff', + 'color.tealLighter': { + _original: { + $value: '#e0f5f5', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.white', - '$type': 'color', - '$value': '#ffffff', + id: 'color.tealLighter', + $type: 'color', + $value: '#e0f5f5', }, - 'color.yellowLighter': { - '_original': { - '$value': '#fcf1cd', + 'color.tealText': { + _original: { + $value: '#405352', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.yellowLighter', - '$type': 'color', - '$value': '#fcf1cd', + id: 'color.tealText', + $type: 'color', + $value: '#405352', }, - 'color.yellowLight': { - '_original': { - '$value': '#ffea8a', + 'color.white': { + _original: { + $value: '#ffffff', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, - id: 'color.yellowLight', - '$type': 'color', - '$value': '#ffea8a', + id: 'color.white', + $type: 'color', + $value: '#ffffff', }, 'color.yellow': { - '_original': { - '$value': '#eec200', + _original: { + $value: '#eec200', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.yellow', - '$type': 'color', - '$value': '#eec200', + $type: 'color', + $value: '#eec200', }, 'color.yellowDark': { - '_original': { - '$value': '#8a6116', + _original: { + $value: '#8a6116', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.yellowDark', - '$type': 'color', - '$value': '#8a6116', + $type: 'color', + $value: '#8a6116', }, 'color.yellowDarker': { - '_original': { - '$value': '#573b00', + _original: { + $value: '#573b00', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.yellowDarker', - '$type': 'color', - '$value': '#573b00', + $type: 'color', + $value: '#573b00', + }, + 'color.yellowLight': { + _original: { + $value: '#ffea8a', + }, + _group: { + id: 'color', + $extensions: { + requiredModes: [], + }, + $name: 'Shopify Polaris', + $type: 'color', + }, + id: 'color.yellowLight', + $type: 'color', + $value: '#ffea8a', + }, + 'color.yellowLighter': { + _original: { + $value: '#fcf1cd', + }, + _group: { + id: 'color', + $extensions: { + requiredModes: [], + }, + $name: 'Shopify Polaris', + $type: 'color', + }, + id: 'color.yellowLighter', + $type: 'color', + $value: '#fcf1cd', }, 'color.yellowText': { - '_original': { - '$value': '#595130', + _original: { + $value: '#595130', }, - '_group': { + _group: { id: 'color', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'color', + $name: 'Shopify Polaris', + $type: 'color', }, id: 'color.yellowText', - '$type': 'color', - '$value': '#595130', + $type: 'color', + $value: '#595130', }, 'font.family.base': { - '_original': { - '$value': ['-apple-system', 'BlinkMacSystemFont', 'San Francisco', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'sans-serif'], + _original: { + $value: ['-apple-system', 'BlinkMacSystemFont', 'San Francisco', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'sans-serif'], }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'fontFamily', + $name: 'Shopify Polaris', + $type: 'fontFamily', }, id: 'font.family.base', - '$type': 'fontFamily', - '$value': ['-apple-system', 'BlinkMacSystemFont', 'San Francisco', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'sans-serif'], + $type: 'fontFamily', + $value: ['-apple-system', 'BlinkMacSystemFont', 'San Francisco', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'sans-serif'], }, 'font.family.mono': { - '_original': { - '$value': ['Monaco', 'Consolas', 'Lucida Console', 'monospace'], + _original: { + $value: ['Monaco', 'Consolas', 'Lucida Console', 'monospace'], }, - '_group': { + _group: { id: 'font.family', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'fontFamily', + $name: 'Shopify Polaris', + $type: 'fontFamily', }, id: 'font.family.mono', - '$type': 'fontFamily', - '$value': ['Monaco', 'Consolas', 'Lucida Console', 'monospace'], + $type: 'fontFamily', + $value: ['Monaco', 'Consolas', 'Lucida Console', 'monospace'], }, - 'space.none': { - '_original': { - '$value': 0, + 'space.base': { + _original: { + $value: '16px', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.none', - '$type': 'dimension', - '$value': '0', + id: 'space.base', + $type: 'dimension', + $value: '16px', }, - 'space.extraTight': { - '_original': { - '$value': '4px', + 'space.baseTight': { + _original: { + $value: '12px', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.extraTight', - '$type': 'dimension', - '$value': '4px', + id: 'space.baseTight', + $type: 'dimension', + $value: '12px', }, - 'space.tight': { - '_original': { - '$value': '8px', + 'space.extraLoose': { + _original: { + $value: '32px', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.tight', - '$type': 'dimension', - '$value': '8px', + id: 'space.extraLoose', + $type: 'dimension', + $value: '32px', }, - 'space.baseTight': { - '_original': { - '$value': '12px', + 'space.extraTight': { + _original: { + $value: '4px', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.baseTight', - '$type': 'dimension', - '$value': '12px', + id: 'space.extraTight', + $type: 'dimension', + $value: '4px', }, - 'space.base': { - '_original': { - '$value': '16px', + 'space.loose': { + _original: { + $value: '20px', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.base', - '$type': 'dimension', - '$value': '16px', + id: 'space.loose', + $type: 'dimension', + $value: '20px', }, - 'space.loose': { - '_original': { - '$value': '20px', + 'space.none': { + _original: { + $value: 0, }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.loose', - '$type': 'dimension', - '$value': '20px', + id: 'space.none', + $type: 'dimension', + $value: '0', }, - 'space.extraLoose': { - '_original': { - '$value': '32px', + 'space.tight': { + _original: { + $value: '8px', }, - '_group': { + _group: { id: 'space', - '$extensions': { + $extensions: { requiredModes: [], }, - '$name': 'Shopify Polaris', - '$type': 'dimension', + $name: 'Shopify Polaris', + $type: 'dimension', }, - id: 'space.extraLoose', - '$type': 'dimension', - '$value': '32px', + id: 'space.tight', + $type: 'dimension', + $value: '8px', }, }; diff --git a/examples/shopify/tokens/index.scss b/examples/shopify/tokens/index.scss index 8a9832d8..eda3e378 100644 --- a/examples/shopify/tokens/index.scss +++ b/examples/shopify/tokens/index.scss @@ -11,12 +11,6 @@ $__token-values: ( "color.black": ( default: (#000000), ), - "color.blueLighter": ( - default: (#ebf5fa), - ), - "color.blueLight": ( - default: (#b4e1fa), - ), "color.blue": ( default: (#006fbb), ), @@ -26,14 +20,14 @@ $__token-values: ( "color.blueDarker": ( default: (#001429), ), - "color.blueText": ( - default: (#3e4e57), + "color.blueLight": ( + default: (#b4e1fa), ), - "color.greenLighter": ( - default: (#e3f1df), + "color.blueLighter": ( + default: (#ebf5fa), ), - "color.greenLight": ( - default: (#bbe5b3), + "color.blueText": ( + default: (#3e4e57), ), "color.green": ( default: (#50b83c), @@ -44,14 +38,14 @@ $__token-values: ( "color.greenDarker": ( default: (#173630), ), - "color.greenText": ( - default: (#414f3e), + "color.greenLight": ( + default: (#bbe5b3), ), - "color.indigoLighter": ( - default: (#f4f5fa), + "color.greenLighter": ( + default: (#e3f1df), ), - "color.indigoLight": ( - default: (#b3bcf5), + "color.greenText": ( + default: (#414f3e), ), "color.indigo": ( default: (#5c6ac4), @@ -62,26 +56,26 @@ $__token-values: ( "color.indigoDarker": ( default: (#000639), ), + "color.indigoLight": ( + default: (#b3bcf5), + ), + "color.indigoLighter": ( + default: (#f4f5fa), + ), "color.indigoText": ( default: (#3e4155), ), - "color.inkLightest": ( - default: (#919eab), - ), - "color.inkLighter": ( - default: (#637381), + "color.ink": ( + default: (#212b36), ), "color.inkLight": ( default: (#454f5b), ), - "color.ink": ( - default: (#212b36), - ), - "color.orangeLighter": ( - default: (#fcebdb), + "color.inkLighter": ( + default: (#637381), ), - "color.orangeLight": ( - default: (#ffc58b), + "color.inkLightest": ( + default: (#919eab), ), "color.orange": ( default: (#f49342), @@ -92,14 +86,14 @@ $__token-values: ( "color.orangeDarker": ( default: (#4a1504), ), - "color.orangeText": ( - default: (#594430), + "color.orangeLight": ( + default: (#ffc58b), ), - "color.purpleLighter": ( - default: (#f6f0fd), + "color.orangeLighter": ( + default: (#fcebdb), ), - "color.purpleLight": ( - default: (#e3d0ff), + "color.orangeText": ( + default: (#594430), ), "color.purple": ( default: (#9c6ade), @@ -110,14 +104,14 @@ $__token-values: ( "color.purpleDarker": ( default: (#230051), ), - "color.purpleText": ( - default: (#50495a), + "color.purpleLight": ( + default: (#e3d0ff), ), - "color.redLighter": ( - default: (#fbeae5), + "color.purpleLighter": ( + default: (#f6f0fd), ), - "color.redLight": ( - default: (#fead9a), + "color.purpleText": ( + default: (#50495a), ), "color.red": ( default: (#de3618), @@ -128,14 +122,14 @@ $__token-values: ( "color.redDarker": ( default: (#330101), ), - "color.redText": ( - default: (#583c35), + "color.redLight": ( + default: (#fead9a), ), - "color.skyLighter": ( - default: (#f9fafb), + "color.redLighter": ( + default: (#fbeae5), ), - "color.skyLight": ( - default: (#f4f6f8), + "color.redText": ( + default: (#583c35), ), "color.sky": ( default: (#dfe3e8), @@ -143,11 +137,11 @@ $__token-values: ( "color.skyDark": ( default: (#c4cdd5), ), - "color.tealLighter": ( - default: (#e0f5f5), + "color.skyLight": ( + default: (#f4f6f8), ), - "color.tealLight": ( - default: (#b7ecec), + "color.skyLighter": ( + default: (#f9fafb), ), "color.teal": ( default: (#47c1bf), @@ -158,18 +152,18 @@ $__token-values: ( "color.tealDarker": ( default: (#003135), ), + "color.tealLight": ( + default: (#b7ecec), + ), + "color.tealLighter": ( + default: (#e0f5f5), + ), "color.tealText": ( default: (#405352), ), "color.white": ( default: (#ffffff), ), - "color.yellowLighter": ( - default: (#fcf1cd), - ), - "color.yellowLight": ( - default: (#ffea8a), - ), "color.yellow": ( default: (#eec200), ), @@ -179,6 +173,12 @@ $__token-values: ( "color.yellowDarker": ( default: (#573b00), ), + "color.yellowLight": ( + default: (#ffea8a), + ), + "color.yellowLighter": ( + default: (#fcf1cd), + ), "color.yellowText": ( default: (#595130), ), @@ -188,26 +188,26 @@ $__token-values: ( "font.family.mono": ( default: (Monaco, Consolas, "Lucida Console", monospace), ), - "space.none": ( - default: (0), - ), - "space.extraTight": ( - default: (4px), - ), - "space.tight": ( - default: (8px), + "space.base": ( + default: (16px), ), "space.baseTight": ( default: (12px), ), - "space.base": ( - default: (16px), + "space.extraLoose": ( + default: (32px), + ), + "space.extraTight": ( + default: (4px), ), "space.loose": ( default: (20px), ), - "space.extraLoose": ( - default: (32px), + "space.none": ( + default: (0), + ), + "space.tight": ( + default: (8px), ), ); diff --git a/examples/shopify/tokens/tokens.css b/examples/shopify/tokens/tokens.css index d95ce9bb..bd1846aa 100644 --- a/examples/shopify/tokens/tokens.css +++ b/examples/shopify/tokens/tokens.css @@ -6,133 +6,133 @@ :root { --color-black: #000000; - --color-blueLighter: #ebf5fa; - --color-blueLight: #b4e1fa; --color-blue: #006fbb; --color-blueDark: #084e8a; --color-blueDarker: #001429; + --color-blueLight: #b4e1fa; + --color-blueLighter: #ebf5fa; --color-blueText: #3e4e57; - --color-greenLighter: #e3f1df; - --color-greenLight: #bbe5b3; --color-green: #50b83c; --color-greenDark: #108043; --color-greenDarker: #173630; + --color-greenLight: #bbe5b3; + --color-greenLighter: #e3f1df; --color-greenText: #414f3e; - --color-indigoLighter: #f4f5fa; - --color-indigoLight: #b3bcf5; --color-indigo: #5c6ac4; --color-indigoDark: #202e78; --color-indigoDarker: #000639; + --color-indigoLight: #b3bcf5; + --color-indigoLighter: #f4f5fa; --color-indigoText: #3e4155; - --color-inkLightest: #919eab; - --color-inkLighter: #637381; - --color-inkLight: #454f5b; --color-ink: #212b36; - --color-orangeLighter: #fcebdb; - --color-orangeLight: #ffc58b; + --color-inkLight: #454f5b; + --color-inkLighter: #637381; + --color-inkLightest: #919eab; --color-orange: #f49342; --color-orangeDark: #c05717; --color-orangeDarker: #4a1504; + --color-orangeLight: #ffc58b; + --color-orangeLighter: #fcebdb; --color-orangeText: #594430; - --color-purpleLighter: #f6f0fd; - --color-purpleLight: #e3d0ff; --color-purple: #9c6ade; --color-purpleDark: #50248f; --color-purpleDarker: #230051; + --color-purpleLight: #e3d0ff; + --color-purpleLighter: #f6f0fd; --color-purpleText: #50495a; - --color-redLighter: #fbeae5; - --color-redLight: #fead9a; --color-red: #de3618; --color-redDark: #bf0711; --color-redDarker: #330101; + --color-redLight: #fead9a; + --color-redLighter: #fbeae5; --color-redText: #583c35; - --color-skyLighter: #f9fafb; - --color-skyLight: #f4f6f8; --color-sky: #dfe3e8; --color-skyDark: #c4cdd5; - --color-tealLighter: #e0f5f5; - --color-tealLight: #b7ecec; + --color-skyLight: #f4f6f8; + --color-skyLighter: #f9fafb; --color-teal: #47c1bf; --color-tealDark: #00848e; --color-tealDarker: #003135; + --color-tealLight: #b7ecec; + --color-tealLighter: #e0f5f5; --color-tealText: #405352; --color-white: #ffffff; - --color-yellowLighter: #fcf1cd; - --color-yellowLight: #ffea8a; --color-yellow: #eec200; --color-yellowDark: #8a6116; --color-yellowDarker: #573b00; + --color-yellowLight: #ffea8a; + --color-yellowLighter: #fcf1cd; --color-yellowText: #595130; --font-family-base: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif; --font-family-mono: Monaco, Consolas, "Lucida Console", monospace; - --space-none: 0; - --space-extraTight: 4px; - --space-tight: 8px; - --space-baseTight: 12px; --space-base: 16px; - --space-loose: 20px; + --space-baseTight: 12px; --space-extraLoose: 32px; + --space-extraTight: 4px; + --space-loose: 20px; + --space-none: 0; + --space-tight: 8px; } @supports (color: color(display-p3 1 1 1)) { :root { --color-black: color(display-p3 0 0 0); - --color-blueLighter: color(display-p3 0.921569 0.960784 0.980392); - --color-blueLight: color(display-p3 0.705882 0.882353 0.980392); - --color-blue: color(display-p3 0 0.435294 0.733333); - --color-blueDark: color(display-p3 0.031373 0.305882 0.541176); - --color-blueDarker: color(display-p3 0 0.078431 0.160784); - --color-blueText: color(display-p3 0.243137 0.305882 0.341176); - --color-greenLighter: color(display-p3 0.890196 0.945098 0.87451); - --color-greenLight: color(display-p3 0.733333 0.898039 0.701961); - --color-green: color(display-p3 0.313725 0.721569 0.235294); - --color-greenDark: color(display-p3 0.062745 0.501961 0.262745); - --color-greenDarker: color(display-p3 0.090196 0.211765 0.188235); - --color-greenText: color(display-p3 0.254902 0.309804 0.243137); - --color-indigoLighter: color(display-p3 0.956863 0.960784 0.980392); - --color-indigoLight: color(display-p3 0.701961 0.737255 0.960784); - --color-indigo: color(display-p3 0.360784 0.415686 0.768627); - --color-indigoDark: color(display-p3 0.12549 0.180392 0.470588); - --color-indigoDarker: color(display-p3 0 0.023529 0.223529); - --color-indigoText: color(display-p3 0.243137 0.254902 0.333333); - --color-inkLightest: color(display-p3 0.568627 0.619608 0.670588); - --color-inkLighter: color(display-p3 0.388235 0.45098 0.505882); - --color-inkLight: color(display-p3 0.270588 0.309804 0.356863); - --color-ink: color(display-p3 0.129412 0.168627 0.211765); - --color-orangeLighter: color(display-p3 0.988235 0.921569 0.858824); - --color-orangeLight: color(display-p3 1 0.772549 0.545098); - --color-orange: color(display-p3 0.956863 0.576471 0.258824); - --color-orangeDark: color(display-p3 0.752941 0.341176 0.090196); - --color-orangeDarker: color(display-p3 0.290196 0.082353 0.015686); - --color-orangeText: color(display-p3 0.34902 0.266667 0.188235); - --color-purpleLighter: color(display-p3 0.964706 0.941176 0.992157); - --color-purpleLight: color(display-p3 0.890196 0.815686 1); - --color-purple: color(display-p3 0.611765 0.415686 0.870588); - --color-purpleDark: color(display-p3 0.313725 0.141176 0.560784); - --color-purpleDarker: color(display-p3 0.137255 0 0.317647); - --color-purpleText: color(display-p3 0.313725 0.286275 0.352941); - --color-redLighter: color(display-p3 0.984314 0.917647 0.898039); - --color-redLight: color(display-p3 0.996078 0.678431 0.603922); - --color-red: color(display-p3 0.870588 0.211765 0.094118); - --color-redDark: color(display-p3 0.74902 0.027451 0.066667); - --color-redDarker: color(display-p3 0.2 0.003922 0.003922); - --color-redText: color(display-p3 0.345098 0.235294 0.207843); - --color-skyLighter: color(display-p3 0.976471 0.980392 0.984314); - --color-skyLight: color(display-p3 0.956863 0.964706 0.972549); - --color-sky: color(display-p3 0.87451 0.890196 0.909804); - --color-skyDark: color(display-p3 0.768627 0.803922 0.835294); - --color-tealLighter: color(display-p3 0.878431 0.960784 0.960784); - --color-tealLight: color(display-p3 0.717647 0.92549 0.92549); - --color-teal: color(display-p3 0.278431 0.756863 0.74902); - --color-tealDark: color(display-p3 0 0.517647 0.556863); - --color-tealDarker: color(display-p3 0 0.192157 0.207843); - --color-tealText: color(display-p3 0.25098 0.32549 0.321569); + --color-blue: color(display-p3 0 0.43529411764705883 0.7333333333333333); + --color-blueDark: color(display-p3 0.03137254901960784 0.3058823529411765 0.5411764705882353); + --color-blueDarker: color(display-p3 0 0.0784313725490196 0.1607843137254902); + --color-blueLight: color(display-p3 0.7058823529411765 0.8823529411764706 0.9803921568627451); + --color-blueLighter: color(display-p3 0.9215686274509803 0.9607843137254902 0.9803921568627451); + --color-blueText: color(display-p3 0.24313725490196078 0.3058823529411765 0.3411764705882353); + --color-green: color(display-p3 0.3137254901960784 0.7215686274509804 0.23529411764705882); + --color-greenDark: color(display-p3 0.06274509803921569 0.5019607843137255 0.2627450980392157); + --color-greenDarker: color(display-p3 0.09019607843137255 0.21176470588235294 0.18823529411764706); + --color-greenLight: color(display-p3 0.7333333333333333 0.8980392156862745 0.7019607843137254); + --color-greenLighter: color(display-p3 0.8901960784313725 0.9450980392156862 0.8745098039215686); + --color-greenText: color(display-p3 0.2549019607843137 0.30980392156862746 0.24313725490196078); + --color-indigo: color(display-p3 0.3607843137254902 0.41568627450980394 0.7686274509803922); + --color-indigoDark: color(display-p3 0.12549019607843137 0.1803921568627451 0.47058823529411764); + --color-indigoDarker: color(display-p3 0 0.023529411764705882 0.2235294117647059); + --color-indigoLight: color(display-p3 0.7019607843137254 0.7372549019607844 0.9607843137254902); + --color-indigoLighter: color(display-p3 0.9568627450980393 0.9607843137254902 0.9803921568627451); + --color-indigoText: color(display-p3 0.24313725490196078 0.2549019607843137 0.3333333333333333); + --color-ink: color(display-p3 0.12941176470588237 0.16862745098039217 0.21176470588235294); + --color-inkLight: color(display-p3 0.27058823529411763 0.30980392156862746 0.3568627450980392); + --color-inkLighter: color(display-p3 0.38823529411764707 0.45098039215686275 0.5058823529411764); + --color-inkLightest: color(display-p3 0.5686274509803921 0.6196078431372549 0.6705882352941176); + --color-orange: color(display-p3 0.9568627450980393 0.5764705882352941 0.25882352941176473); + --color-orangeDark: color(display-p3 0.7529411764705882 0.3411764705882353 0.09019607843137255); + --color-orangeDarker: color(display-p3 0.2901960784313726 0.08235294117647059 0.01568627450980392); + --color-orangeLight: color(display-p3 1 0.7725490196078432 0.5450980392156862); + --color-orangeLighter: color(display-p3 0.9882352941176471 0.9215686274509803 0.8588235294117647); + --color-orangeText: color(display-p3 0.34901960784313724 0.26666666666666666 0.18823529411764706); + --color-purple: color(display-p3 0.611764705882353 0.41568627450980394 0.8705882352941177); + --color-purpleDark: color(display-p3 0.3137254901960784 0.1411764705882353 0.5607843137254902); + --color-purpleDarker: color(display-p3 0.13725490196078433 0 0.3176470588235294); + --color-purpleLight: color(display-p3 0.8901960784313725 0.8156862745098039 1); + --color-purpleLighter: color(display-p3 0.9647058823529412 0.9411764705882353 0.9921568627450981); + --color-purpleText: color(display-p3 0.3137254901960784 0.28627450980392155 0.35294117647058826); + --color-red: color(display-p3 0.8705882352941177 0.21176470588235294 0.09411764705882353); + --color-redDark: color(display-p3 0.7490196078431373 0.027450980392156862 0.06666666666666667); + --color-redDarker: color(display-p3 0.2 0.00392156862745098 0.00392156862745098); + --color-redLight: color(display-p3 0.996078431372549 0.6784313725490196 0.6039215686274509); + --color-redLighter: color(display-p3 0.984313725490196 0.9176470588235294 0.8980392156862745); + --color-redText: color(display-p3 0.34509803921568627 0.23529411764705882 0.20784313725490197); + --color-sky: color(display-p3 0.8745098039215686 0.8901960784313725 0.9098039215686274); + --color-skyDark: color(display-p3 0.7686274509803922 0.803921568627451 0.8352941176470589); + --color-skyLight: color(display-p3 0.9568627450980393 0.9647058823529412 0.9725490196078431); + --color-skyLighter: color(display-p3 0.9764705882352941 0.9803921568627451 0.984313725490196); + --color-teal: color(display-p3 0.2784313725490196 0.7568627450980392 0.7490196078431373); + --color-tealDark: color(display-p3 0 0.5176470588235295 0.5568627450980392); + --color-tealDarker: color(display-p3 0 0.19215686274509805 0.20784313725490197); + --color-tealLight: color(display-p3 0.7176470588235294 0.9254901960784314 0.9254901960784314); + --color-tealLighter: color(display-p3 0.8784313725490196 0.9607843137254902 0.9607843137254902); + --color-tealText: color(display-p3 0.25098039215686274 0.3254901960784314 0.3215686274509804); --color-white: color(display-p3 1 1 1); - --color-yellowLighter: color(display-p3 0.988235 0.945098 0.803922); - --color-yellowLight: color(display-p3 1 0.917647 0.541176); - --color-yellow: color(display-p3 0.933333 0.760784 0); - --color-yellowDark: color(display-p3 0.541176 0.380392 0.086275); - --color-yellowDarker: color(display-p3 0.341176 0.231373 0); - --color-yellowText: color(display-p3 0.34902 0.317647 0.188235); + --color-yellow: color(display-p3 0.9333333333333333 0.7607843137254902 0); + --color-yellowDark: color(display-p3 0.5411764705882353 0.3803921568627451 0.08627450980392157); + --color-yellowDarker: color(display-p3 0.3411764705882353 0.23137254901960785 0); + --color-yellowLight: color(display-p3 1 0.9176470588235294 0.5411764705882353); + --color-yellowLighter: color(display-p3 0.9882352941176471 0.9450980392156862 0.803921568627451); + --color-yellowText: color(display-p3 0.34901960784313724 0.3176470588235294 0.18823529411764706); } }